/* ==========================================================================
   1. SETUP DE FONTES LOCAIS E VARIÁVEIS
   ========================================================================== */
@font-face {
    font-family: 'Museo';
    src: url('/revisao-enem/fontes/Museo500-Regular.woff2') format('woff2'), url('/revisao-enem/fontes/Museo500-Regular.woff') format('woff');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Museo';
    src: url('/revisao-enem/fontes/Museo900-Regular.woff2') format('woff2'), url('/revisao-enem/fontes/Museo900-Regular.woff') format('woff');
    font-weight: 900; font-style: normal; font-display: swap;
}

:root {
    --bg-main: #FFFFFF;
    --bg-alt: #F9F7FF;
    --text-primary: #333;
    --purple-highlight: #8750E6;
    --form-bg: #F7F2FF;
    --green-gradient: linear-gradient(90deg, #39E19A, #22C47B);
    --title-gradient: linear-gradient(90deg, #8750f7 0%, #2a1454 100%);
    --border-color: #EAEAEA;
}

/* ==========================================================================
   2. ESTILOS GERAIS E ANIMAÇÕES
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Museo', sans-serif; font-weight: 500; background-color: var(--bg-main); color: var(--text-primary); line-height: 1.6; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; overflow-x: hidden; position: relative; }

h2 { font-size: 2.8rem; text-align: center; margin-bottom: 40px; line-height: 1.2; font-weight: 900; }

.gradient-text { background-image: var(--title-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

.cta-button { display: inline-block; background: var(--green-gradient); color: var(--bg-main); padding: 18px 35px; border-radius: 8px; text-decoration: none; font-weight: 700; text-transform: uppercase; text-align: center; border: none; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; width: 100%; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); font-family: 'Museo', sans-serif; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

.fade-in-element { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-element.visible { opacity: 1; transform: translateY(0); }

.blob-effect::before { content: ""; position: absolute; width: 650px; height: 550px; border-radius: 50%; background-image: linear-gradient(260deg, #8750f7, rgba(115, 67, 210, .1)); filter: blur(150px); z-index: -1; pointer-events: none; }
#inscricao.blob-effect::before { top: 20%; right: -20%; }

/* ==========================================================================
   3. ESTILOS DAS SEÇÕES
   ========================================================================== */
#inscricao { padding-top: 40px; }
.hero-wrapper { display: grid; grid-template-columns: 40% 60%; align-items: center; gap: 20px; }
.hero-content { padding-right: 20px; }
.hero-image-section { text-align: center; }
.hero-intro-text { font-size: 1.1rem; margin-bottom: 10px; }
.hero-main-headline { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.1; }
.hero-info-text { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
.hero-info-text p { font-size: 0.9rem; line-height: 1.5; margin: 0; }
.hero-form input { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid transparent; border-radius: 8px; font-size: 1rem; background-color: var(--form-bg); }
.hero-form input::placeholder { color: #bca9e9; }
.hero-form input.error { border-color: #d9534f; }
.error-message { color: #d9534f; font-size: 0.85rem; margin-top: -10px; margin-bottom: 10px; }
.hero-image-section img { max-width: 100%; height: auto; }
.hero-stats-wrapper { display: flex; justify-content: center; gap: 40px; margin-top: 40px; text-align: left; }
.hero-stat-item .number { font-size: 2.8rem; font-weight: 900; color: var(--purple-highlight); }
.hero-stat-item span { font-size: 0.9rem; color: #555; }

#for-me { background-color: var(--bg-alt); }
.for-me-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.for-me-item { padding: 25px; border: 1px solid var(--border-color); border-radius: 12px; display: flex; gap: 25px; align-items: center; transition: transform 0.2s ease, box-shadow 0.2s ease; background-color: var(--bg-main); }
.for-me-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.for-me-item-content { flex: 1; }
.for-me-item h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--purple-highlight); font-weight: 900; }
.for-me-item-icon { font-size: 1.5rem; color: var(--purple-highlight); font-weight: 900; }
.for-me-cta { text-align: center; margin-top: 40px; }
.for-me-cta .cta-button { width: auto; }

#social-proof { background-color: var(--bg-main); overflow: visible; }
.social-proof-wrapper { display: flex; gap: 60px; align-items: flex-start; }
.social-proof-sticky-col { flex: 0 0 45%; position: -webkit-sticky; position: sticky; top: 150px; }
.social-proof-scroll-col { flex: 1; text-align: center; }
.social-proof-sticky-col img { width: 100%; }
.testimonial-image { background-color: var(--bg-main); border-radius: 12px; padding: 20px; margin-bottom: 25px; }
.testimonial-image img { width: 100%; border-radius: 8px; }

#commitment, #professors { padding: 100px 0; }
.two-col-wrapper { display: flex; align-items: center; gap: 50px; }
.col-image, .col-text { flex: 1; }
.col-image img { width: 100%; }
#commitment .two-col-wrapper { flex-direction: row-reverse; }
#commitment .col-text { display: flex; flex-direction: column; }
#commitment .cta-button { align-self: center; margin-top: 30px; }
#professors .col-text ul { list-style-position: inside; padding-left: 0; margin: 20px 0; }
#professors .col-text li { margin-bottom: 10px; }

.marquee { padding: 20px 0; white-space: nowrap; overflow: hidden; }
.marquee-top { background-color: #f6f3fc; }
.marquee-bottom { background-color: var(--purple-highlight); }
.marquee-track { display: flex; will-change: transform; }
.marquee-track.reverse { animation: marquee 27s linear infinite reverse; }
.marquee-track:not(.reverse) { animation: marquee 27s linear infinite; }
.marquee-track span { font-size: 1.2rem; font-weight: 900; margin: 0 20px; }
.marquee-top .marquee-track span { color: #8750f7; }
.marquee-bottom .marquee-track span { color: white; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 1.2rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question::after { content: '+'; font-size: 2rem; color: var(--purple-highlight); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-bottom: 20px; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
 /* AJUSTES NO FOOTER */
footer { 
    text-align: center; 
    padding: 40px 0; 
    font-size: 0.9rem; 
    background-color: var(--bg-alt); /* Cor de fundo alterada */
    color: var(--text-primary); /* Cor do texto alterada para preto */
}
footer img { 
    max-width: 150px; 
    margin-bottom: 20px;
    /* A opacidade foi removida da tag img no HTML */
}

/* ==========================================================================
   4. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 992px) {
    .social-proof-wrapper { flex-direction: column; }
    .social-proof-sticky-col { position: static; }
}
@media (max-width: 768px) {
    h2 { font-size: 2rem; } 
    section { padding: 50px 0; }
    .two-col-wrapper { flex-direction: column; }
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .hero-content { padding-right: 0; }
    .hero-image-section { order: 2; }
    .hero-content { order: 1; }
    .hero-main-headline { font-size: 2.5rem; }
    .hero-stats-wrapper { flex-direction: column; gap: 20px; align-items: center; }
    #commitment .two-col-wrapper { flex-direction: column; }
}

.texto-acreditar{ font-size: 60px; line-height: 110%; }
.texto-acreditar-descricao{ font-size: 25px; line-height: 110%; }

 .compromisso-titulo{
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
 }
 .compromisso-descricao{
    text-align: center;
 }

.btn-aprender{
    margin-top: 60px;;
}

 .faq-question{
   color: black
 }