/* CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Força a exclusão definitiva da rolagem lateral */
}

body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Trava scroll enquanto carrega */
body.loading {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==========================================================================
   PRELOADER ANIMADO (SHIMMER BAR)
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0d0d0d;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-content {
    text-align: center;
    width: 80%;
    max-width: 280px;
}

.preloader-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.preloader-bar-container {
    width: 100%;
    height: 4px;
    background-color: #1a1a1a;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.preloader-bar-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shimmerLoop 1.4s infinite linear;
}

@keyframes shimmerLoop {
    0% { left: -100%; }
    100% { left: 140%; }
}

/* Quando o carregamento termina */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* ==========================================================================
   HEADER FIXO (GLASSMORPHISM)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
}

.header-cta {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #d4af37;
    color: #000;
}


/* TEXTOS REUTILIZÁVEIS */
.gold-text {
    color: #d4af37;
    background: linear-gradient(135deg, #ffe082 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-text {
    color: #25d366;
}

.underline-text {
    text-decoration: underline;
    text-decoration-color: #d4af37;
}

.section-badge {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #a8a8a8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}


/* HERO SECTION */
.hero {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 70%);
    padding-top: 40px; /* Espaço para o header fixo */
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-image-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mentor-badge {
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
}

.mentor-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentor-image-placeholder {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(180deg, #222, #111);
    border: 3px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    color: #555;
    font-weight: bold;
    overflow: hidden; 
}

.hero-text-side h1 {
    font-family: 'Montserrat';
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.old-price {
    color: #ff4d4d;
    text-decoration: line-through;
}

/* BOTÃO CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.02);
}

.secure-tag {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 10px;
}


/* FITA DE NÚMEROS INFINITA */
.numbers-tape {
    background: #111;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    padding: 12px 0;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
}

.tape-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: scrollTape 60s linear infinite;
}

.tape-track span {
    background: #1a1a1a;
    color: #fff;
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.1rem;
    border: 1px solid #2a2a2a;
}

.tape-track span.red { background: #b30000; border-color: #e60000; }
.tape-track span.green { background: #008000; border-color: #00b300; }

@keyframes scrollTape {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* CARDS DE RECURSOS (VIP) */
.vip-section { background-color: #080808; width: 100%; overflow: hidden; }
.grid-features { display: grid; grid-template-columns: 1fr; gap: 15px; }

.feature-card {
    background: #121212;
    border: 1px solid #222;
    padding: 25px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.feature-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: #999; font-size: 0.85rem; }


/* O MÉTODO */
.method-section { background-color: #0d0d0d; width: 100%; overflow: hidden; }
.method-badge { font-family: 'Cinzel', serif; font-size: 1.3rem; margin-bottom: 15px; text-align: center; }
.method-sub { color: #aaa; font-size: 0.9rem; margin-bottom: 30px; text-align: center; }
.method-list { list-style: none; max-width: 450px; margin: 0 auto; }

.method-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.method-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    border: 1px solid #d4af37;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}


/* DEPOIMENTOS */
.testimonials-section { width: 100%; overflow: hidden; }
.grid-testimonials { display: grid; grid-template-columns: 1fr; gap: 15px; }

.testimonial-card {
    background-color: #121212;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.stars { color: #d4af37; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; color: #ccc; font-size: 0.9rem; margin-bottom: 15px; }
.user-info { display: flex; align-items: center; gap: 10px; }

.avatar {
    width: 30px;
    height: 30px;
    background-color: #d4af37;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* SEÇÃO CARROSSEL DE PROVAS REAIS */
.proofs-section { 
    width: 100%; 
    max-width: 100vw;
    overflow: hidden; 
}

.proof-card { 
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo interno do slide */
}

.proof-placeholder-img {
    background: #161616;
    border: 1px solid #252525;
    border-radius: 12px;
    width: 100%;
    max-width: 290px; /* Evita que o print fique gigante ou desalinhe no mobile */
    margin: 0 auto; /* Força o alinhamento central */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    overflow: hidden; 
}

.proof-placeholder-img p { font-size: 0.95rem; color: #fff; margin-bottom: 10px; }
.proof-placeholder-img span { font-size: 0.8rem; color: #888; }
.proof-placeholder-img strong { margin-top: 15px; font-size: 1.1rem; }

/* Customização dos controles do Splide */
.splide { 
    width: 100%; 
    max-width: 100%; 
    margin: 0 auto;
    overflow: visible; /* Permite ver as bordinhas dos cards vizinhos se configurado, mas mantém o foco no centro */
}


.splide__pagination__page { background: #333 !important; }
.splide__pagination__page.is-active { background: #d4af37 !important; transform: scale(1.2); }
.splide__arrow { background: rgba(20, 20, 20, 0.8) !important; border: 1px solid #333 !important; }
.splide__arrow svg { fill: #d4af37 !important; }

.center-cta { text-align: center; margin-top: 35px; }

.pulse { animation: pulseAnimation 2s infinite; }

@keyframes pulseAnimation {
    0% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #050505;
    color: #444;
    font-size: 11px;
    border-top: 1px solid #111;
    width: 100%;
}


/* ==========================================================================
   MEDIA QUERIES (DESKTOP)
   ========================================================================== */
@media (min-width: 768px) {
    .section-title { font-size: 2.8rem; }

    .header-container { padding: 20px 40px; }

    .hero-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-image-side { order: 2; width: 45%; }
    .mentor-image-placeholder { width: 380px; height: 380px; }
    .hero-text-side { width: 50%; text-align: left; }
    .hero-text-side h1 { font-size: 2.5rem; }
    .cta-button { width: auto; padding: 18px 40px; }

    .grid-features { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .grid-testimonials { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Previne flashes visuais antes da execução do ScrollReveal */
.reveal-item, .reveal-top, .reveal-left, .reveal-right, .reveal-card {
    visibility: hidden;
}

/* REGRA DE ENCAIXE PARA AS IMAGENS REAIS */
.img-real-fill {
    width: 100%;
    height: auto; /* Permite que a altura mude proporcionalmente à largura */
    object-fit: contain; /* Garante que a imagem inteira apareça sem cortes */
    display: block;
}