/* =========================================
   ESTILOS GLOBAIS
   ========================================= */
:root {
    --primary-color: #005A9C;
    --secondary-color: #007bff;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #555;
    --white-color: #fff;
    --font-family: 'Arial', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

img { max-width: 100%; height: auto; display: block; }

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--dark-color); line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--dark-color); line-height: 1.2; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dark-color); }
p { margin-bottom: 1rem; }
ul { list-style: none; }
a { text-decoration: none; color: var(--primary-color); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 4rem 0; }
.bg-light { background: var(--light-color); }
.text-center { text-align: center; }

/* Botões */
.btn {
    display: inline-block; padding: 0.75rem 1.5rem; border-radius: 5px;
    font-weight: bold; text-align: center; transition: all 0.3s ease; cursor: pointer;
}
.btn-primary { background: var(--secondary-color); color: var(--white-color); border: 2px solid var(--secondary-color); }
.btn-primary:hover { background: #0056b3; border-color: #0056b3; }
.btn-secondary { background: transparent; color: var(--secondary-color); border: 2px solid var(--secondary-color); }
.btn-secondary:hover { background: var(--secondary-color); color: var(--white-color); }

/* =========================================
   HEADER & MENU
   ========================================= */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; top: 0; z-index: 1000; width: 100%;
}
header nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 20px; min-height: 80px; position: relative;
}
header .logo img { height: 60px; width: auto; }

.mobile-menu-icon { display: none; font-size: 2rem; cursor: pointer; color: var(--primary-color); }

.nav-menu { display: flex; align-items: center; flex: 1; justify-content: flex-end; }
.nav-menu ul { display: flex; gap: 25px; margin: 0 auto; }
.nav-menu ul li a { color: var(--dark-color); font-weight: bold; font-size: 1.05rem; transition: color 0.3s; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--secondary-color); }

/* =========================================
   HOME & SEÇÕES GERAIS
   ========================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./img/hero-familia.jpg');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    height: 60vh; min-height: 450px; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white-color); padding-top: 60px;
}
.hero h1 { color: white; }
.hero-buttons { margin-top: 20px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.card {
    background: white; padding: 25px 20px; text-align: center;
    border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--secondary-color); }
.card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 15px; }

/* --- GRID DE PRODUTOS (USADO NA HOME E AGORA NA ABA PRODUTOS) --- */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
    margin-bottom: 30px; 
}

.product-card {
    background: white; border: 1px solid #ddd; border-radius: 8px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Garante altura igual */
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-color: var(--secondary-color); }

.product-card img { width: 100%; height: auto; display: block; }
.product-card h3 { padding: 15px 15px 5px 15px; margin: 0; font-size: 1.3rem; }

/* Lista dentro do card */
.product-card ul { 
    padding: 0 15px 15px; 
    margin: 0; 
    flex: 1; /* Ocupa espaço para empurrar botões pro fundo */
    list-style: none;
}
.product-card ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; font-size: 0.95rem; }
.product-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: green; position: absolute; left: 0; }

/* Botões do Card */
.card-buttons {
    padding: 0 15px 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-buttons .btn { width: 100%; margin: 0; }

.cta { background: var(--primary-color); color: var(--white-color); }
.cta h2 { color: var(--white-color); }
.cta .btn-primary { background: var(--white-color); color: var(--primary-color); font-size: 1.1rem; }
.cta .btn-primary:hover { background: var(--light-color); }

/* =========================================
   PÁGINAS INTERNAS
   ========================================= */
.product-title-bg, .contact-header-section, .page-title-section {
    background-size: cover; background-position: center; padding: 4rem 0; text-align: center; color: white;
}
.product-title-bg { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./img/produtos.png'); }
.contact-header-section { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./img/contato.jpg'); }
.page-title-section { background-color: var(--primary-color); } 
.product-title-bg h1, .product-title-bg p, .contact-header-section h1, .contact-header-section p, .page-title-section h1, .page-title-section p { color: white; }
.contact-header-logo { height: 120px; background: rgba(255,255,255,0.9); padding: 10px; border-radius: 8px; margin: 0 auto 15px auto; }

/* Sobre Nós */
.about-history .mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.team-differential .team-diff-flex { display: flex; gap: 50px; align-items: flex-start; }
.team-info, .differential-info { flex: 1; }
.differential-info ul li { margin-bottom: 15px; font-size: 1.05rem; }
.differential-info ul li i { margin-right: 10px; color: var(--secondary-color); }

/* =========================================
   SEÇÃO ESTATÍSTICAS (RECUPERADA)
   ========================================= */
.stats {
    background: #0084ff; /* Azul vibrante (ou use var(--secondary-color)) */
    color: #fff;
    text-align: center;
    /* O padding já vem da classe .section-padding no HTML, 
       mas se precisar forçar: padding: 4rem 0; */
}

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

.stat-item h3 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Carrossel */
.carousel-container { position: relative; padding: 0 60px; max-width: 1200px; margin: 0 auto; }
.carousel-wrapper { overflow: hidden; padding: 20px 0; width: 100%; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.google-review-card {
    background: white; border-radius: 12px; padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 1px solid #e0e0e0;
    min-width: 100%; flex: 0 0 100%; display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.google-review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); border-color: var(--secondary-color); }
.google-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.user-info { display: flex; align-items: center; gap: 10px; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; }
.google-logo-icon { font-size: 1.5rem; background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stars { color: #fbbc04; margin-bottom: 10px; letter-spacing: 2px; }
.google-review-card p { font-size: 0.9rem; color: #555; font-style: italic; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; width: 45px; height: 45px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.15); cursor: pointer; z-index: 10; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; color: #333; transition: all 0.3s ease; }
.carousel-btn:hover { background: var(--secondary-color); color: white; transform: scale(1.1) translateY(-45%); }
.prev-btn { left: 0; } .next-btn { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
.dot { width: 10px; height: 10px; background: #ccc; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--secondary-color); transform: scale(1.2); }

/* Footer */
footer { background: #333; color: #f4f4f4; padding-top: 60px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.logo-footer { width: 120px; background: white; padding: 8px; border-radius: 5px; margin-bottom: 15px; }
.footer-section h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section a { color: #ccc; transition: 0.3s; }
.footer-section a:hover { color: white; text-decoration: underline; }
.footer-section.contato p { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-section.contato i { width: 20px; text-align: center; }
.icones-sociais-footer a { color: white !important; font-size: 2rem !important; margin-right: 15px; display: inline-block; transition: 0.3s; }
.icones-sociais-footer a:hover { color: var(--secondary-color) !important; transform: translateY(-3px); }
.footer-bottom { text-align: center; padding: 25px; border-top: 1px solid #555; margin-top: 50px; font-size: 0.85rem; color: #aaa; }

/* Contato */
.contact-grid-container-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card-stack { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.contact-card-new { background: white; padding: 20px; border-radius: 8px; display: flex; align-items: center; gap: 15px; border: 1px solid #eee; height: 100%; color: var(--text-color); text-decoration: none; transition: all 0.3s ease; }
.contact-card-new:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); transform: translateY(-5px); border-color: var(--secondary-color); }
.contact-card-new i { font-size: 1.5rem; color: white; background: var(--secondary-color); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.whatsapp-green-card { background-color: #25D366; border-color: #25D366; } .whatsapp-green-card i { background: transparent; font-size: 2.5rem; } .whatsapp-green-card h3, .whatsapp-green-card p, .whatsapp-green-card span { color: white !important; }
.whatsapp-green-card:hover { background-color: #1ebc57; border-color: #1ebc57; transform: translateY(-5px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); }
.connect-card { display: block; background: var(--primary-color); color: white; }
.connect-card h3 { color: white; } .connect-card p { color: #eee; }
.social-icons-container { display: flex; gap: 15px; justify-content: center; margin-top: 15px; }
.social-circle { width: 45px; height: 45px; background: white; color: var(--secondary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.social-circle:hover { background: var(--secondary-color); color: white; transform: translateY(-3px); }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; z-index: 2000; padding: 10px; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; padding: 30px; border-radius: 8px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: fadeIn 0.3s ease; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; border: none; background: none; color: #555; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   MEDIA QUERIES (MOBILE)
   ========================================= */
@media (min-width: 768px) { .google-review-card { min-width: calc(50% - 10px); flex: 0 0 calc(50% - 10px); } }
@media (min-width: 1024px) { .google-review-card { min-width: calc(33.333% - 14px); flex: 0 0 calc(33.333% - 14px); } }

@media (max-width: 900px) {
    h1 { font-size: 1.8rem; } h2 { font-size: 1.5rem; }
    
    .mobile-menu-icon { display: block; order: 2; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; align-items: center; padding: 30px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); display: none; border-top: 1px solid #eee; }
    .nav-menu.active { display: flex; }
    .nav-menu ul { flex-direction: column; width: 100%; margin: 0; text-align: center; gap: 20px; margin-bottom: 20px; }
    .btn-nav-header { width: 80%; text-align: center; }

    /* LAYOUTS GERAIS (1 Coluna) */
    .features-grid, .footer-container, .contact-grid-container-v2, 
    .about-history .mission-vision, .values-grid, .stats-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* ABA PRODUTOS NO MOBILE (1 COLUNA - CARDS GRANDES) */
    .products-grid {
        grid-template-columns: 1fr; /* Força 1 coluna */
        gap: 20px;
    }
    /* ----------------------------------------------- */
    
    .team-differential .team-diff-flex { flex-direction: column; }
    .footer-container { text-align: center; gap: 30px; }
    .footer-section.contato p { justify-content: center; }
    .logo-footer { display: inline-block; }
    .carousel-container { padding: 0 15px; }
    .carousel-btn { width: 35px; height: 35px; background: rgba(255,255,255,0.9); border: 1px solid #eee; }
    .contact-card-new { flex-direction: column; text-align: center; }
}
/* =========================================
   SEÇÃO PARCEIROS
   ========================================= */
.partners {
    background-color: #0056b3; /* Fundo branco */
}
.partners h2 {
    color: #ffffff; /* Título Branco */
    margin-bottom: 2rem;
}

.partners-banner {
    width: 100%;
    max-width: 1100px; /* Limita a largura em telas muito grandes */
    height: auto;      /* Mantém a proporção correta */
    margin: 0 auto;    /* Centraliza a imagem */
    display: block;
    
    /* Estética: Bordas arredondadas e sombra suave */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgb(255, 255, 255);
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse (opcional) */
.partners-banner:hover {
    transform: scale(1.02);
}

/* Ajuste para Celular */
@media (max-width: 900px) {
    .partners-banner {
        border-radius: 6px;
        box-shadow: none; /* Remove sombra no mobile para ficar mais leve */
    }
}
/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-btn-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* Verde oficial do WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2); /* Sombra suave */
    z-index: 9999; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease; /* Animação suave */
}

/* Efeito ao passar o mouse */
.whatsapp-btn-float:hover {
    background-color: #128c7e; /* Verde mais escuro */
    transform: scale(1.1); /* Aumenta um pouquinho */
    color: #FFF;
}

/* Ajuste para telas muito pequenas (celular antigo) */
@media (max-width: 400px) {
    .whatsapp-btn-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}
/* =========================================
   PÁGINA AUTO-COTAÇÃO (Estilo Resources)
   ========================================= */

/* Badge no topo (ex: "Curadoria de Produtos") */
.badge-pill {
    display: inline-block;
    background-color: rgba(0, 90, 156, 0.1); /* Azul bem clarinho */
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Container dos Filtros */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Botões de Filtro */
.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px; /* Borda redonda tipo pílula */
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Grid de Recursos (Cards) */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Responsivo */
    gap: 25px;
}

/* Card Horizontal */
.resource-card {
    display: flex;
    align-items: center; /* Alinha ícone e texto */
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 20px;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

/* Ícone/Imagem do Card (Quadrado na esquerda) */
.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Não deixa o ícone esmagar */
}

.resource-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Conteúdo do Card */
.resource-content {
    flex: 1;
}

.resource-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: bold;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.resource-content h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    color: var(--dark-color);
}

.resource-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Ajuste Mobile */
@media (max-width: 600px) {
    .filter-container {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    .resources-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
}

/* Ajuste Dark Mode (Se você estiver usando) */
body.dark-mode .resource-card {
    background: #242424;
    border-color: #444;
}
body.dark-mode .resource-content h3 { color: white; }
body.dark-mode .resource-content p { color: #ccc; }
body.dark-mode .resource-icon { background: #333; }
/* =========================================
   SEÇÃO PARCEIROS (COM ANIMAÇÃO)
   ========================================= */

/* Animação do Fundo Azul (Mudança suave de cor) */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animação de Entrada (Slide de baixo para cima) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de "Respiração" (Pulso leve) */
@keyframes pulseFloat {
    0% { transform: scale(1); }
    50% { transform: scale(1.015); } /* Aumenta muito pouco para não quebrar */
    100% { transform: scale(1); }
}

.partners {
    /* Gradiente animado em vez de cor sólida */
    background: linear-gradient(-45deg, #0056b3, #004494, #0062cc, #003366);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite; /* Fundo se mexe devagar */
    overflow: hidden; /* Evita barras de rolagem indesejadas */
}

.partners h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    /* Animação de entrada do título */
    animation: fadeInUp 1s ease-out forwards;
}

.partners-banner {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    
    /* Estado inicial para animação */
    opacity: 0; 
    animation: fadeInUp 1s ease-out 0.3s forwards, /* Entra deslizando */
               pulseFloat 4s ease-in-out infinite 1.5s; /* Depois fica pulsando */
    
    /* Transição suave para o Hover */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer; /* Mostra a mãozinha */
}

/* =========================================
   EFEITO INTERATIVO (HOVER)
   ========================================= */
.partners-banner:hover {
    /* Pausa a respiração para focar */
    animation-play-state: paused;
    
    /* Aumenta e levanta */
    transform: scale(1.03) translateY(-5px);
    
    /* Sombra brilhante azulada */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 20px rgba(255, 255, 255, 0.1);
    
    /* Aumenta um pouco o brilho da imagem */
    filter: brightness(1.1);
}

/* Ajuste Mobile */
@media (max-width: 900px) {
    .partners-banner {
        animation: fadeInUp 1s ease-out forwards; /* No celular, sem pulso para economizar bateria */
    }
    .partners-banner:hover {
        transform: none; /* Remove efeito 3D no touch */
        filter: none;
    }
}
/* =========================================
   ANIMAÇÃO DE SCROLL REVEAL (OTIMIZADA)
   ========================================= */

/* Estado inicial (Escondido) */
.js-scroll {
    opacity: 0;
    /* Usar translate3d força o navegador a usar a GPU (Placa de Vídeo), evitando travadas */
    transform: translate3d(0, 40px, 0); 
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden; /* Evita 'flicker' (piscar) em alguns navegadores */
}

/* Estado final (Visível) */
.js-scroll.scrolled {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Efeito Cascata SUAVE (Reduzi os tempos para não parecer lag)
   Isso só aplica se a tela for grande. No celular, removemos o delay para ser instantâneo.
*/
@media (min-width: 900px) {
    .products-grid .js-scroll:nth-child(2) { transition-delay: 0.1s; }
    .products-grid .js-scroll:nth-child(3) { transition-delay: 0.15s; }
    .products-grid .js-scroll:nth-child(4) { transition-delay: 0.2s; } /* O Card Saúde é este */
    .products-grid .js-scroll:nth-child(n+5) { transition-delay: 0s; } /* Do 5 em diante, aparece na hora */
}

/* No celular, removemos o delay para evitar a sensação de lentidão */
@media (max-width: 900px) {
    .js-scroll {
        transition-delay: 0s !important;
        transform: translate3d(0, 20px, 0); /* Movimento menor no celular */
    }
}
/* =========================================
   REMOVER ANIMAÇÃO (Produtos e Auto Cotação)
   ========================================= */
/* Força os cards a ficarem sempre visíveis e parados nessas páginas */
.product-details .product-card.js-scroll,
.resources-grid .resource-card.js-scroll {
    opacity: 1 !important;        /* Totalmente visível */
    transform: none !important;   /* Sem movimento */
    transition: none !important;  /* Sem espera */
}