/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Fundo Escuro Sépia */
    --primary-dark: #ffffff;
    --secondary-dark: #2b1810;
    --brown-dark: #3d2817;
    
    /* Destaques Dourados */
    --accent-gold: #ef6801;
    --accent-amber: #ef6801;
    --accent-bronze: #ef6801;
    
    /* Textos */
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-gray: #999999;
    --text-dark: #1a1a1a;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --bg-dark-gradient: linear-gradient(135deg, #292929 0%, #0b2f5b 50%, #0b2f5b 100%);
    
    /* Glassmorphism */
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(212, 175, 55, 0.2);
    
    /* Sombras */
    --gold-shadow: rgba(212, 175, 55, 0.4);
    --gold-glow: rgba(212, 175, 55, 0.6);
    --dark-shadow: rgba(0, 0, 0, 0.3);
}

/* Importar Fonte Serifada Elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Fontes e Body */
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: var(--bg-dark-gradient);
    color: var(--text-white);
    line-height: 1.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar com Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(239, 104, 1, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: #0B2F5B;
    box-shadow: 0 2px 20px var(--dark-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Cronômetro no Header */
.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.countdown-text {
    font-size: 16px;
    color: #ef6801;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-number {
    font-size: 20px;
    font-weight: 700;
    color: #ef6801;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.countdown-separator {
    font-size: 16px;
    color: rgba(212, 175, 55, 0.5);
    margin: 0 3px;
}

.countdown-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
    font-weight: 300;
}

/* Botão CTA na Navbar */
.cta-nav-button {
    display: inline-block;
    padding: 10px 20px;
    background: #EF6801;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.cta-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
    background: var(--accent-amber);
}

/* Seção Niterói - A Cidade do Evento */
#niteroi-cidade {
    background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    color: #ffffff;
    padding: 100px 20px;
}

#niteroi-cidade .section-title {
    color: #ef6801;
}

#niteroi-cidade .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.niteroi-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.niteroi-foto {
    flex: 0 0 45%;
}

.niteroi-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid #ef6801;
}

.niteroi-texto {
    flex: 0 0 50%;
}

.niteroi-headline {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    font-weight: 700;
    color: #ef6801;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.niteroi-descricao {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.niteroi-descricao strong {
    color: #ef6801;
    font-weight: 600;
}

.niteroi-diferenciais {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(239, 104, 1, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ef6801;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background: rgba(239, 104, 1, 0.15);
    transform: translateX(5px);
}

.diferencial-item i {
    font-size: 32px;
    color: #ef6801;
    flex-shrink: 0;
    margin-top: 5px;
}

.diferencial-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.diferencial-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.niteroi-endereco {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(239, 104, 1, 0.15);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ef6801;
    text-align: center;
}

.niteroi-endereco i {
    color: #ef6801;
    margin-right: 10px;
    font-size: 20px;
}

.niteroi-endereco strong {
    color: #ef6801;
}

/* Responsivo */
@media (max-width: 768px) {
    #niteroi-cidade {
        padding: 60px 20px;
    }
    
    .niteroi-split {
        flex-direction: column;
        gap: 40px;
    }
    
    .niteroi-foto,
    .niteroi-texto {
        flex: 1 1 100%;
    }
    
    .niteroi-headline {
        font-size: 24px;
        text-align: center;
    }
    
    .niteroi-descricao {
        font-size: 16px;
    }
    
    .diferencial-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .diferencial-item i {
        font-size: 28px;
        margin-top: 0;
    }
    
    .niteroi-endereco {
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-banner {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-cta-button {
    position: absolute;
    left: 199px;
    top: 690px;
    display: inline-block;
    padding: 15px 40px;
    background: #EF6801;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
    background: var(--accent-amber);
}

/* Formulário Hero */
.hero-form-container {
    position: absolute;
    left: 1150px;
    top: 250px;
    z-index: 10;
}

.hero-lead-form {
    background: rgba(255, 255, 255, 0%);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 100px 400px rgba(0, 0, 0, 0.3);
    border: 2px solid #ef6801;
    width: 600px;
}

.form-title {
    font-family: 'Montserrat', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.hero-lead-form input {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.hero-lead-form input:focus {
    outline: none;
    border-color: #ef6801;
    box-shadow: 0 0 10px rgba(239, 104, 1, 0.2);
}

.form-submit-button {
    width: 100%;
    padding: 20px;
    background: #ef6801;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 104, 1, 0.6);
    background: #d95a01;
}

@media (max-width: 768px) {
    .hero-cta-button {
        left: 50%;
        transform: translateX(-50%);
        top: 88%;
        font-size: 13px;
        padding: 10px 09px;
    }
    
    .hero-cta-button:hover {
        transform: translateX(-50%) translateY(-3px);
    }
    
    
    
    .hero-form-container {
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        width: 100%;
        max-width: 350px;
    }
    
    .hero-lead-form {
        width: 100%;
        padding: 14px 9px;
    }
    
    .form-title {
        font-size: 18px;
    }
    
    .hero-lead-form input {
        padding: 12px;
        font-size: 13px;
    }
    
    .form-submit-button {
        padding: 12px;
        font-size: 14px;
    }
    
    
    
    .info-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-carousel .info-card-image {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .info-carousel::-webkit-scrollbar {
        height: 8px;
    }
    
    .info-carousel::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .info-carousel::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid-horizontal .info-card-image {
        flex: 0 0 85%;
        min-width: 85%;
    }
    
    .beneficios-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none !important;
    }
    
    .beneficios-carousel .info-card-image {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
}

/* CTA Buttons gerais (resto da página) */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ef6801;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gold-glow);
    background: #ef6801;
}

/* Sections - Alternância de cores */
.section {
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Seções ESCURAS (Fundo Preto/Marrom Sépia) */
#workshop,
#instrutora,
#garantia,
#decisao {
background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    color: var(--text-white);
}

/* Seções BRANCAS */
#revelacao,
#para-quem,
#beneficios,
#faq {
    background: #ffffff;
    color: #0B2F5B;
}

/* Seção #oferta - Escuro Elegante */
#oferta {
    background: linear-gradient(15deg, #0e0505a1 20%, #0B2F5B 50%, #0B2F5B 100%);
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos das seções - FONTE SERIFADA ELEGANTE */
.section-title {
    font-family: 'Montserrat', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
    letter-spacing: 1px;
}

/* Títulos em seções brancas */
#revelacao .section-title,
#para-quem .section-title,
#beneficios .section-title,
#faq .section-title {
    color: #0B2F5B;
}

/* Títulos em seções escuras - DOURADO */
#workshop .section-title,
#instrutora .section-title,
#garantia .section-title,
#decisao .section-title {
    color: #ef6801;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ef6801;
    border-radius: 2px;
}

/* Subtítulos - FONTE SANS-SERIF LEVE */
.section-subtitle {
    text-align: center;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Subtítulos em seções brancas */
#revelacao .section-subtitle,
#para-quem .section-subtitle,
#beneficios .section-subtitle,
#faq .section-subtitle {
    color: #ef6801;
}

/* Subtítulos em seções escuras */
#workshop .section-subtitle,
#instrutora .section-subtitle,
#garantia .section-subtitle,
#decisao .section-subtitle {
    color: var(--text-light);
}

.section-featured {
    text-align: center;
    font-size: 24px;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-grid-horizontal {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(0, 0, 0, 0.1);
}

.info-grid-horizontal::-webkit-scrollbar {
    height: 8px;
}

.info-grid-horizontal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.info-grid-horizontal::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.info-grid-horizontal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

.info-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.info-card-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Montserrat', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.info-card-image {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--dark-shadow);
    transition: all 0.3s ease;
}

.info-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.info-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Checklist */
.checklist {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.checklist li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.checklist li i {
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--accent-gold);
    font-size: 20px;
}

/* Warning Box */
.warning-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #ef6801;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
}

.warning-box p {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.warning-box i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 24px;
}

/* Mentoras Banner */
.mentoras-banner {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.price-info {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Guarantee Badge */
.guarantee-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.guarantee-title {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.guarantee-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

/* Options */
.options {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.option {
    flex: 0 0 calc(50% - 20px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.option-recommended {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.option:hover {
    transform: translateY(-5px);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.option-icon i {
    color: rgba(255, 255, 255, 0.3);
}

.option-recommended .option-icon i {
    color: var(--accent-gold);
}

.option h3 {
    font-family: 'Montserrat', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.option p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-button {
    font-size: 20px;
    padding: 18px 50px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--dark-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-arrow {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #4d4d4d;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animações */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .countdown-header {
        font-size: 12px;
        gap: 4px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .cta-nav-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    
    .countdown-header {
        flex-direction: row;
        justify-content: center;
        text-align: center;
        font-size: 10px;
        gap: 3px;
    }
    

    
    .countdown-number {
        font-size: 16px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .countdown-separator {
        font-size: 14px;
        margin: 0 2px;
    }
    
    .cta-nav-button {
        padding: 10px 20px;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }

.hero {
        padding-top: 80px;
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
    }

    .section {
        padding: 10px 20px;
    }

    .instructor-section {
        padding: 40px 20px;
        text-align: center;
        flex-direction: column;
    }

    .instructor-photo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .options {
        flex-direction: column;
        align-items: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .guarantee-badge {
        padding: 30px 20px;
    }
}

/* Seção Oferta */
.oferta-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.oferta-left {
    flex: 0 0 300px;
}

.oferta-question {
    font-family: 'Montserrat', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.oferta-center {
    flex: 0 0 400px;
}

.oferta-box {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.oferta-header {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.oferta-body {
    padding: 40px 30px;
    text-align: center;
}

.oferta-promo {
    color: var(--accent-bronze);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.oferta-price {
    font-family: 'Montserrat', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.oferta-installment {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.oferta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 20px var(--gold-shadow);
}

.oferta-button:hover {
    background: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.oferta-payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.oferta-payment-methods img {
    height: 30px;
    opacity: 0.7;
}

.oferta-right {
    flex: 0 0 350px;
}

.oferta-benefits {
    list-style: none;
}

.oferta-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.oferta-benefits li i {
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--accent-gold);
    font-size: 10px;
}

/* Destaque sutil do texto final da seção revelação */
.section-highlight {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

#revelacao .section-highlight {
    color: #0B2F5B;
}

@media (max-width: 768px) {
    .section-highlight {
        font-size: 18px;
        margin-top: 40px;
    }
}

/* Remove botão e aumenta cronômetro SOMENTE NO MOBILE */
@media (max-width: 768px) {
    
    .oferta-container {
        flex-direction: column;
    }
    
    .oferta-left,
    .oferta-center,
    .oferta-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .oferta-question {
        font-size: 28px;
        text-align: center;
    }
    
    .oferta-box {
        margin: 20px 0;
    }
    
    .oferta-benefits li {
        font-size: 14px;
    }
    .cta-nav-button {
        display: none !important;
    }
    
    .countdown-number {
        font-size: 24px !important;
    }
    
    .countdown-label {
        font-size: 12px !important;
    }
    
    .countdown-separator {
        font-size: 18px !important;
    }
    

}

/* Carrossel de Trabalhos */
.trabalhos-carousel-container {
    background: transparent;
    padding: 10px 0;
    overflow: hidden;
}

.trabalhos-carousel {
    display: flex;
    width: 100%;
}

.trabalhos-track {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    animation: scrollTrabalhos 40s linear infinite;
    flex-shrink: 0;
}
.trabalho-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
}

@keyframes scrollTrabalhos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .trabalhos-carousel-container {
        padding: 10px 0;
    }
    
    .trabalho-img {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }
    
    .trabalhos-track {
        gap: 20px;
    }
}

/* Seção Galeria Prática - Mão na Massa */
#galeria-pratica {
    background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    color: #ffffff;
    padding: 100px 20px;
}

#galeria-pratica .section-title {
    color: #ef6801;
}

#galeria-pratica .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

#galeria-pratica .section-featured {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

#galeria-pratica .section-featured strong {
    color: #ef6801;
    font-weight: 700;
}

.galeria-pratica-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
    padding: 0 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.galeria-pratica-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.galeria-pratica-carousel::-webkit-scrollbar {
    display: none;
}

.galeria-pratica-item {
    position: relative;
    flex: 0 0 350px;
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    scroll-snap-align: center;
}

.galeria-pratica-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(239, 104, 1, 0.4);
}

.galeria-pratica-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.galeria-pratica-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.galeria-pratica-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #ef6801;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-pratica-nav:hover {
    background: #d95a01;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(239, 104, 1, 0.6);
}

.galeria-pratica-prev {
    left: 0;
}

.galeria-pratica-next {
    right: 0;
}

.galeria-pratica-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.destaque-aprendizado {
    background: rgba(239, 104, 1, 0.15);
    border: 2px solid #ef6801;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.destaque-aprendizado i {
    font-size: 64px;
    color: #ef6801;
    flex-shrink: 0;
}

.destaque-aprendizado p {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.destaque-aprendizado strong {
    color: #ef6801;
    font-weight: 700;
}

/* Responsivo */
@media (max-width: 768px) {
    #galeria-pratica {
        padding: 60px 20px;
    }
    
    #galeria-pratica .section-featured {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
.galeria-pratica-carousel-wrapper {
        padding: 0 50px;
    }
    
    .galeria-pratica-carousel {
        gap: 15px;
    }
    
    .galeria-pratica-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .galeria-pratica-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .galeria-pratica-item img {
        height: 250px;
    }
    
    .destaque-aprendizado {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .destaque-aprendizado i {
        font-size: 48px;
    }
    
    .destaque-aprendizado p {
        font-size: 16px;
        text-align: center;
    }
}


/* Seção Palestrantes */
#palestrantes {
    background: #ffffff;
    color: #0B2F5B;
}

#palestrantes .section-title {
    color: #0B2F5B;
}

#palestrantes .section-subtitle {
    color: #0B2F5B;
}

.palestrantes-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 80px;
}

.palestrantes-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.palestrantes-carousel::-webkit-scrollbar {
    display: none;
}

.palestrante-card {
    position: relative;
    flex: 0 0 350px;
    min-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    background: #ffffff;
    scroll-snap-align: center;
}

.palestrante-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(239, 104, 1, 0.4);
}

.palestrante-foto {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.palestrante-card:hover .palestrante-foto {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.palestrante-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 104, 1, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.palestrante-card:hover .palestrante-overlay {
    opacity: 1;
}

.palestrante-overlay i {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 15px;
    animation: pulseIcon 1.5s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.palestrante-overlay span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.palestrante-nome {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 47, 91, 0.95), transparent);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', serif;
    z-index: 1;
}


/* Botões de Navegação do Carrossel */
.palestrante-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #ef6801;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.palestrante-nav:hover {
    background: #d95a01;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(239, 104, 1, 0.6);
}

.palestrante-prev {
    left: 0;
}

.palestrante-next {
    right: 0;
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 8px 35px rgba(239, 104, 1, 0.7);
    }
}

.palestrante-nav.hidden {
    opacity: 0;
    pointer-events: none;
}


/* Modal Pop-up */
.modal-palestrante {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-palestrante.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(239, 104, 1, 0.5);
    border: 3px solid #ef6801;
    animation: modalSlideIn 0.4s ease;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ef6801;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #d95a01;
}

.modal-body {
    display: flex;
    gap: 40px;
    padding: 50px;
}

.modal-foto {
    flex: 0 0 350px;
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #ef6801;
}

.modal-info {
    flex: 1;
}

.modal-nome {
    font-family: 'Montserrat', serif;
    font-size: 36px;
    font-weight: 700;
    color: #0B2F5B;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.modal-nome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ef6801;
    border-radius: 2px;
}

.modal-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

.modal-bio p {
    margin-bottom: 20px;
}

.modal-bio strong {
    color: #ef6801;
    font-weight: 600;
}

/* Responsivo Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 30px 20px;
        padding-top: 70px;
    }
    
    .modal-foto {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .modal-nome {
        font-size: 28px;
        text-align: center;
    }
    
    .modal-nome::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .modal-bio {
        font-size: 16px;
    }
    
.palestrantes-carousel-wrapper {
        padding: 0 50px;
    }
    
    .palestrantes-carousel {
        gap: 15px;
    }
    
.palestrante-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .palestrante-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
.palestrante-nome {
        font-size: 16px;
        padding: 15px 10px;
    }
    
.palestrante-overlay i {
        font-size: 48px;
    }
    
    .palestrante-overlay span {
        font-size: 14px;
    }
}


/* Prova Social Section */
#prova-social {
    background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    color: var(--text-dark);
}

#prova-social .section-title {
    color: #ffffff;
}

#prova-social .section-subtitle {
    color: #ffffff;
}

.prova-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.prova-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) rgba(0, 0, 0, 0.1);
}

.prova-carousel::-webkit-scrollbar {
    height: 8px;
}

.prova-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.prova-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.prova-video-item {
    flex: 0 0 350px;
    min-width: 350px;
    transition: transform 0.3s ease;
}

.prova-iframe {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-cyan);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 184, 181, 0.4);
}

.carousel-btn:hover {
    background: var(--accent-cyan-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .prova-carousel-container {
        padding: 0 20px;
    }
    
    .prova-video-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .prova-iframe {
        height: 500px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
}




/* Seção Fechamento - Última Chamada */
#fechamento {
    background: #ffffff;
    color: #0B2F5B;
    padding: 100px 20px;
}

#fechamento .section-title {
    color: #0B2F5B;
    font-size: clamp(28px, 4vw, 42px);
    max-width: 900px;
    margin: 0 auto 20px;
}

#fechamento .section-title::after {
    background: #ef6801;
}

#fechamento .section-subtitle {
    color: #0B2F5B;
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.fechamento-form-container {
    max-width: 600px;
    margin: 0 auto;
background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #ef6801;
}

.fechamento-lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fechamento-lead-form input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    transition: all 0.3s ease;
}

.fechamento-lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.fechamento-lead-form input:focus {
    outline: none;
    border-color: #ef6801;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(239, 104, 1, 0.3);
}

.fechamento-submit-button {
    width: 100%;
    padding: 20px;
    background: #ef6801;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 104, 1, 0.4);
}

.fechamento-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 104, 1, 0.6);
    background: #d95a01;
}

.fechamento-submit-button:active {
    transform: translateY(-1px);
}

/* Responsivo Fechamento */
@media (max-width: 768px) {
    #fechamento {
        padding: 60px 20px;
    }
    
    #fechamento .section-title {
        font-size: 24px;
    }
    
    #fechamento .section-subtitle {
        font-size: 18px;
    }
    
    .fechamento-form-container {
        padding: 30px 20px;
    }
    
    .fechamento-lead-form input {
        padding: 15px;
        font-size: 14px;
    }
    
    .fechamento-submit-button {
        padding: 16px;
        font-size: 15px;
    }
}


/* Seção Mentora */
.mentora-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mentora-foto {
    flex: 0 0 350px;
}

.foto-cris {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
    border: 3px solid var(--accent-gold);
}

.mentora-texto {
    flex: 1;
    min-width: 300px;
}

.mentora-citacao {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.mentora-autoridade {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.mentora-autoridade li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--accent-gold);
}

.mentora-autoridade li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--accent-gold);
    font-size: 18px;
}

@media (max-width: 768px) {
    .mentora-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mentora-foto {
        flex: 0 0 250px;
        margin: 0 auto;
    }
    
    .mentora-citacao {
        font-size: 16px;
    }
    
    .mentora-autoridade li {
        font-size: 16px;
        text-align: left;
    }
}


/* SEÇÃO 3: O EVENTO (ANTI-CONGRESSO) */
.evento-anticongresso {
background: linear-gradient(137deg, #0B2F5B 0%, #051829 50%, #000000 100%);
    color: #ffffff;
}

.evento-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.evento-galeria {
    flex: 0 0 50%;
    position: relative;
}

.galeria-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.galeria-track {
    display: flex;
    transition: transform 0.5s ease;
}

.galeria-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
}

.galeria-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.galeria-btn {
    background: #ef6801;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(239, 104, 1, 0.3);
}

.galeria-btn:hover {
    background: #d95a01;
    transform: scale(1.1);
}

.evento-texto {
    flex: 0 0 45%;
}

.evento-headline {
    font-family: 'Montserrat', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.evento-texto-principal {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.evento-texto-principal strong {
    color: #ef6801;
    font-weight: 600;
}

.evento-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ef6801;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.evento-texto-secundario {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
}

/* Carrossel Marquee - Resinas Estéticas */
.marquee-container {
    background: transparent;
    padding: 05px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: scrollMarquee 30s linear infinite;
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', serif;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Carrossel Pequeno de Fotos */
.evento-carousel-pequeno {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 50px;
}

.carousel-track-pequeno {
    display: flex;
    gap: 20px;
    animation: scrollCarouselPequeno 30s linear infinite;
}

.carousel-img-pequeno {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #ef6801;
    transition: transform 20s ease;
}

.carousel-img-pequeno:hover {
    transform: scale(1.05);
}

@keyframes scrollCarouselPequeno {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



@media (max-width: 768px) {
    .marquee-item {
        font-size: 18px;
    }
    
    .marquee-track {
        gap: 30px;
    }
    
    .evento-split {
        flex-direction: column;
        gap: 40px;
    }
    
    .evento-galeria,
    .evento-texto {
        flex: 1 1 100%;
    }
    
    .galeria-img {
        height: 300px;
    }
    
    .evento-headline {
        font-size: 28px;
        text-align: center;
    }
    
    .evento-texto-principal {
        font-size: 16px;
    }
    
    .evento-subheadline {
        font-size: 18px;
        text-align: center;
    }
    
    .evento-texto-secundario {
        font-size: 15px;
    }
    
    
.evento-carousel-pequeno {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .carousel-img-pequeno {
        width: 180px;
        height: 180px;
        border-radius: 10px;
    }
    
    .carousel-track-pequeno {
        gap: 15px;
    }    
   
#depoimentos {
        padding: 60px 20px;
    }
    
    .depoimentos-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-top: 40px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ef6801 rgba(0, 0, 0, 0.1);
        grid-template-columns: none;
    }
    
    .depoimentos-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .depoimentos-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .depoimentos-grid::-webkit-scrollbar-thumb {
        background: #ef6801;
        border-radius: 10px;
    }
    
    .depoimento-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
    }
    
    .depoimento-video {
        height: 400px;
    }
    
    .depoimento-nome {
        font-size: 18px;
    }
    
    .depoimento-cidade {
        font-size: 14px;
    }
}


/* Textura de Quadradinhos Animados */
.animated-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(239, 104, 1, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 104, 1, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveTexture 5s linear infinite;
}

@keyframes moveTexture {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 20px 10px;
    }
    50% {
        background-position: 40px 40px;
    }
    75% {
        background-position: 20px 30px;
    }
    100% {
        background-position: 0 0;
    }
}


/* Textura de Fundo Global */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0px, transparent 1px, transparent 2px, rgba(255,255,255,.03) 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0px, transparent 1px, transparent 2px, rgba(255,255,255,.03) 3px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Pop-up de Sucesso */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(239, 104, 1, 0.5);
    border: 3px solid #ef6801;
    text-align: center;
    animation: popupSlideIn 0.5s ease;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-header {
    margin-bottom: 20px;
}

.popup-header i {
    font-size: 80px;
    color: #2ecc71;
    animation: checkPulse 1s ease infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.popup-title {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    font-weight: 700;
    color: #0B2F5B;
    margin-bottom: 15px;
}

.popup-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0B2F5B;
    margin-bottom: 10px;
    line-height: 1.6;
}

.popup-text strong {
    color: #ef6801;
    font-weight: 700;
}

.popup-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-cta {
    background: rgba(239, 104, 1, 0.1);
    border: 2px solid #ef6801;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.popup-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #0B2F5B;
    margin-bottom: 20px;
    font-weight: 500;
}

.popup-button {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.popup-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.popup-button i {
    margin-right: 10px;
    font-size: 20px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ef6801;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #d95a01;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .popup-container {
        padding: 40px 25px;
    }
    
    .popup-header i {
        font-size: 60px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-text {
        font-size: 16px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .popup-cta-text {
        font-size: 14px;
    }
    
    .popup-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}