/* ============================================
   MINESPRO - ESTILO DARK DOPAMINA
   ============================================ */

:root {
    /* DARK BASE */
    --black: #05070d;
    --dark-900: #0a0d18;
    --dark-800: #11162a;
    --dark-700: #1a2040;
    --dark-600: #242b55;
    
    /* GOLD / DINHEIRO */
    --gold: #ffcb05;
    --gold-bright: #ffe24d;
    --gold-deep: #d99a00;
    --gold-neon: #ffd700;
    
    /* VERDE DINHEIRO */
    --green: #00ff88;
    --green-bright: #3fffa5;
    --green-deep: #00b862;
    --green-dark: #008a4a;
    
    /* VERMELHO URGÊNCIA */
    --red: #ff2e4e;
    --red-bright: #ff4e6a;
    --red-deep: #cc001f;
    
    /* ROXO ELÉTRICO (accent) */
    --purple: #7c3aed;
    --purple-bright: #a855f7;
    
    /* AZUL ELÉTRICO (accent) */
    --blue-neon: #00d4ff;
    
    /* TEXTO */
    --white: #ffffff;
    --text-soft: #e4e6ed;
    --text-mute: #8892b0;
    --text-dim: #4a5373;
    
    /* SOMBRAS NEON */
    --shadow-gold: 0 0 40px rgba(255, 203, 5, 0.4), 0 8px 32px rgba(255, 203, 5, 0.25);
    --shadow-green: 0 0 40px rgba(0, 255, 136, 0.4), 0 8px 32px rgba(0, 255, 136, 0.2);
    --shadow-red: 0 0 30px rgba(255, 46, 78, 0.5);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* RADIUS */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html, body {
    background: var(--black) !important;
    background-color: var(--black) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Força fundo escuro em todas as seções principais */
section, header, footer, nav, main, div {
    color: var(--text-soft);
}

.profit-bar,
.benefits-bar,
.section,
.how-it-works,
.bonus-section,
.offer-section,
.guarantee-section,
.faq-section,
.final-cta,
.footer {
    background-color: var(--dark-900);
}

.section-dark,
.guarantee-section {
    background-color: var(--black);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Seleção de texto */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 10px;
}

/* ============================================
   BARRA SUPERIOR DE URGÊNCIA
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
    color: var(--white);
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(255, 46, 78, 0.4);
    animation: bg-shift 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes bg-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.top-bar strong {
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(255, 226, 77, 0.8);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px var(--gold-bright);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 226, 77, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(255, 226, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 226, 77, 0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.2), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.12), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 203, 5, 0.1), transparent 60%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-900) 100%);
    color: var(--white);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 203, 5, 0.06) 1px, transparent 0);
    background-size: 48px 48px;
    pointer-events: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 203, 5, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(255, 203, 5, 0.7));
    transform: scale(1.05);
}

.logo-footer {
    height: 70px;
    margin: 0 auto;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 15px rgba(255, 203, 5, 0.7));
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

.logo-text {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-accent {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 203, 5, 0.7);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--black);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 60px rgba(255, 203, 5, 0.8);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 203, 5, 0.1);
    border: 1px solid rgba(255, 203, 5, 0.4);
    color: var(--gold-bright);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 203, 5, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6.5vw, 78px);
    line-height: 1.02;
    letter-spacing: -1px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--white);
}

.highlight-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 203, 5, 0.4));
    position: relative;
}

.green {
    color: var(--green-bright);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0.9;
}

.hero-subtitle strong {
    font-weight: 800;
}

.hero-cta-group {
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--black);
    padding: 20px 36px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.6);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--dark-900);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg, #ff6b6b, #feca57); }
.avatar.a2 { background: linear-gradient(135deg, #48dbfb, #0abde3); }
.avatar.a3 { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.avatar.a4 { background: linear-gradient(135deg, var(--purple), var(--purple-bright)); }
.avatar.a5 { background: var(--gold); color: var(--black); }

.proof-text {
    font-size: 13px;
    line-height: 1.4;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(255, 203, 5, 0.5);
}

.proof-text span {
    color: var(--text-soft);
}

.proof-text strong {
    color: var(--gold-bright);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
    max-width: 420px;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 0 60px rgba(255, 203, 5, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.6);
}

.float-badge {
    position: absolute;
    background: rgba(10, 13, 24, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-dark);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-badge 4s ease-in-out infinite;
}

.float-badge strong {
    display: block;
    color: var(--green-bright);
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.float-badge small {
    color: var(--text-mute);
    font-size: 12px;
    font-weight: 500;
}

.float-arrow {
    color: var(--green-bright);
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.7);
}

.check-green {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.float-badge-1 {
    top: 12%;
    left: -10%;
    animation-delay: 0s;
    border-color: rgba(0, 255, 136, 0.3);
}

.float-badge-2 {
    bottom: 18%;
    right: -10%;
    animation-delay: 2s;
    border-color: rgba(0, 255, 136, 0.3);
}

.float-badge-2 strong {
    color: var(--white);
    font-size: 14px;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* PARTÍCULAS DE DINHEIRO */
.money-particle {
    position: absolute;
    font-size: 32px;
    filter: drop-shadow(0 0 15px rgba(255, 203, 5, 0.5));
    animation: particle-float 5s ease-in-out infinite;
}

.money-particle.p1 {
    top: 5%;
    right: 15%;
    animation-delay: 0s;
}

.money-particle.p2 {
    bottom: 8%;
    left: 10%;
    animation-delay: 1.5s;
    font-size: 28px;
}

.money-particle.p3 {
    top: 45%;
    right: -8%;
    animation-delay: 3s;
    font-size: 36px;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.8; }
    50% { transform: translateY(-25px) rotate(10deg); opacity: 1; }
}

/* GLOWS DECORATIVOS */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.4);
    top: 10%;
    left: -150px;
    animation: glow-move 10s ease-in-out infinite;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: rgba(0, 255, 136, 0.25);
    bottom: -200px;
    right: -200px;
    animation: glow-move 12s ease-in-out infinite reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(255, 203, 5, 0.2);
    top: 50%;
    left: 50%;
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* ============================================
   TICKER DE LUCRO
   ============================================ */
.profit-bar {
    background: var(--dark-900) !important;
    background-color: var(--dark-900) !important;
    background-image: linear-gradient(90deg, var(--dark-900), var(--dark-800), var(--dark-900));
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.profit-bar::before,
.profit-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.profit-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-900), transparent);
}

.profit-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark-900), transparent);
}

.profit-ticker {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    padding-left: 48px;
}

.ticker-content span {
    color: var(--green-bright);
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   BARRA DE BENEFÍCIOS
   ============================================ */
.benefits-bar {
    background: var(--dark-900) !important;
    background-color: var(--dark-900) !important;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 203, 5, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(255, 203, 5, 0.3);
    background: rgba(255, 203, 5, 0.04);
}

.benefit-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-700), var(--dark-800));
    border: 1px solid rgba(255, 203, 5, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 203, 5, 0.1);
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: var(--white) !important;
    margin-bottom: 3px;
    font-weight: 800;
}

.benefit-item span {
    font-size: 13px;
    color: var(--text-soft) !important;
    opacity: 0.75;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section {
    padding: 100px 0;
    background: var(--dark-900) !important;
    background-color: var(--dark-900) !important;
    position: relative;
    color: var(--text-soft);
}

.section-dark {
    background: var(--black) !important;
    background-color: var(--black) !important;
}

.how-it-works {
    background: var(--dark-800) !important;
    background-color: var(--dark-800) !important;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 203, 5, 0.04) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 8px 20px;
    background: rgba(255, 203, 5, 0.1);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(255, 203, 5, 0.15);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5.5vw, 60px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--white);
}

.section-sub {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ============================================
   CARDS DE BENEFÍCIOS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
    border: 1px solid rgba(255, 203, 5, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 203, 5, 0.5);
    background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
    box-shadow: 0 20px 60px rgba(255, 203, 5, 0.15), 0 0 40px rgba(255, 203, 5, 0.15);
}

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

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    position: absolute;
    top: 12px;
    right: 24px;
    line-height: 1;
    pointer-events: none;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white) !important;
    position: relative;
    z-index: 2;
    max-width: 80%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: var(--text-soft) !important;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.step.reverse {
    direction: rtl;
}

.step.reverse > * {
    direction: ltr;
}

.step-image {
    position: relative;
}

.step-image img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 0 60px rgba(255, 203, 5, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    border: 4px solid var(--dark-800);
    z-index: 3;
}

.step.reverse .step-number {
    left: auto;
    right: -24px;
}

.step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.step-content p {
    font-size: 17px;
    color: var(--text-mute);
    line-height: 1.7;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 12px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.1);
}

.testimonial-card img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.testimonial-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--black);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 255, 136, 0.3);
    letter-spacing: 0.3px;
}

/* Números */
.numbers-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px;
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 60px rgba(255, 203, 5, 0.1);
    position: relative;
    overflow: hidden;
}

.numbers-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 203, 5, 0.08), transparent 50%);
    animation: glow-pulse 6s ease-in-out infinite;
}

.number-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.number-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(255, 203, 5, 0.4));
}

.number-label {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   BÔNUS
   ============================================ */
.bonus-section {
    background: var(--dark-900);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 203, 5, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 203, 5, 0.15);
}

.bonus-featured {
    background: linear-gradient(135deg, var(--dark-700), var(--purple));
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.bonus-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 203, 5, 0.2), transparent 50%);
    pointer-events: none;
    animation: glow-pulse 5s ease-in-out infinite;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--black);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 203, 5, 0.3);
}

.bonus-icon {
    font-size: 52px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 203, 5, 0.3));
}

.bonus-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.bonus-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    color: var(--text-mute);
}

.bonus-featured p {
    color: var(--text-soft);
}

.bonus-featured p strong {
    color: var(--gold-bright);
}

.bonus-value {
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    background: rgba(255, 203, 5, 0.1);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: var(--radius-sm);
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--text-soft);
}

.bonus-value s {
    color: var(--text-dim);
}

.bonus-value strong {
    color: var(--gold-bright);
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 203, 5, 0.5);
}

/* ============================================
   OFERTA / CHECKOUT
   ============================================ */
.offer-section {
    background: 
        radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08), transparent 60%),
        linear-gradient(180deg, var(--dark-900), var(--black));
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 203, 5, 0.06) 1px, transparent 0);
    background-size: 30px 30px;
}

.offer-card {
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--dark-700), var(--dark-800));
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 203, 5, 0.15);
    position: relative;
    z-index: 5;
    border-top: 6px solid var(--gold);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 203, 5, 0.15), transparent);
    pointer-events: none;
}

.offer-top {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-red);
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-red); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 46, 78, 0.8); }
}

.offer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--white);
}

.offer-subtitle {
    color: var(--text-mute);
    font-size: 16px;
}

.offer-includes {
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.include-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.include-item:last-child {
    border-bottom: none;
}

.check {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--black);
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.include-item strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 800;
}

.include-item span {
    color: var(--text-mute);
    font-size: 14px;
}

.price-box {
    background: linear-gradient(135deg, rgba(255, 203, 5, 0.08), rgba(255, 226, 77, 0.12));
    border: 2px dashed var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(255, 203, 5, 0.15);
}

.price-old {
    color: var(--text-mute);
    font-size: 16px;
    margin-bottom: 4px;
}

.price-old s {
    color: var(--red-bright);
}

.price-label {
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.price-new {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--white);
    margin-bottom: 10px;
}

.price-new .currency {
    font-size: 30px;
    font-weight: 800;
    padding-top: 16px;
    color: var(--gold-bright);
}

.price-new .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 203, 5, 0.4));
}

.price-new .cents {
    font-size: 30px;
    font-weight: 800;
    padding-top: 16px;
    color: var(--gold-bright);
}

.price-terms {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
}

.btn-buy {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--black);
    padding: 22px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: var(--shadow-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: var(--shadow-green); }
    50% { box-shadow: 0 0 80px rgba(0, 255, 136, 0.7); }
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 0 100px rgba(0, 255, 136, 0.8);
}

.btn-buy-top {
    display: block;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.btn-buy-bottom {
    display: block;
    font-size: 13px;
    opacity: 0.85;
    font-weight: 700;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 600;
}

/* ============================================
   GARANTIA
   ============================================ */
.guarantee-section {
    background: var(--black);
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    border: 1px solid rgba(255, 203, 5, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.guarantee-seal {
    width: 180px;
    height: 180px;
    background: conic-gradient(from 0deg, var(--gold), var(--gold-deep), var(--gold-bright), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate-slow 20s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 203, 5, 0.4));
}

@keyframes rotate-slow {
    to { transform: rotate(360deg); }
}

.seal-inner {
    width: 85%;
    height: 85%;
    background: var(--dark-900);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.6);
}

.seal-days {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.seal-text {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--white);
    font-size: 14px;
}

.guarantee-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}

.guarantee-content p {
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.guarantee-content p strong {
    color: var(--white);
}

.guarantee-signature {
    font-style: italic;
    color: var(--gold-bright) !important;
    font-weight: 700;
    font-size: 18px !important;
    text-shadow: 0 0 10px rgba(255, 203, 5, 0.3);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--dark-900);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-800);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: linear-gradient(135deg, rgba(255, 203, 5, 0.05), var(--dark-700));
    border-color: rgba(255, 203, 5, 0.4);
    box-shadow: 0 0 30px rgba(255, 203, 5, 0.1);
}

.faq-item summary {
    padding: 22px 26px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    list-style: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 32px;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 16px;
    line-height: 0.7;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 26px 22px;
    color: var(--text-mute);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta {
    background: 
        radial-gradient(ellipse at center, rgba(255, 203, 5, 0.15), transparent 70%),
        linear-gradient(180deg, var(--dark-900), var(--black));
    color: var(--white);
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 203, 5, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 19px;
    color: var(--text-soft);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 24px 44px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--text-mute);
    padding: 70px 0 28px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top .logo {
    justify-content: center;
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-dim);
}

.footer-disclaimer p {
    margin-bottom: 8px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--text-mute);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 30px;
    }
    
    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        display: flex;
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .numbers-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .step.reverse {
        direction: ltr;
    }

    .step.reverse .step-number {
        right: auto;
        left: -24px;
    }
    
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
    }
    
    .guarantee-seal {
        margin: 0 auto;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .offer-card {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        padding: 18px 16px;
    }
    
    .logo {
        font-size: 26px;
    }

    .logo-img {
        height: 48px;
    }
    
    .nav-cta {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .price-new .value {
        font-size: 88px;
    }
    
    .offer-title {
        font-size: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .float-badge-1, .float-badge-2 {
        display: none;
    }

    .money-particle {
        display: none;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 38px;
    }

    .numbers-strip {
        grid-template-columns: 1fr 1fr;
    }

    .number-value {
        font-size: 48px;
    }
}

/* ============================================
   ANIMAÇÕES DE SCROLL
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
