/* Este arquivo contém apenas as otimizações mobile para a seção CTA Intermediate */
:root {
    /* Sobrescreve a cor escura pelo Azul solicitado */
    --bg-dark: rgb(0, 26, 44) !important;
}

body {
    background-color: var(--bg-dark) !important;
}
@media (max-width: 600px) {

    /* Optimize CTA Intermediate Section for Mobile */
    .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .cta-card {
        flex-direction: column !important;
    }

    .cta-image-placeholder {
        width: 100% !important;
        height: 150px !important;
    }

    .cta-content {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    .cta-content h4 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .cta-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .btn-small {
        width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-small:hover {
        background: var(--secondary-gold);
        transform: scale(1.02);
    }

    /* Fix Scarcity Image on Mobile */
    .scarcity-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: cover;
    }

    /* Fix Footer CTA Overflow */
    .footer-cta-box {
        margin: 0 10px 4rem !important;
        padding: 1.5rem !important;
    }

    .choices-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

        .choice-col {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* --- COLE O CÓDIGO AQUI --- */
    
       /* 1. Hero Page (Fundo da Família) */
    .hero {
        /* Mantém a imagem inteira */
        background-size: contain !important; 
        background-position: top center !important;
        background-repeat: no-repeat !important;
        
        /* Ajuste fino: Reduz o espaço vertical */
        min-height: auto !important;
        padding-top: 250px !important; /* Aumentei para garantir que o texto não cubra a imagem */
        padding-bottom: 30px !important;
    }

    /* 2. Imagem do Mentor (Edson Gabriel) */
    .mentor-image {
        /* MUDANÇA: Limita a largura a 280px ou 80% da tela, o que for menor */
        max-width: 80% !important; 
        width: 280px !important; 
        height: auto !important;
        display: block !important;
        margin: 0 auto 2rem auto !important;
        border-radius: 12px !important; /* Opcional: deixa mais bonito */
    }

    /* 3. Imagem do Mosaico (Escassez) */
    .scarcity-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* 4. Regra de Segurança */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
        /* Remover camada escura da Hero */
    .hero-overlay {
        background: none !important;
        display: none !important; /* Se quiser sumir com ela de vez */
    }
    
    /* Remover formas abstratas que podem estar cobrindo */
    .hero::before {
        display: none !important;
    }

} /* <--- A ÚLTIMA CHAVE FICA AQUI NO FINAL DE TUDO */
