@font-face {
    font-family: 'Champagne Bold';
    src: url('fonts/Champagne & Limousines Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

:root {
    --preto: #0a0a0a;
    --dourado: #D4AF37;
    --dourado-transparente-leve: rgba(212, 175, 55, 0.05);
    --dourado-transparente-forte: rgba(212, 175, 55, 0.15);
    --cinza-escuro: #1a1a1a;
    --cinza-texto: #c0c0c0;
    --branco: #ffffff;

    --font-titulo: 'Champagne Bold', sans-serif;

    --font-corpo: 'Josefin Sans', sans-serif;
    --font-acento: 'Cursive Standard', cursive;

    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-corpo);
    color: var(--cinza-texto);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #0a0a0a, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

h1,
h2,
h3 {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
}

p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 400;
}

a {
    color: var(--dourado);
    text-decoration: none;
    transition: opacity .3s ease;
}

a:hover {
    opacity: .8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-gold {
    color: var(--dourado);
}

.text-cursive {
    font-family: var(--font-cursiva);
    font-weight: 400;
    font-size: 1.5em;
    color: var(--dourado);
    /* font-size: 1.8rem; */
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* --- BOTÃO HERO --- */
.hero-btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: var(--font-corpo);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--preto);
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #D4AF37, #F0E68C, #D4AF37);
    background-size: 200% 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    animation: hero-pulse 2.5s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.4);
    background-position: right center;
    animation-play-state: paused;
}

@keyframes hero-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    }
}

/* GLASS */
.glass-card {
    background: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .8;
    transition: opacity .3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

/* PREP (animate initial state) */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 20px;
    width: 3px;
    height: 40px;
    background-color: var(--dourado);
    z-index: 1000;
    transform-origin: top;
    transform: translateY(-50%) scaleY(0);
    display: none;
}

@media (min-width:1024px) {
    .scroll-indicator {
        display: block;
    }
}

/* FLOATING LOGO */
/* FLOATING LOGO - SEMPRE NO MEIO */
.floating-logo {
    position: fixed;
    top: 18px;
    left: 50%;
    /* Isso garante o centro exato */
    transform: translateX(-50%);
    z-index: 1200;
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.floating-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.floating-logo.scrolled {
    opacity: 1;
    /* Importante manter o translateX(-50%) aqui também para não sair do meio ao rolar */
    transform: translateX(-50%) scale(0.98);
}

@media (min-width:768px) {
    /* Removi o código que jogava ela para a esquerda. 
       Agora ela obedece o 'left: 50%' original. */

    .floating-logo img {
        height: 48px;
        /* Apenas aumenta um pouco o tamanho no desktop */
    }
}

/* CTA FLUTUANTE */
.cta-float-new {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: var(--dourado);
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 1100;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: cta-bob 2.5s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-float-new:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    animation-play-state: paused;
}

.cta-float-new i {
    font-size: 1.6rem;
    color: var(--preto);
    transform: rotate(30deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-float-new:hover i {
    transform: rotate(30deg) translateX(8px);
}

@keyframes cta-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- HERO SECTION OTIMIZADA PARA MOBILE --- */

.hero {
    position: relative;
    height: 100dvh; /* Altura dinâmica para mobile */
    min-height: 600px; /* Reduzi para garantir que caiba em telas menores */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px; /* Padding lateral menor no mobile */
    background-image: url('home_imagem.jpg');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Gradiente ajustado para leitura perfeita no mobile */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 85%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Gap otimizado */
    padding-top: 20px; 
}

.hero-title {
    /* Mantendo a fonte chique nos títulos */
    font-family: var(--font-titulos, 'Playfair Display', serif);
    /* Clamp ajustado para não ficar gigante no mobile */
    font-size: clamp(2rem, 6vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero-title span.text-gold {
    display: block;
    margin-top: 5px;
    font-size: 1.1em;
}

.glow-text {
    color: #D4AF37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-sub {
    /* Fonte antiga (Josefin) para leitura fácil */
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    line-height: 1.4;
    max-width: 550px;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-weight: 300;
    padding: 0 10px; /* Margem de segurança para o texto não colar na borda */
}

/* --- CRONÔMETRO (DESIGN COMPACTO) --- */

.countdown-container {
    margin: 15px 0 25px 0;
    width: 100%;
}

.timer-label {
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-grid {
    display: flex;
    justify-content: center;
    gap: 10px; /* Gap menor para caber os 4 no mobile */
    flex-wrap: nowrap; /* Tenta não quebrar linha */
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px; /* Largura fixa ideal para mobile */
    height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.timer-number {
    /* AQUI: Usando a fonte antiga (Josefin) para os números ficarem limpos */
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-text {
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 4px;
}

/* --- BOTÃO E CTA (AJUSTE FINO) --- */

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%; /* Garante centralização */
}

.hero-btn {
    /* Fonte antiga para o botão (Legibilidade total) */
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    
    /* Tamanho reduzido como pediu */
    padding: 14px 30px; 
    font-size: 1rem; /* Reduzi de 1.2rem para 1rem */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    
    /* Cores (Mantendo seu estilo dourado) */
    background: linear-gradient(45deg, #D4AF37, #F2D06B, #D4AF37);
    background-size: 200% auto;
    color: #000;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-decoration: none; /* Caso seja um link <a> */
    text-align: center;
}

.hero-btn:hover {
    background-position: right center;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.secure-warn {
    font-family: var(--font-principal, 'Josefin Sans', sans-serif);
    font-size: 0.75rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.secure-warn i {
    color: #D4AF37;
}

/* --- MEDIA QUERIES ESPECÍFICAS (CELULARES PEQUENOS) --- */

@media (max-width: 480px) {
    .hero {
        /* Garante que o fundo foque no lugar certo no celular */
        background-position: center top; 
        padding-bottom: 30px; /* Espaço extra no fim */
    }

    .hero-title {
        font-size: 2.2rem; /* Título controlado */
    }
    
    .hero-sub {
        font-size: 0.95rem;
    }

    /* Ajuste agressivo no cronômetro para telas < 380px (iPhone SE, etc) */
    .timer-grid {
        gap: 8px;
    }
    .timer-box {
        width: 60px;
        height: 70px;
    }
    .timer-number {
        font-size: 1.5rem;
    }

    /* Botão mobile */
    .hero-btn {
        width: 90%; /* Quase largura total, mas com respiro */
        max-width: 320px;
        padding: 15px 0; /* Padding vertical confortável */
        font-size: 0.9rem; /* Texto compacto */
    }
}

/* --- SEÇÃO SOCIAL PROOF (ESTILO TIMELINE CONECTADA) --- */

.social-proof {
    padding: 100px 0;
    /* Mais espaço vertical */
    position: relative;
    overflow: hidden;
}

/* Container agora usa Flex para controlar o espaço entre os itens */
.proof-container {
    display: flex;
    justify-content: space-between;
    /* Espalha os cards */
    align-items: flex-start;
    position: relative;
    gap: 40px;
    /* ESPAÇO PARA VER A LINHA */
}

/* --- A LINHA MÁGICA (DESKTOP) --- */
/* Ela fica absoluta dentro do container, alinhada ao centro dos ícones */
.features-wrapper::before {
    content: '';
    position: absolute;
    top: 60px;
    /* METADE DA ALTURA DO ÍCONE (120px / 2) */
    left: 60px;
    /* Começa no centro do primeiro ícone */
    right: 60px;
    /* Termina no centro do último ícone */
    height: 4px;

    /* Gradiente animado */
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.2) 0%,
            var(--dourado) 50%,
            rgba(212, 175, 55, 0.2) 100%);
    background-size: 200% 100%;

    z-index: 0;
    /* Fica atrás dos ícones */
    border-radius: 4px;
    animation: flowLine 3s linear infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@keyframes flowLine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* --- OS CARDS --- */
.proof-item {
    flex: 1;
    /* Todos têm o mesmo tamanho */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;

    /* Removi o fundo do card inteiro para focar no ícone e texto soltos */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    transition: transform 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-10px);
}

/* --- ÍCONES (O TRUQUE ESTÁ AQUI) --- */
.proof-icon-bg {
    width: 120px;
    /* Ícone Grande */
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Fundo SÓLIDO (cor do fundo do site) para cobrir a linha que passa atrás */
    background-color: #1a1a1a;
    /* Mesma cor que usei no background do site ou da seção */
    border: 2px solid var(--dourado);

    margin-bottom: 30px;
    /* Afasta do texto */
    position: relative;
    z-index: 2;
    /* Fica NA FRENTE da linha */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    /* Sombra para destacar do fundo */
    transition: all 0.3s ease;
}

.proof-item:hover .proof-icon-bg {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
    background-color: #000;
}

.proof-icon-bg i {
    font-size: 2.8rem;
    color: var(--dourado);
}

/* --- CAIXA DE TEXTO (GLASS) --- */
/* Agora o vidro fica só no texto, embaixo do ícone */
.proof-text {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
    width: 100%;
    min-height: 140px;
    /* Altura mínima para alinhar */

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.proof-item:hover .proof-text {
    border-color: var(--dourado);
    background: rgba(212, 175, 55, 0.05);
}

.proof-text strong {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-text span {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
/* No celular, viramos tudo para vertical (Timeline) */

@media (max-width: 991px) {
    .proof-container {
        flex-direction: column;
        gap: 0;
        /* Reset do gap horizontal */
        padding-left: 30px;
        /* Espaço para a linha na esquerda */
    }

    /* Linha Vertical */
    .features-wrapper::before {
        width: 4px;
        height: calc(100% - 120px);
        top: 60px;
        left: 30px;
        right: auto;
        background: linear-gradient(180deg,
                rgba(212, 175, 55, 0.2) 0%,
                var(--dourado) 50%,
                rgba(212, 175, 55, 0.2) 100%);
        background-size: 100% 200%;
        animation: flowLineVertical 3s linear infinite;
    }

    @keyframes flowLineVertical {
        0% {
            background-position: 0 100%;
        }

        100% {
            background-position: 0 -100%;
        }
    }

    .proof-item {
        flex-direction: row;
        text-align: left;
        margin-bottom: 40px;
        align-items: center;
    }

    .proof-icon-bg {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .features-wrapper::before {
        left: 70px;
        top: 40px;
        height: calc(100% - 80px);
    }

    .proof-item:last-child {
        margin-bottom: 0;
    }

    .proof-text {
        min-height: auto;
        padding: 20px;
        width: auto;
        flex: 1;
    }
}

/* PAIN & DESIRE */
.pain-desire {
    position: relative;
    background: var(--cinza-escuro);
}

.pain-desire-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    max-width: 900px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--dourado);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    display: none;
}

.pain-column,
.desire-column {
    padding: 25px;
    border-radius: 8px;
    background: var(--preto);
    border: 1px solid #2a2a2a;
}

.pain-column h2 {
    color: #f0a0a0;
}

.desire-column h2 {
    color: #a0f0a0;
}

@media (min-width:768px) {
    .pain-desire-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .timeline-line {
        display: block;
    }

    .pain-column {
        text-align: right;
    }

    .desire-column {
        text-align: left;
    }
}

/* INSTRUCTOR */
.instructor {
    background-color: var(--preto);
}

.instructor-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.instructor-image {
    overflow: hidden;
    border-radius: 8px;
}

.instructor-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.instructor-text h2 {
    margin: 10px 0 20px 0;
}

@media (min-width:768px) {
    .instructor-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}

/* MODULES */
.modules {
    position: relative;
    overflow: hidden;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    perspective: 1500px;
}

.module-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.module-card-content {
    padding: 30px;
    transform: translateZ(20px);
}

.module-card span {
    font-weight: 700;
    color: var(--dourado);
    text-transform: uppercase;
    font-size: .9rem;
}

.module-card h3 {
    margin: 10px 0;
}

.module-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(7deg) translateZ(25px) scale(1.03);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
    border: 1px solid var(--dourado);
}

@media (min-width:768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FOR-WHOM */
.for-whom {
    background-color: var(--cinza-escuro);
}

.checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.checklist li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.checklist li i {
    color: var(--dourado);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* --- SEÇÃO ORBITAL DE BÔNUS --- */

.bonus-orbit-section {
    padding: 80px 0 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    position: relative;
}

.orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 700px;
    /* Altura fixa para o círculo funcionar no desktop */
    margin: 40px auto 0 auto;
}

/* --- SVG DE FUNDO (LINHAS) --- */
.orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pulsing-ring {
    transform-origin: center;
    animation: pulseScale 4s infinite ease-in-out;
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* --- O NÚCLEO CENTRAL (A "RODINHA" ANIMADA) --- */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

/* Anel Giratório */
.core-spinner {
    position: absolute;
    inset: -10px;
    /* Fica por fora */
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dourado);
    border-right-color: rgba(212, 175, 55, 0.3);
    animation: spinCore 4s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Segundo anel girando ao contrário */
.core-spinner::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #fff;
    animation: spinCore 7s linear infinite reverse;
    opacity: 0.5;
}

@keyframes spinCore {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.core-content {
    text-align: center;
    z-index: 2;
}

.core-title {
    display: block;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 2px;
}

.core-subtitle {
    display: block;
    font-family: var(--font-titulo);
    font-size: 1.4rem;
    color: var(--dourado);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* --- OS ITENS (SATÉLITES) --- */
.orbit-item {
    position: absolute;
    width: 260px;
    padding: 25px;
    background: rgba(20, 20, 20, 0.85);
    /* Mais escuro para ler melhor */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-item:hover {
    transform: scale(1.05) !important;
    /* O !important sobrescreve a posição fixa no hover */
    border-color: var(--dourado);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    z-index: 15;
}

.item-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--dourado);
    opacity: 0.5;
    margin-bottom: -10px;
    font-family: var(--font-titulo);
}

.item-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.item-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* --- POSICIONAMENTO NO DESKTOP (A RODA) --- */
/* Cálculos manuais para formar o pentágono ao redor do centro */

/* Item 1: Topo Centro */
.item-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Item 2: Direita Superior */
.item-2 {
    top: 25%;
    right: 5%;
    text-align: left;
}

/* Item 3: Direita Inferior */
.item-3 {
    bottom: 15%;
    right: 10%;
    text-align: left;
}

/* Item 4: Esquerda Inferior */
.item-4 {
    bottom: 15%;
    left: 10%;
    text-align: right;
}

/* Item 5: Esquerda Superior */
.item-5 {
    top: 25%;
    left: 5%;
    text-align: right;
}

/* Pequeno ajuste para o número ficar do lado certo */
.item-4 .item-number,
.item-5 .item-number {
    display: block;
}


/* --- RESPONSIVIDADE (TRANSFORMAÇÃO PARA MOBILE) --- */
@media (max-width: 991px) {
    .bonus-orbit-section {
        height: auto;
        padding-bottom: 60px;
    }

    .orbit-wrapper {
        height: auto;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .orbit-lines {
        display: none;
    }

    /* Esconde as linhas no mobile */

    /* O Centro vira um cabeçalho normal no mobile */
    .orbit-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .center-core {
        width: 160px;
        height: 160px;
        margin: 0 auto;
        /* Centraliza */
    }

    /* Os Itens viram uma lista vertical */
    .orbit-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        text-align: left !important;
        /* Força alinhamento a esquerda */
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .item-number {
        font-size: 2rem;
        margin-bottom: 0;
        min-width: 50px;
    }

    .orbit-item:hover {
        transform: translateY(-5px) !important;
    }
}

/* TESTIMONIALS */
.testimonials {
    background-color: transparent;
    padding: 20px 0;

}

.testimonials .section-title {
    margin-bottom: 30px;
}

.testimonial-slider {
    width: 100%;
    padding: 10px 10px 40px 10px;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    width: 100%;
    height: auto;
    padding: 15px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-card:hover {
    border-color: var(--dourado);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--branco);
    font-size: 0.85rem;
    line-height: 1.4;
}

.testimonial-card strong {
    color: var(--dourado);
    font-family: var(--font-titulo);
    font-size: 1rem;
    margin-top: 5px;
}

.swiper-pagination-bullet {
    background-color: var(--cinza-texto);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--dourado);
    opacity: 1;
}


/* CTA FINAL */
.cta-final {
    background: linear-gradient(180deg, var(--preto) 0%, var(--cinza-escuro) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--dourado-transparente-forte), transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseSpotlight 5s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulseSpotlight {
    0% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(.9);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(.9);
    }
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FORMULÁRIO SIMPLIFICADO */
.cta-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* Centraliza o bloco do formulário */
    text-align: center;
    /* Centraliza o botão caso ele seja inline-block */
}

.cta-form input {
    display: block;
    width: 100%;
    /* Força ocupar a largura total do container */
    margin-bottom: 15px;
    /* Espaço entre inputs */
    padding: 15px;
    font-family: var(--font-corpo);
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #f4f4f4;
    color: var(--preto);
    box-sizing: border-box;
    /* Impede que padding aumente a largura total */
}

.cta-button {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    font-family: var(--font-corpo);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    width: 100%;
    /* Botão largura total também, opcional */
    margin-top: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.cta-form small {
    display: block;
    margin-top: 10px;
    font-size: .9rem;
    opacity: .7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* FAQ */
.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--cinza-escuro);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--cinza-escuro);
}

.faq-question span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--branco);
    font-family: var(--font-titulo);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--dourado) !important;
}

.faq-icon i {
    transition: transform .3s ease-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out, padding .4s ease-out;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* RODAPÉ */
.footer {
    background-color: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-footer {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--dourado);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--cinza-texto);
    transition: color 0.3s ease;
}

.social-item i {
    font-size: 1.2rem;
    color: var(--dourado);
}

.social-item:hover {
    color: var(--dourado);
}

.footer p {
    font-size: .9rem;
    margin: 0;
    color: var(--cinza-texto);
}


/* --- ESTILOS DO MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    /* Máximo de 90% da altura da tela */
    overflow-y: auto;
    /* Permite rolar se o conteúdo for grande */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
}

/* --- ESTILOS DO CONTEÚDO INTERNO (BASEADO NO SEU HTML) --- */
.email-style-content {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.email-container {
    background-color: #121212;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    overflow: hidden;
}

.email-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #333;
}

.email-header img {
    max-width: 180px;
    margin: 0 auto;
}

.email-body {
    padding: 30px 25px;
    text-align: center;
}

.email-body h1 {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Força fonte simples no modal */
}

.email-body .subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.email-body p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Bonus Section dentro do Modal */
.bonus-section {
    background-color: #161616;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.bonus-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.bonus-icon-wrapper {
    min-width: 30px;
    height: 30px;
    background: #2a2a2a;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 15px;
    color: #D4AF37;
}

.bonus-text strong {
    color: #F4CF57;
    display: block;
    font-size: 0.95rem;
}

.bonus-text span {
    font-size: 0.85rem;
    color: #bbb;
}

/* CTA Button do Modal */
.cta-section {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.pulse-gold-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFC107 0%, #FFFF00 45%, #FFD700 55%, #FFC107 100%);
    color: #000 !important;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: pulseGold 2s infinite;
    width: 100%;
    max-width: 300px;
}

@keyframes pulseGold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }
}

.email-footer {
    background: #080808;
    padding: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}

.modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;

    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease-out;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-wrapper::-webkit-scrollbar {
    display: none;
}


/* --- SEÇÃO FINAL DE CADASTRO --- */

.cta-split-section {
    position: relative;
    padding: 80px 0;
    background-image: url('fundo-luxo.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.split-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.split-image {
    flex: 1;
    max-width: 600px;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.img-destaque {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-image:hover .img-destaque {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
    max-width: 500px;
}

@media (max-width: 991px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-image {
        width: 100%;
        height: 350px;
        max-width: 100%;
    }

    .split-content {
        width: 100%;
        text-align: center;
    }

    .split-content h2 {
        text-align: center !important;
    }

    .cta-form {
        margin: 0 auto !important;
    }
}