/* ==========================================================================
   1. RESET E VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
    --purple-brand: #6b0f74; 
    --purple-dark: #4a0a52;
    --green-accent: #25D366; /* Verde WhatsApp */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    position: relative; 
}

/* ==========================================================================
   2. CLASSES UTILITÁRIAS E FUNDOS (EFEITO ZEBRA)
   ========================================================================== */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.text-center { 
    text-align: center; 
}

.bg-white {
    background-color: #ffffff;
}

.bg-light-purple {
    background-color: #f3eef5; /* Lilás bem claro para a seção de Check-ups */
}

.w-100 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mb-3 {
    margin-bottom: 15px;
}

/* ==========================================================================
   3. HERO SECTION (PRIMEIRA DOBRA)
   ========================================================================== */
.hero-section {
    background-color: var(--purple-brand);
    color: var(--text-light);
    padding: 80px 0 160px 0;
}

.logo { 
    max-width: 200px; 
    margin-bottom: 30px; 
}

.sub-headline { 
    font-size: 1.2rem; 
    font-weight: 500; 
    margin-bottom: 10px; 
    opacity: 0.9; 
}

.main-headline { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.description { 
    font-size: 1.2rem; 
    margin-bottom: 40px; 
    font-weight: 300; 
}

/* ==========================================================================
   4. BOTÕES E CTAs
   ========================================================================== */
.cta-group { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.btn {
    padding: 15px 30px; 
    border-radius: 8px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    cursor: pointer; 
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--green-accent); 
    color: var(--text-light); 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover { 
    background-color: #1ebe57; 
    transform: translateY(-2px); 
}

.btn-secondary { 
    background-color: transparent; 
    color: var(--text-light); 
    border: 2px solid var(--text-light); 
}

.btn-secondary:hover { 
    background-color: var(--text-light); 
    color: var(--purple-brand); 
}

.btn-outline-purple {
    border: 2px solid var(--purple-brand);
    color: var(--purple-brand);
    background-color: transparent;
}

.btn-outline-purple:hover {
    background-color: var(--purple-brand);
    color: var(--text-light);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* ==========================================================================
   5. CARDS FLUTUANTES (GATILHO DE AUTORIDADE)
   ========================================================================== */
.benefits-section { 
    margin-top: -100px; /* Faz os cards sobreporem a Hero */
    position: relative; 
    z-index: 10; 
}

.cards-wrapper { 
    display: flex; 
    justify-content: space-between; 
    gap: 20px; 
}

.card { 
    background-color: #ffffff; 
    padding: 40px 30px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    text-align: center; 
    flex: 1; 
    transition: transform 0.3s ease; 
}

.card:hover { 
    transform: translateY(-5px); 
}

.card .icon { 
    font-size: 3rem; 
    margin-bottom: 20px; 
}

.card h3 { 
    color: var(--purple-brand); 
    margin-bottom: 15px; 
    font-size: 1.3rem; 
}

.card p { 
    color: #666666; 
    font-size: 0.95rem; 
    line-height: 1.5; 
}

/* ==========================================================================
   6. SEÇÃO DE CHECK-UPS
   ========================================================================== */
.checkups-section { 
    padding: 80px 0; 
}

.section-title { 
    font-size: 2.2rem; 
    color: var(--purple-brand); 
    margin-bottom: 10px; 
    font-weight: 800;
}

.section-subtitle { 
    font-size: 1.1rem; 
    color: #666666; 
    margin-bottom: 40px; 
}

.checkup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.checkup-card {
    background-color: #ffffff; 
    padding: 30px 20px; 
    border-radius: 10px; 
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

.checkup-card h4 { 
    color: var(--purple-dark); 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
}

.checkup-card p { 
    color: #555555; 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
    line-height: 1.4; 
    flex-grow: 1; 
}

.btn-checkup {
    display: block; 
    width: 100%; 
    padding: 12px; 
    background-color: var(--purple-brand);
    color: #ffffff; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: background 0.3s;
    text-align: center;
}

.btn-checkup:hover { 
    background-color: var(--purple-dark); 
}

/* ==========================================================================
   7. SEÇÃO DE LOCALIZAÇÃO (MAPA DIVIDIDO)
   ========================================================================== */
.map-section {
    padding: 80px 0;
}

.map-split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.map-column {
    flex: 1; /* Ocupa 50% da tela */
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-column {
    flex: 1; /* Ocupa os outros 50% da tela */
    text-align: left;
}

.info-column .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.info-column .section-subtitle {
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.address-details {
    margin-bottom: 30px;
}

.address-details p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

/* ==========================================================================
   8. CTA FINAL (FUNDO DE FUNIL)
   ========================================================================== */
.final-cta-section {
    padding: 80px 0 100px 0;
    border-top: 1px solid #eaeaea;
}

.final-title {
    font-size: 2.8rem;
    color: var(--purple-brand);
    font-weight: 800;
    margin-bottom: 15px;
}

.final-subtitle {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 40px;
}

/* ==========================================================================
   9. RODAPÉ ROXO COM ASSINATURA DA AGÊNCIA
   ========================================================================== */
.footer-purple {
    background-color: var(--purple-dark);
    color: var(--text-light);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-agency {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-agency:hover {
    opacity: 1;
}

.agency-logo {
    max-height: 25px; 
    filter: brightness(0) invert(1); /* Deixa a logo branca */
}

/* ==========================================================================
   10. BOTÃO FLUTUANTE DO WHATSAPP (ANIMAÇÃO)
   ========================================================================== */
.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 30px; 
    right: 30px;
    background-color: var(--green-accent); 
    color: #ffffff; 
    border-radius: 50px;
    text-align: center; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2); 
    z-index: 100;
    display: flex; 
    align-items: center; 
    justify-content: center;
    animation: pulse-green 2s infinite;
}

.whatsapp-float svg { 
    transition: transform 0.3s ease; 
}

.whatsapp-float:hover svg { 
    transform: scale(1.1); 
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   11. RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .main-headline { 
        font-size: 2.2rem; 
    }
    .cards-wrapper { 
        flex-direction: column; 
    }
    .benefits-section { 
        margin-top: -50px; 
    }
    .card { 
        margin-bottom: 20px; 
    }
    .cta-group { 
        flex-direction: column; 
        width: 100%; 
    }
    .btn { 
        width: 100%; 
    }
    
    /* Layout do Mapa no Celular */
    .map-split-layout {
        flex-direction: column;
        gap: 30px;
    }
    .info-column {
        text-align: center;
    }
    .info-column .section-title, 
    .info-column .section-subtitle {
        text-align: center;
    }
    
    /* CTA Final e Rodapé no Celular */
    .final-title {
        font-size: 2rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;