
    :root {
        --primary: #0056b3;
        --spectrum: linear-gradient(90deg, #FFD700, #FF8C00, #FF4500, #9400D3, #0000FF);
        --bg-dark: #06166B; 
        --glass: rgba(255, 255, 255, 0.1);
    }

    body { 
        background-color: var(--bg-dark); 
        color: #fff; 
        font-family: 'Outfit', sans-serif; 
    }
    
    h1 { 
        font-family: 'Outfit', sans-serif; 
        font-weight: 900; 
        letter-spacing: -2px;
        text-transform: uppercase;
    }

    h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 700; }
    /* Barra de Escassez do Evento - Ajustada para ser Fixa */
.event-countdown-bar {
    background: var(--spectrum);
    padding: 10px 0; /* Diminuí um pouco para não ocupar meia tela no mobile */
    color: #000 !important;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: sticky;
    top: 162px; /* Gruda exatamente abaixo da sua Navbar que é fixed */
    z-index: 999; /* Fica abaixo da navbar (1000) mas acima do conteúdo */
    width: 100%;
}

/* Container que organiza os logos */
.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

/* O card fixo em 200x200px */
.sponsor-card {
    width: 200px;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Garante que o logo caiba no box sem deformar */
.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Isso mantém a proporção original da marca */
}
/* Ajuste no Hero para o título não começar "escondido" atrás das barras fixas */
.hero {
    padding: 170px 0 100px; 
    background: linear-gradient(rgba(6, 22, 107, 0.5), rgba(6, 22, 107, 0.9)), 
                url('https://familiasatipicas.com.br/wp-content/uploads/2024/04/Fundo-Caminhada-do-Autismo.webp');
    background-size: cover; 
    background-position: center; 
    position: relative;
}


    .hero {
        padding: 100px 0 100px;
        background: linear-gradient(rgba(6, 22, 107, 0.5), rgba(6, 22, 107, 0.9)), 
                    url('https://familiasatipicas.com.br/wp-content/uploads/2024/04/Fundo-Caminhada-do-Autismo.webp');
        background-size: cover; 
        background-position: center; 
        position: relative;
    }

    .title-huge {
        font-size: clamp(3rem, 10vw, 6rem);
        line-height: 1.05;
        background: #fff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-image: linear-gradient(180deg, #fff 0%, #aaa 100%);
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .kit-preview-card {
        background: var(--glass); 
        border-radius: 20px; 
        border: 1px solid rgba(255,255,255,0.1);
        padding: 20px; 
        transition: 0.3s; 
        height: 100%;
    }
    .kit-preview-card:hover { 
        background: rgba(255,255,255,0.15); 
        border-color: var(--primary); 
        transform: scale(1.02); 
    }
    .kit-img { width: 100%; border-radius: 12px; margin-bottom: 15px; filter: grayscale(0.5); transition: 0.3s; }
    .kit-preview-card:hover .kit-img { filter: grayscale(0); }

    /* CORRIGIDO: Adicionado o ponto (.) para identificar a classe btn-cta */
    .btn-cta {
        background: #004497; 
        color: white !important; /* Corrigido para Branco conforme o padrão de visibilidade */
        border-radius: 50px;
        padding: 20px 40px; 
        font-weight: 900; 
        text-transform: uppercase; 
        border: none;
        letter-spacing: 1px; 
        box-shadow: 0 10px 20px rgba(0,86,179,0.3);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .btn-cta:hover { 
        background: #003677; 
        transform: translateY(-3px); 
        box-shadow: 0 15px 30px rgba(0,86,179,0.5); 
        color: white !important;
    }

    .badge-spec {
        background: var(--spectrum); 
        border: none; 
        color: white;
        font-weight: 900; 
        border-radius: 50px; 
        padding: 8px 20px; 
        font-size: 1.9rem;
        letter-spacing: 2px;
        
    }

    .animate-pulse-heart {
        animation: heart-beat 1.5s ease-in-out infinite;
        display: inline-block;
        color: #FF0000; 
    }

    @keyframes heart-beat {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.18); }
    }

    .tracking-widest { letter-spacing: 0.15em; }
    
    .impact-box { 
        background: #fff; 
        border-radius: 24px; 
        padding: 40px; 
        transition: transform 0.3s ease; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .impact-box:hover { transform: translateY(-5px); }

    .year-marker {
        font-size: 1.8rem;
        font-weight: 900;
        opacity: 0.4;
        border: 1px solid rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 4px 12px;
        display: inline-block;
        margin-bottom: 15px;
        color: #333;
    }

    .section-light {
        background-color: #ffffff;
        color: #333;
    }
    
    .card-cota {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #eee !important;
    }
    .card-cota:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12) !important;
    }

    /* MEDIA QUERIES PARA MOBILE */
    @media (max-width: 768px) {
}
    /* === PREÇOS DAS COTAS ALINHADOS À ESQUERDA SOMENTE NO MOBILE === */
@media (max-width: 768px) {
    #cotas .card-cota h4.fw-900 {
        text-align: left !important;
    }
}
/* ===================== CONTADOR REGRESSIVO FIXO ATÉ O EVENTO ===================== */
.scarcity-bar {
    position: fixed;
    width: 100%;
    background: linear-gradient(90deg, #ff1744, #ff6d00);
    color: #fff;
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1rem;
}

.scarcity-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.scarcity-bar .time-box {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 58px;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1;
}

.scarcity-bar .highlight {
    color: #FFD700;
    font-size: 1.45rem;
}

@media (max-width: 768px) {
    .scarcity-bar {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    .scarcity-bar .time-box {
        font-size: 1.15rem;
        min-width: 48px;
        padding: 5px 9px;
    }
}

/* Ajuste automático do hero para não sobrepor */
.hero {
    padding-top: 455px !important;
}
