
:root {
    --color-background-dark: #061126;
    --color-background-section: #00203e;
    --color-text-primary: #ffffff;
    --color-text-secondary: #d9d9d9;
    --color-brand-primary: #004ace;
    --color-brand-primary-hover: #04b2f9;
    --color-error: #FF5555;
    --color-border: rgba(217, 217, 217, 0.1);
    --font-family: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background-dark);
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.section-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; margin-bottom: 20px; }
.section-description { font-size: 1.1rem; max-width: 700px; margin: 0 auto 40px auto; color: var(--color-text-secondary); }


.main-nav {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 15px 0; z-index: 1000;
    background-color: rgba(6, 17, 38, 0.8);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: top 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 40px; }
.nav-cta { padding: 8px 20px; font-size: 0.9rem; }

.cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--color-brand-primary);
    color: var(--color-text-primary);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0px 4px 25px rgba(0, 74, 206, 0.3);
}
.cta-button:hover {
    background-color: var(--color-brand-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0px 6px 30px rgba(4, 178, 249, 0.35);
}


.hero-section {
    background-color: var(--color-background-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 74, 206, 0.15), transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}
.hero-container { 
    display: grid; 
    grid-template-columns: 1.1fr 1fr;
    align-items: center; 
    gap: 50px; 
    width: 100%; 
}
.hero-content { text-align: left; }
.hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero-headline .text-highlight {
    background: linear-gradient(90deg, var(--color-brand-primary), var(--color-brand-primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 0 40px 0;
    font-weight: 400;
}
.hero-social-proof { margin-top: 40px; }
.proof-logos { display: flex; gap: 30px; align-items: center; margin-bottom: 15px; }
.proof-logos img { max-height: 30px; }
.microcopy { font-size: 0.9rem; color: var(--color-text-secondary); }


.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.hero-background-logo {
    position: absolute;
    top: 35%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 350px;
    height: auto;
    opacity: 0.3;
    z-index: 1;
}
.hero-specialist-image {
    position: relative;
    z-index: 2;
    max-width: 90%; 
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    -webkit-mask-image: linear-gradient(to bottom, #061126 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, #061126 60%, transparent 100%);
}
.hero-metric-card {
    position: absolute;
    z-index: 3;
    background: rgba(0, 32, 62, 0.5);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 10px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: left;
}
.hero-metric-card .metric-number { 
    display: block; 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--color-brand-primary); 
}
.hero-metric-card .metric-label { 
    font-size: 0.9rem; 
    color: var(--color-text-secondary); 
}


.hero-metric-card.metric-1 {
    top: 45%;
    right: 4px; 
}
.hero-metric-card.metric-2 {
    bottom: 15%;
    right: 4px;
}
.hero-metric-card.metric-3 {
    bottom: 15%;
    left: 4px;
}
.hero-metric-card.metric-4 {
    top: 45%;
    left: 4px;
}


.problem-section { 
    background-color: var(--color-background-section); 
    background-image: radial-gradient(circle at 10% 90%, rgba(0, 74, 206, 0.1), transparent 30%);
}
.problem-grid { display: grid; gap: 30px; margin-top: 50px; grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.problem-item { background: var(--color-background-dark); padding: 30px; border-radius: 12px; border: 1px solid var(--color-border); text-align: left; transition: transform 0.3s ease, border-color 0.3s ease; }
.problem-item:hover { transform: translateY(-5px); border-color: var(--color-brand-primary); }
.problem-item .icon-wrapper { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: linear-gradient(45deg, var(--color-brand-primary), var(--color-brand-primary-hover)); }
.problem-item .icon-wrapper svg { width: 24px; height: 24px; color: var(--color-text-primary); }
.problem-item h3 { margin-bottom: 10px; font-size: 1.25rem; }
.problem-item p { color: var(--color-text-secondary); }

.solution-section { background-image: radial-gradient(circle at 90% 10%, rgba(0, 74, 206, 0.1), transparent 30%); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.pillar-item { background: var(--color-background-section); padding: 30px 20px; border-radius: 8px; border: 1px solid var(--color-border); font-weight: 600; }

.partners-section { background-color: var(--color-background-section); }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; max-width: 900px; margin: 80px auto 0 auto; }
.partner-logo { padding: 10px; background: rgba(0,0,0,0.2); border-radius: 12px; border: 1px solid var(--color-border); transition: all 0.3s ease; }
.partner-logo:hover { transform: translateY(-5px); border-color: var(--color-brand-primary); }
.partner-logo img { max-width: 100%; height: auto; max-height: 100px; object-fit: contain; filter: grayscale(100%) brightness(3); opacity: 0.8; transition: all 0.3s ease; }
.partner-logo:hover img { filter: grayscale(0) brightness(1); opacity: 1; }

.social-proof-section { background-image: radial-gradient(circle at 10% 10%, rgba(0, 74, 206, 0.1), transparent 30%); }
.logos-container.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; margin-bottom: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.logos-container.logo-grid img { max-height: 60px; width: 100%; object-fit: contain; filter: grayscale(100%) brightness(3); opacity: 0.8; transition: filter 0.3s ease, opacity 0.3s ease; }
.logos-container.logo-grid img:hover { filter: grayscale(0) brightness(1); opacity: 1; }
.testimonial { max-width: 750px; margin: 0 auto; }
.testimonial blockquote { font-size: 1.4rem; margin-bottom: 20px; font-style: italic; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-text-secondary); }

.offer-section { background-color: var(--color-background-section); background-image: radial-gradient(circle at 90% 90%, rgba(0, 74, 206, 0.1), transparent 30%); }
.deliverables-list { list-style: none; max-width: 600px; margin: 40px auto; text-align: left; display: flex; flex-direction: column; gap: 20px; }
.deliverables-list li { font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.deliverables-list svg { color: var(--color-brand-primary); flex-shrink: 0; }

.application-section { background-color: var(--color-background-dark); }
.application-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; text-align: left; }
.form-wrapper { background: var(--color-background-section); padding: 40px; border-radius: 16px; border: 1px solid var(--color-border); }
.form-wrapper h3 { font-size: 1.8rem; }
.form-wrapper p { color: var(--color-text-secondary); margin-bottom: 30px; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-step-label { display: block; font-weight: 600; font-size: 1.1rem; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input { width: 100%; padding: 12px; border: 1px solid var(--color-border); border-radius: 8px; font-size: 1rem; background-color: #0a2a4c; color: var(--color-text-primary); }
.form-group input:focus { outline: none; border-color: var(--color-brand-primary); box-shadow: 0 0 0 3px rgba(0, 74, 206, 0.2); }

.radio-group, .scale-group { border: 1px solid transparent; transition: border-color 0.3s; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group input[type="radio"] { display: none; }
.radio-group label { padding: 15px; border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.radio-group label:hover { background-color: #0a2a4c; border-color: var(--color-text-secondary); }
.radio-group input[type="radio"]:checked + label { background-color: rgba(0, 74, 206, 0.15); border-color: var(--color-brand-primary); box-shadow: 0 0 10px rgba(0, 74, 206, 0.2); }

.scale-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 5px; border-radius: 50px; }
.scale-group input[type="radio"] { display: none; }
.scale-group label { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: 50%; cursor: pointer; font-weight: 600; transition: all 0.2s; }
.scale-group label:hover { background-color: #0a2a4c; }
.scale-group input[type="radio"]:checked + label { background-color: var(--color-brand-primary); color: var(--color-text-primary); border-color: var(--color-brand-primary); }

.progress-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background-color: #444; transition: background-color 0.3s, transform 0.3s; }
.dot.active { background-color: var(--color-brand-primary); transform: scale(1.2); }

.form-nav-buttons { display: flex; justify-content: space-between; margin-top: 30px; }
.nav-button { background: none; border: 1px solid var(--color-text-secondary); color: var(--color-text-secondary); padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all 0.2s; }
.nav-button:hover { border-color: var(--color-text-primary); color: var(--color-text-primary); }
#application-form .cta-button { width: 100%; }
.nav-button.next-step { background-color: var(--color-text-secondary); color: var(--color-background-dark); border-color: var(--color-text-secondary); }
.nav-button.next-step:hover { background-color: var(--color-text-primary); border-color: var(--color-text-primary); }

.form-errors { margin-bottom: 20px; color: var(--color-error); font-weight: 600; }
.error-message { display: block; color: var(--color-error); font-size: 0.85rem; margin-top: 8px; min-height: 1.2em; }
.form-group input.input-invalid { border-color: var(--color-error); }
.radio-group.input-invalid, .scale-group.input-invalid { border: 1px solid var(--color-error); border-radius: 8px; padding: 5px; }
.nav-button.form-invalid { animation: shake 0.5s ease-in-out; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } 20%, 40%, 60%, 80% { transform: translateX(5px); } }

.form-info h3 { font-size: 1.8rem; margin-bottom: 30px; }
.info-step { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-step-number { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--color-brand-primary); color: var(--color-text-primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; }
.info-step-text h4 { margin-bottom: 5px; }
.info-step-text p { color: var(--color-text-secondary); font-size: 0.95rem; }
.data-security { display: flex; align-items: center; gap: 15px; background: var(--color-background-section); padding: 15px; border-radius: 8px; border-left: 3px solid var(--color-brand-primary); }
.data-security svg { color: var(--color-text-secondary); flex-shrink: 0; }
.data-security p { margin: 0; font-size: 0.9rem; }

.site-footer { background-color: var(--color-background-dark); padding: 40px 0; border-top: 1px solid var(--color-border); }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-info p, .footer-copyright p { margin: 0; color: var(--color-text-secondary); font-size: 0.9rem; }
.footer-info { text-align: left; }
.footer-copyright { text-align: right; }

.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* O SVG já tem o tamanho definido no HTML, então esta regra não é mais necessária, mas podemos mantê-la por segurança */
.whatsapp-fab svg {
    width: 32px;
    height: 32px;
}

.cookie-consent-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--color-background-section); border-top: 1px solid var(--color-border); padding: 20px 0; z-index: 2000; transform: translateY(100%); transition: transform 0.5s ease-in-out; }
.cookie-consent-banner.active { transform: translateY(0); }
.cookie-container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-text { margin: 0; color: var(--color-text-secondary); font-size: 0.9rem; }
.cookie-button { padding: 10px 25px; font-size: 0.9rem; flex-shrink: 0; }

@media (max-width: 992px) {
    .hero-section { 
        padding-top: 120px; 
        min-height: auto; 
    }
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
    .hero-content { 

        text-align: center; 
        margin-top: 0;
    }
    .hero-visuals { 

        min-height: 400px;
        margin-top: 40px;/
    }
    .hero-subheadline { margin-left: auto; margin-right: auto; }
    .hero-social-proof, .proof-logos { justify-content: center; }
}

@media (max-width: 768px) {

    section {
        padding: 80px 0;
    }
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .problem-grid,
    .application-container {
        grid-template-columns: 1fr;
    }
    .partners-grid,
    .logos-container.logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .application-container {
        gap: 40px;
    }

    .hero-visuals {
        margin-top: 20px;
        min-height: 350px;
    }
    .hero-metric-card {
        padding: 10px 15px;
        border-radius: 12px;
    }
    .hero-metric-card .metric-number {
        font-size: 1.5rem;
    }
    .hero-metric-card .metric-label {
        font-size: 0.8rem;
    }

     .hero-metric-card.metric-1 { /* +50 Escolas */
        top: 15%;
        right: -5%;
    }
    .hero-metric-card.metric-2 {
        bottom: 15%;
        right: -5%;
    }
    .hero-metric-card.metric-3 { 
        bottom: 25%;
        left: -5%;
    }
    .hero-metric-card.metric-4 { 
        top: 35%;
        left: -5%;
    }
}

@media (max-width: 480px) {
    .hero-visuals {
        min-height: 300px;
    }

    .hero-metric-card {
        transform: scale(0.9);
    }
    .hero-metric-card.metric-1 { top: 10%; right: -8%; }
    .hero-metric-card.metric-2 { bottom: 10%; right: -8%; }
    .hero-metric-card.metric-3 { bottom: 20%; left: -8%; }
    .hero-metric-card.metric-4 { top: 30%; left: -8%; }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-info, .footer-copyright {
        text-align: center;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}

.nav-button.next-step {
    background-color: var(--color-brand-primary); 
    color: var(--color-text-primary);
    border-color: var(--color-brand-primary);
    font-weight: 700; 
}

.nav-button.next-step:hover {
    background-color: var(--color-brand-primary-hover);
    border-color: var(--color-brand-primary-hover);
    transform: translateY(-2px); /* Add a subtle lift */
}

.nav-button.prev-step {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.nav-button.prev-step:hover {
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}
.radio-group label:hover {
    background-color: #0a2a4c;
    border-color: var(--color-brand-primary-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.radio-group label {
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease; 
}

.progress-dots {
    gap: 12px; 
}
.dot {
    width: 12px; 
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2); 
}
.dot.active {
    background-color: var(--color-brand-primary);
    transform: scale(1.3); 
}

.data-security {
    display: flex;
    align-items: center; 
    gap: 15px;
    background: var(--color-background-section);
    padding: 20px; 
    border-radius: 12px; 
    border-left: 4px solid var(--color-brand-primary);
}

.data-security svg {
    color: var(--color-text-secondary);
    flex-shrink: 0;
    width: 24px; 
    height: 24px;
}

.data-security p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5; 
}

/* --- Estilos da Seção de FAQ --- */
.faq-section {
    background-color: var(--color-background-section);
}

.faq-accordion {
    max-width: 750px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-background-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--color-brand-primary);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Remove o marcador padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none; /* Remove o marcador no Chrome/Safari */
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-brand-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}
/* === NOTIFICAÇÃO DE PROVA SOCIAL === */
.social-proof-notification {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1001; /* Acima do botão do WhatsApp */
    background-color: #222b37;
    color: var(--color-text-primary);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 360px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.social-proof-notification.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 22px;
    height: 22px;
    color: #FFF;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-title {
    font-weight: 700;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.notification-body strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.notification-body span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

@media (max-width: 480px) {
    .social-proof-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

.notification-icon svg {
    color: white;
    width: 22px;
    height: 22px;
}

.notification-title {
    font-weight: 600;
    margin: 0;
}

.notification-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .lead-notification {
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: calc(100% - 40px);
    }
    .lead-notification.visible {
        transform: translateX(-50%) translateY(0);
    }
}
/* --- Estilos Adicionais do Rodapé --- */
.footer-container {
    gap: 30px;
}
.footer-copyright p {
    margin: 5px 0;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: var(--color-text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover {
    color: var(--color-text-primary);
    transform: translateY(-3px);
}
.footer-socials svg {
    width: 28px;
    height: 28px;
}