/* === HERO === */
.hero-ecommerce {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-ecommerce .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
}

.hero-ecommerce .hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-ecommerce .hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Todos os tipos de hero com altura padronizada */
.hero-ecommerce .hero-slide,
.hero-ecommerce a.hero-slide {
    min-height: 420px;
    width: 100%;
}

.hero-ecommerce a.hero-slide {
    display: block;
    height: 420px;
}

.hero-ecommerce a.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-ecommerce .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.4) 70%, transparent 100%);
}

.hero-ecommerce .hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 0;
    max-width: 820px;
    margin-left: 0;
    margin-right: auto;
}

.hero-ecommerce .hero-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero-ecommerce .hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 620px;
}

.hero-ecommerce .hero-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-ecommerce .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-ecommerce .hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Hero Arrows */
.hero-ecommerce .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.35);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    padding: 0;
}
.hero-ecommerce .hero-arrow:hover {
    background: rgba(0,0,0,0.65);
}
.hero-ecommerce .hero-prev { left: 16px; }
.hero-ecommerce .hero-next { right: 16px; }

/* Hero Fallback */
.hero-fallback {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    position: relative;
}

.hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(249, 178, 51, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(249, 178, 51, 0.15);
    border: 1px solid rgba(249, 178, 51, 0.3);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Cor-texto banners: botão e texto com espaçamento generoso */
.hero-ecommerce .hero-slide .hero-content h2 {
    margin-bottom: 24px;
}

.hero-ecommerce .hero-slide .hero-content p {
    margin-bottom: 44px;
}

.hero-ecommerce .hero-content .btn {
    margin-top: 8px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* === HIGHLIGHTS === */
.quick-highlights {
    padding: 0;
    border-bottom: 1px solid var(--color-border-light);
}

.highlights-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 16px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.highlight-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* === PRODUCT CARDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.products-grid--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Impede que imagens/textos forcem a coluna a ultrapassar a largura da tela */
.products-grid > .card-metallic,
.products-grid > .product-card {
    min-width: 0;
}

.card-metallic .card-image,
.card-metallic .card-body,
.product-image,
.product-info {
    min-width: 0;
    max-width: 100%;
}

.card-metallic .card-body h3,
.product-info h3 {
    overflow-wrap: anywhere;
}

.product-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.product-image {
    height: 190px;
    overflow: hidden;
    position: relative;
    background: var(--color-muted);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
}

.badge-pronta {
    background: var(--color-amber-light);
    color: #92400e;
}

.product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.product-specs .spec {
    font-size: 11px;
    padding: 3px 8px;
    background: var(--color-muted);
    border-radius: var(--radius-pill);
    color: var(--color-text-secondary);
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
}

.product-modalidade {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
}

.product-cta {
    font-size: 12px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.product-card:hover .product-cta {
    color: var(--color-accent);
}

/* === CATÁLOGO CARDS (card-metallic) === */
.card-metallic {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.card-metallic:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-metallic .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-muted) 0%, #e5e7eb 100%);
}

.card-metallic .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-metallic:hover .card-image img {
    transform: scale(1.06);
}

.card-metallic .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.card-metallic .card-badge span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-metallic .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.card-metallic .card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
}

.card-metallic .card-body > p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.card-metallic .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.card-metallic .card-footer .text-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-metallic .card-footer .btn {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--color-muted);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.card-metallic:hover .card-footer .btn {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* === SEÇÃO PRODUTOS === */
.section-produtos {
    padding: 40px 0 56px;
}

/* === DIFERENCIAIS === */
.section-diferenciais {
    padding: 48px 0;
    background: var(--color-muted);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.diferencial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition);
}

.diferencial-card:hover {
    box-shadow: var(--shadow-sm);
}

.diferencial-card svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.diferencial-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.diferencial-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* === CLIENTES === */
.section-clientes-ecommerce {
    padding: 48px 0;
}

.clientes-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cliente-logo {
    width: 110px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cliente-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition);
}

.cliente-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* === DEPOIMENTOS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

/* Carrossel horizontal quando há mais de 5 avaliações */
.testimonials-grid--carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.testimonials-grid--carousel .testimonial-card {
    flex: 0 0 calc((100% - 4 * 16px) / 5);
    scroll-snap-align: start;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--color-amber);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border-light);
}

.testimonial-card .author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card .author-info span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* === FAIXA DE URGÊNCIA === */
.urgency-bar {
    padding: 20px 0;
    background: var(--color-accent-light);
    border-top: 1px solid rgba(249, 178, 51, 0.2);
    border-bottom: 1px solid rgba(249, 178, 51, 0.2);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.urgency-text svg {
    stroke: var(--color-accent-hover);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }

    .urgency-text {
        justify-content: center;
    }
}

/* === PÁGINA SOBRE === */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.sobre-media {
    position: sticky;
    top: 140px;
}

.sobre-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    z-index: 0;
}

.sobre-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sobre-map-endereco {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    background: var(--color-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.sobre-map-endereco strong {
    color: var(--color-text);
}

.sobre-map-endereco span {
    color: var(--color-text-secondary);
}

.sobre-map-endereco a {
    margin-top: 8px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 13px;
}

.sobre-map-endereco a:hover {
    text-decoration: underline;
}

/* === PROVA SOCIAL === */
.section-prova-social {
    padding: 56px 0;
    background: var(--color-muted);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.prova-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.prova-social-item {
    padding: 16px;
}

.prova-numero {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.prova-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.prova-certificacoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.prova-cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .prova-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .prova-numero {
        font-size: 28px;
    }
}

/* === CTA === */
.section-cta-ecommerce {
    padding: 48px 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 40px;
    background: #1a1a1a;
    border-radius: var(--radius-xl);
    color: #fff;
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cta-actions .btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    font-weight: 600;
}

.cta-actions .btn-whatsapp:hover {
    background: #1da851;
}

.cta-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.cta-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

/* === FOOTER === */
.footer {
    background: var(--color-muted);
    border-top: 1px solid var(--color-border-light);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    background: transparent;
    transition: all var(--transition);
}

.social-links a svg {
    display: block;
}

.social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

/* === ALERTAS === */
.alert {
    padding: 12px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-bottom: 1px solid #fecaca;
}

/* === ERROR PAGE === */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    padding: 48px;
}

.error-page h1 {
    font-size: 80px;
    font-weight: 800;
    color: var(--color-border);
    margin-bottom: 12px;
}

.error-page p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* === BLOG POST SIDEBAR === */
.blog-post-layout--with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
    max-width: none;
}

.blog-post-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-sidebar-cta {
    background: var(--color-accent-light);
    border: 1px solid rgba(249,178,51,0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.blog-sidebar-cta h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.blog-sidebar-cta p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.blog-sidebar-related {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.blog-sidebar-related h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 14px;
}

.blog-sidebar-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar-post img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.blog-sidebar-post div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-sidebar-post span {
    font-size: 11px;
    color: var(--color-text-muted);
}

.blog-sidebar-post strong {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.4;
    font-weight: 500;
}

.blog-sidebar-post:hover strong {
    color: var(--color-accent);
}

.blog-sidebar-contact {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.blog-sidebar-contact h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 10px;
}

.blog-sidebar-contact p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

/* === PRODUCT SHARE === */
.produto-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
    flex-wrap: wrap;
}

.produto-share span {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.produto-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.produto-share-btn:hover {
    border-color: var(--color-text-secondary);
    color: var(--color-text);
}

.produto-share-btn--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.produto-share-btn--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.produto-share-btn--linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}

/* === TESTIMONIALS GRID === */
/* === HERO PROGRESS BAR === */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-accent);
    z-index: 11;
    transition: none;
}

/* === CATALOGO MOBILE FILTER === */
.filter-toggle {
    display: none;
}

@media (max-width: 900px) {
    .filter-toggle {
        display: inline-flex;
    }

    .catalogo-layout {
        grid-template-columns: 1fr;
    }

    .catalogo-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        bottom: 0;
        width: 300px;
        z-index: 300;
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        max-height: 100vh;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .catalogo-sidebar.open {
        left: 0;
    }

    .catalogo-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 299;
    }

    .catalogo-sidebar-overlay.open {
        display: block;
    }
}
