@charset "UTF-8";

/* --- VARIÁVEIS DO TEMA (CLEAN & HOPE) --- */
:root {
    /* Cores Institucionais */
    --primary: #148C80;       /* Verde Teal (Ação/Esperança) */
    --primary-dark: #043540;  /* Azul Petróleo (Profundidade/Marca) */
    --accent: #F97316;        /* Laranja (Botões de CTA) */
    --accent-hover: #EA580C;
    
    /* Fundos */
    --bg-body: #F5F7FA;       /* Cinza azulado muito claro */
    --bg-surface: #FFFFFF;    /* Branco puro para cards */
    --bg-alt: #E0F2F1;        /* Fundo alternativo suave */
    
    /* Textos */
    --text-main: #043540;     /* Texto principal (Azul escuro) */
    --text-muted: #64748B;    /* Texto secundário (Cinza médio) */
    --text-light: #F8FAFC;    /* Texto sobre fundos escuros */

    /* Bordas e Sombras */
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 6px -1px rgba(4, 53, 64, 0.1), 0 2px 4px -1px rgba(4, 53, 64, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(4, 53, 64, 0.1), 0 4px 6px -2px rgba(4, 53, 64, 0.05);
}

/* --- RESET & GERAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body {
    background-color: var(--bg-body);
    /* Gradiente sutil no topo para dar brilho */
    background-image: radial-gradient(circle at 50% 0%, #E0F2F1 0%, #F5F7FA 60%);
    background-repeat: no-repeat;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4 { 
    letter-spacing: -0.02em; 
    line-height: 1.2; 
    color: var(--primary-dark); /* Títulos escuros */
    font-weight: 700;
}

h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 15px; }

/* Gradiente no texto do título principal */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tags de Seção (Pílulas) */
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: rgba(20, 140, 128, 0.1); 
    border: 1px solid rgba(20, 140, 128, 0.2);
    border-radius: 50px; 
    color: var(--primary); 
    font-size: 0.85rem; font-weight: 700;
    margin-bottom: 20px; 
    text-transform: uppercase; letter-spacing: 1px;
}

/* --- BOTÕES (CTA) --- */
.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white !important; 
    padding: 16px 32px; 
    font-size: 1.1rem; font-weight: 700; 
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    transition: all 0.2s ease; 
    display: inline-flex; align-items: center; gap: 10px;
    border: none; cursor: pointer; text-transform: uppercase;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(249, 115, 22, 0.5); }
.btn-cta:active { transform: translateY(1px); }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); } 
}

/* --- NAVBAR --- */
header { 
    padding: 15px 0; 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 1000; 
    box-shadow: var(--shadow-sm);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); }
.nav-links { display: flex; gap: 25px; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.nav-links a:hover { color: var(--primary); }

/* --- HERO SECTION --- */
.hero { padding: 60px 0 80px 0; }

.stats-hero { display: flex; justify-content: center; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
.stat-badge { 
    background: var(--bg-surface); 
    padding: 8px 20px; 
    border-radius: 50px; 
    border: 1px solid var(--border); 
    font-size: 0.9rem; font-weight: 600; 
    display: flex; align-items: center; gap: 8px; 
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.vsl-container { 
    position: relative; max-width: 800px; margin: 40px auto; 
    border-radius: 20px; padding: 10px; 
    background: #fff; 
    border: 1px solid var(--border); 
    box-shadow: 0 20px 50px -10px rgba(4, 53, 64, 0.15); 
}
.vsl-frame { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: #000; }

/* --- TRANSFORMAÇÃO (Antes e Depois) --- */
.transformation { padding: 80px 0; background: #FFFFFF; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }

.state-card { 
    padding: 30px; border-radius: 20px; 
    border: 1px solid var(--border); 
    background: var(--bg-body); /* Fundo cinza claro */
}

.state-card.before { border-left: 4px solid #ef4444; }
.state-card.after { border-left: 4px solid #10b981; background: #ecfdf5; /* Fundo verde bem claro */ }

.before h3 { color: #ef4444; }
.after h3 { color: #059669; }

.state-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; color: var(--text-main); }
.before i { color: #ef4444; margin-top: 4px; }
.after i { color: #059669; margin-top: 4px; }

.quote-box { 
    margin-top: 40px; 
    background: var(--bg-alt); 
    padding: 30px; 
    border-radius: 16px; 
    border-left: 4px solid var(--primary); 
    font-style: italic; 
    font-size: 1.1rem; 
    color: var(--primary-dark); 
    text-align: center;
}

/* --- FUNCIONALIDADES --- */
.features { padding: 80px 0; background: var(--bg-body); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; }

.feature-card { 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    padding: 25px; border-radius: 20px; 
    transition: 0.3s; 
    box-shadow: var(--shadow-sm);
}
.feature-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-card); 
}
.feature-card h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.feature-card h3 i { font-size: 1.4rem; }

/* --- DEPOIMENTOS --- */
.testimonials { padding: 80px 0; background: #FFFFFF; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.review-card { 
    background: var(--bg-body); /* Cinza claro */
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid var(--border); 
}
.review-card p { color: var(--text-main); font-style: italic; }

.review-author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.avatar { 
    width: 50px; height: 50px; 
    background: var(--primary); 
    color: white; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-weight: bold; font-size: 1.2rem; 
}

.stats-bar { 
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin-top: 60px; 
    padding: 40px; 
    background: var(--primary-dark); /* Fundo escuro para destaque */
    border-radius: 20px; 
    color: white;
}
.stat-box h4 { font-size: 2.5rem; color: var(--primary); margin: 0; }
.stat-box p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* --- MENTOR --- */
.mentor { padding: 80px 0; background: var(--bg-body); border-top: 1px solid var(--border); }
.mentor-content { display: flex; gap: 50px; align-items: center; max-width: 900px; margin: 0 auto; }
.mentor-img { 
    width: 300px; height: 300px; 
    border-radius: 20px; object-fit: cover; 
    box-shadow: var(--shadow-card); 
}
.mentor-roles span { 
    background: var(--bg-surface); 
    border: 1px solid var(--border);
    padding: 4px 12px; border-radius: 20px; 
    font-size: 0.8rem; margin-right: 5px; 
    color: var(--primary-dark); font-weight: 600;
}

/* --- Badges da Seção Mentores --- */
.role-badge {
    background: #fff;
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.role-badge i {
    color: var(--primary);
}

/* --- PLANOS (PRICING) --- */
.pricing { padding: 100px 0; background: linear-gradient(180deg, #FFFFFF 0%, #E0F2F1 100%); }

.plans-wrapper { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 50px; align-items: center; }

.plan-card { 
    width: 100%; max-width: 380px; 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    border-radius: 24px; padding: 40px; 
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-card);
}

.plan-card.popular { 
    border: 2px solid var(--primary); 
    background: #FFFFFF; 
    transform: scale(1.05); 
    z-index: 10; 
    box-shadow: 0 20px 40px rgba(20, 140, 128, 0.15); 
}

.ribbon { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: var(--accent); color: white; 
    padding: 6px 20px; border-radius: 50px; 
    font-weight: 800; text-transform: uppercase; font-size: 0.8rem; 
}

.price { font-size: 3rem; font-weight: 800; color: var(--primary-dark); margin: 20px 0 5px 0; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.plan-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text-main); }
.plan-features i { color: var(--primary); }

/* --- BÔNUS --- */
.bonuses { padding: 60px 0; background: #fff4eb; /* Laranja bem clarinho */ }

.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }

.bonus-card { 
    background: #fff; 
    padding: 25px; border-radius: 15px; 
    border: 1px solid rgba(249, 115, 22, 0.2); 
    text-align: center; 
    box-shadow: var(--shadow-sm);
}
.bonus-card h4 { color: var(--accent); margin-bottom: 10px; }
.bonus-val { text-decoration: line-through; color: #999; font-size: 0.9rem; }
.bonus-free { color: var(--accent); font-weight: 800; font-size: 1.2rem; }

/* --- GARANTIA --- */
.guarantee { padding: 80px 0; text-align: center; background: #FFFFFF; }
.guarantee-box { 
    max-width: 700px; margin: 0 auto; 
    background: var(--bg-surface); 
    padding: 40px; border-radius: 24px; 
    border: 2px dashed var(--border); 
}

/* --- FAQ & CTA FINAL --- */
.faq { padding: 80px 0; background: var(--bg-body); }
.faq-item { background: #fff; padding: 20px; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 15px; }

.final-cta { padding: 100px 0; text-align: center; background: var(--primary-dark); color: white; }
.final-cta h1, .final-cta h2, .final-cta p { color: white; }
.final-cta .section-tag { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

.scarcity-box { 
    background: rgba(239, 68, 68, 0.2); 
    padding: 15px 30px; border-radius: 10px; 
    border: 1px solid rgba(239, 68, 68, 0.4); 
    display: inline-block; margin-top: 30px; 
    color: #fca5a5; font-weight: 600;
}

/* --- FOOTER --- */
footer { padding: 40px 0; background: #02242b; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.9rem; color: #aaa; }

/* --- SEÇÃO FORMATOS / ECOSSISTEMA --- */
.formats-section {
    padding: 90px 0;
    background-color: var(--bg-body); 
    border-top: 1px solid var(--border);
}

/* Estilos específicos para os cards desta seção */
.format-card-styled {
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
}

.highlight-course {
    border-top: 4px solid var(--primary);
}

.format-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(20, 140, 128, 0.1); 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.format-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary); 
}

.format-card-styled:hover .format-icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}
.format-card-styled:hover .format-icon-wrapper i {
    color: white;
}

.format-card-styled h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.format-list-container {
    margin-top: auto; 
    padding-top: 20px;
    border-top: 1px dashed var(--border); 
}

.list-header {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.format-list-container ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

.format-list-container ul li i {
    color: var(--primary); 
    font-size: 1rem;
    opacity: 0.9;
}

.format-card-styled:first-child ul {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 5px 15px;
}

/* === CORREÇÃO DO DESKTOP === */
/* Agora força 3 colunas iguais e remove o 'span 2' */
@media (min-width: 992px) {
    .formats-section .features-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* Força 3 colunas */
    }
    .format-card-styled:first-child {
        grid-column: auto !important; /* CARD FICA NORMAL (1 COLUNA) */
    }
}

/* --- ESTILOS DO CARROSSEL (Sliders) --- */
.carousel-wrapper {
    margin-bottom: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.carousel-container {
    position: relative;
    overflow: hidden; 
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.carousel-item {
    min-width: 100%; 
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* --- Estilo Card de Texto no Slider --- */
.review-card.single-view {
    text-align: center;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 20px 40px;
    max-width: 650px;
}
.review-card.single-view p {
    font-size: 1.1rem;
    color: var(--text-main);
}
.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 10px;
}

/* --- Estilo Container de Vídeo --- */
.video-container {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Estilo Prints (Imagens) --- */
.image-proof img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* --- Botões de Navegação (CORRIGIDO PARA AZUL) --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff !important; /* Fundo Branco */
    color: #043540 !important;      /* Seta Azul Escuro (Garante visibilidade) */
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 1 !important;
    z-index: 50; 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary) !important;
    color: white !important;
}
.carousel-btn i {
    color: inherit !important;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 768px) {
    .carousel-btn {
        width: 35px; 
        height: 35px;
        font-size: 1rem;
    }
    .review-card.single-view {
        padding: 10px 0;
    }
}

/* --- Estilos da Capa do Vídeo (Facade) --- */
.video-container {
    cursor: pointer;
    position: relative;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.video-container:hover .video-thumb {
    opacity: 0.4; /* Escurece a imagem ao passar o mouse */
}

/* Botão Play Central */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.8); /* Vermelho YouTube */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: 0.3s;
    pointer-events: none; /* Deixa o clique passar para o container */
}

.video-container:hover .play-button {
    background-color: #f00;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- AJUSTES DOS BOTÕES DO HEADER (CÓDIGO ÚNICO E LIMPO) --- */

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botão Login (Padrão Desktop) */
.btn-login-header {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s;
}
.btn-login-header:hover { color: var(--primary); }

/* Textos Padrão (Desktop) */
.desktop-text { display: inline; }
.mobile-text { display: none; }
.text-login { display: inline; }


/* --- VERSÃO MOBILE FINAL (Celulares) --- */
@media (max-width: 768px) {
    
    /* 1. Header Limpo: Esconde o menu de texto */
    .nav-links { display: none !important; }

    /* Ajuste da Logo para não ficar gigante */
    .logo img { height: 30px !important; width: auto !important; }

    /* Ajuste do Container do Header */
    .header-buttons {
        gap: 10px;
    }

    /* 2. Botão COMEÇAR (Laranja) */
    .btn-cta-header {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
    }
    .desktop-text { display: none !important; }
    .mobile-text { display: inline !important; }

    /* 3. Botão ENTRAR (Login) - Correção Definitiva */
    .text-login { display: none !important; } /* Some o texto */
    
    .btn-login-header {
        display: flex !important;
        align-items: center;
        justify-content: center;
        /* Tamanho fixo para garantir que não suma */
        width: 40px !important;
        height: 40px !important;
        background-color: rgba(20, 140, 128, 0.1); /* Fundo verdinho claro */
        border-radius: 50%;
        border: 1px solid rgba(20, 140, 128, 0.2);
    }
    
    .btn-login-header i {
        font-size: 1.2rem !important;
        color: var(--primary-dark) !important;
        margin: 0 !important;
        display: block !important;
    }

    /* 4. Transformação (Antes e Depois) empilhados */
    .comparison-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

    /* 5. Mentor empilhado (Imagem em cima, texto em baixo) */
    .mentor-content { flex-direction: column !important; text-align: center; gap: 20px !important; }
    .mentor-img { width: 100% !important; height: auto !important; max-width: 300px; margin: 0 auto; }
    .mentor-content div { text-align: left; } /* Mantém texto alinhado a esquerda para leitura */

    /* 6. Otimização de Fundo (Para manter a nota 89/90) */
    body {
        background-image: none !important;
        background-color: #F5F7FA !important;
    }
}