/* ============================================
   MINESPRO - DARK DOPAMINA (v5 - LIMPO)
   ============================================ */

:root {
    --bg: #05070d;
    --bg-900: #0a0d18;
    --bg-800: #11162a;
    --bg-700: #1a2040;
    --bg-600: #242b55;
    
    --gold: #ffcb05;
    --gold-bright: #ffe24d;
    --gold-deep: #d99a00;
    
    --green: #00ff88;
    --green-bright: #3fffa5;
    --green-deep: #00b862;
    
    --red: #ff2e4e;
    --red-deep: #cc001f;
    
    --purple: #7c3aed;
    
    --white: #ffffff;
    --text: #e4e6ed;
    --text-mute: #8892b0;
    --text-dim: #4a5373;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    background: #05070d;
    scroll-behavior: smooth;
}

body {
    background: #05070d;
    color: #e4e6ed;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

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

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

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

::selection {
    background: #ffcb05;
    color: #05070d;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #cc001f;
    background: linear-gradient(90deg, #cc001f, #ff2e4e, #cc001f);
    color: #ffffff;
    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);
}

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

.top-bar strong {
    color: #ffe24d;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ffe24d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@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: #0a0d18;
    background: radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.18), transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.10), transparent 50%),
                linear-gradient(180deg, #05070d 0%, #0a0d18 100%);
    color: #ffffff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.nav {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    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: #ffe24d;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ffcb05;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.highlight-gold {
    background: linear-gradient(135deg, #ffe24d, #ffcb05);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffcb05;
    display: inline-block;
}

.green {
    color: #3fffa5;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #e4e6ed;
    margin-bottom: 32px;
    max-width: 560px;
    opacity: 0.92;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00ff88, #00b862);
    color: #05070d;
    padding: 20px 34px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.35);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 255, 136, 0.5);
}

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

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

.avatars {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #0a0d18;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #ffffff;
}

.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, #00ff88, #00b862); }
.avatar.a4 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.avatar.a5 { background: #ffcb05; color: #05070d; }

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

.stars {
    color: #ffcb05;
    letter-spacing: 2px;
    font-size: 15px;
}

.proof-text span {
    color: #e4e6ed;
}

.proof-text strong {
    color: #ffe24d;
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}

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

.float-badge {
    position: absolute;
    background: rgba(10, 13, 24, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.float-badge strong {
    display: block;
    color: #3fffa5;
    font-size: 18px;
    font-weight: 900;
}

.float-badge small {
    color: #8892b0;
    font-size: 11px;
    font-weight: 500;
}

.float-arrow {
    color: #3fffa5;
    font-size: 20px;
}

.check-green {
    width: 28px;
    height: 28px;
    background: #00ff88;
    color: #05070d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 14px;
}

.float-badge-1 {
    top: 10%;
    left: -10%;
}

.float-badge-2 {
    bottom: 15%;
    right: -8%;
}

.float-badge-2 strong {
    color: #ffffff;
    font-size: 13px;
}

/* ============================================
   TICKER
   ============================================ */
.profit-bar {
    background: #05070d;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

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

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

.ticker-content span {
    color: #3fffa5;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* ============================================
   BENEFITS BAR
   ============================================ */
.benefits-bar {
    background: #0a0d18;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.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.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2040, #11162a);
    border: 1px solid rgba(255, 203, 5, 0.2);
    border-radius: 14px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 800;
}

.benefit-item span {
    font-size: 13px;
    color: #8892b0;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
    padding: 90px 0;
    background: #0a0d18;
    position: relative;
    color: #e4e6ed;
}

.section-dark {
    background: #05070d;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.eyebrow {
    display: inline-block;
    color: #ffe24d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(255, 203, 5, 0.1);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: 100px;
}

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

.section-sub {
    font-size: 17px;
    color: #e4e6ed;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ============================================
   FEATURE CARDS (PARA QUEM É)
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.feature-card {
    background: #11162a;
    background: linear-gradient(135deg, #1a2040, #11162a);
    border: 1px solid rgba(255, 203, 5, 0.18);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 203, 5, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 203, 5, 0.12);
}

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: #ffcb05;
    opacity: 0.5;
    position: absolute;
    top: 10px;
    right: 22px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.feature-card p {
    color: #e4e6ed;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: #11162a;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

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

.step.reverse {
    direction: rtl;
}

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

.step-image {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.step-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffcb05, #d99a00);
    color: #05070d;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 203, 5, 0.4);
    border: 4px solid #11162a;
    z-index: 3;
}

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

.step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #ffffff;
}

.step-content p {
    font-size: 16px;
    color: #e4e6ed;
    line-height: 1.7;
    opacity: 0.85;
}

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

.testimonial-card {
    background: #11162a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.testimonial-card img {
    width: 100%;
    border-radius: 14px;
}

.testimonial-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    background: linear-gradient(135deg, #00ff88, #00b862);
    color: #05070d;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.numbers-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #11162a, #1a2040);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: 24px;
}

.number-item {
    text-align: center;
}

.number-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #ffcb05;
    line-height: 1;
    margin-bottom: 6px;
}

.number-label {
    color: #e4e6ed;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   BONUS
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.bonus-card {
    background: linear-gradient(135deg, #1a2040, #11162a);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.bonus-featured {
    background: linear-gradient(135deg, #1a2040, #3d1a70);
    border-color: #ffcb05;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffcb05, #d99a00);
    color: #05070d;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bonus-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.bonus-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e4e6ed;
    opacity: 0.85;
}

.bonus-featured p strong {
    color: #ffe24d;
    opacity: 1;
}

.bonus-value {
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    background: rgba(255, 203, 5, 0.08);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: 10px;
    text-align: center;
    color: #e4e6ed;
}

.bonus-value s {
    color: #4a5373;
}

.bonus-value strong {
    color: #ffe24d;
    font-size: 16px;
}

/* ============================================
   OFFER
   ============================================ */
.offer-section {
    background: #05070d;
    background: linear-gradient(180deg, #0a0d18, #05070d);
}

.offer-card {
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a2040, #11162a);
    border: 1px solid rgba(255, 203, 5, 0.3);
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border-top: 5px solid #ffcb05;
}

.offer-top {
    text-align: center;
    margin-bottom: 32px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff2e4e, #cc001f);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(255, 46, 78, 0.4);
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #ffffff;
}

.offer-subtitle {
    color: #8892b0;
    font-size: 16px;
}

.offer-includes {
    margin-bottom: 32px;
}

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

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

.check {
    background: linear-gradient(135deg, #00ff88, #00b862);
    color: #05070d;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
}

.include-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 800;
}

.include-item span {
    color: #8892b0;
    font-size: 13px;
}

.price-box {
    background: rgba(255, 203, 5, 0.05);
    border: 2px dashed #ffcb05;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    margin-bottom: 22px;
}

/* ANCORAGEM DE PREÇO */
.price-anchor {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 18px;
}

.anchor-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
}

.anchor-label {
    color: #8892b0;
}

.anchor-value {
    color: #e4e6ed;
    font-weight: 700;
}

.anchor-value s {
    color: #ff4e6a;
}

.anchor-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 203, 5, 0.4), transparent);
    margin: 8px 0;
}

.anchor-final {
    padding-top: 6px;
}

.anchor-final .anchor-label {
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
}

.anchor-value-new {
    font-family: 'Bebas Neue', sans-serif;
    color: #3fffa5;
    font-size: 32px;
    letter-spacing: -0.5px;
}

/* PAYMENT INFO */
.payment-info {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #e4e6ed;
    text-align: center;
}

.payment-info strong {
    color: #3fffa5;
}

/* HOTMART TRUST */
.hotmart-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 46, 78, 0.08), rgba(255, 203, 5, 0.05));
    border: 1px solid rgba(255, 203, 5, 0.25);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.hotmart-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff2e4e, #cc001f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 46, 78, 0.3);
}

.hotmart-logo svg {
    width: 22px;
    height: 22px;
}

.hotmart-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.hotmart-text strong {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.hotmart-text span {
    color: #8892b0;
    font-size: 12px;
}

.price-old {
    color: #8892b0;
    font-size: 15px;
    margin-bottom: 4px;
}

.price-old s {
    color: #ff4e6a;
}

.price-label {
    color: #ffe24d;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.price-new {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: #ffffff;
    margin-bottom: 8px;
}

.price-new .currency {
    font-size: 28px;
    font-weight: 800;
    padding-top: 14px;
    color: #ffe24d;
}

.price-new .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 1;
    letter-spacing: -3px;
    color: #ffcb05;
}

.price-new .cents {
    font-size: 28px;
    font-weight: 800;
    padding-top: 14px;
    color: #ffe24d;
}

.price-terms {
    color: #e4e6ed;
    font-size: 14px;
    font-weight: 600;
}

.btn-buy {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00b862);
    color: #05070d;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.35);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 255, 136, 0.5);
}

.btn-buy-top {
    display: block;
    font-size: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #8892b0;
    font-weight: 600;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-section {
    background: #05070d;
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #11162a, #1a2040);
    border: 1px solid rgba(255, 203, 5, 0.25);
    border-radius: 28px;
    padding: 44px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.guarantee-seal {
    width: 160px;
    height: 160px;
    background: conic-gradient(from 0deg, #ffcb05, #d99a00, #ffe24d, #ffcb05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 203, 5, 0.3);
}

.seal-inner {
    width: 85%;
    height: 85%;
    background: #0a0d18;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seal-days {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #ffcb05;
    line-height: 1;
}

.seal-text {
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 13px;
}

.guarantee-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1.05;
    color: #ffe24d;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.guarantee-big {
    font-size: 19px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
}

.guarantee-big strong {
    color: #3fffa5 !important;
}

.guarantee-content p {
    color: #e4e6ed;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.85;
}

.guarantee-content p strong {
    color: #ffffff;
    opacity: 1;
}

.guarantee-signature {
    font-style: italic;
    color: #ffe24d !important;
    font-weight: 700;
    font-size: 17px !important;
    opacity: 1 !important;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: #0a0d18;
}

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

.faq-item {
    background: #11162a;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #1a2040;
    border-color: rgba(255, 203, 5, 0.4);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: #ffcb05;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 14px;
    line-height: 0.8;
}

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

.faq-item p {
    padding: 0 24px 20px;
    color: #e4e6ed;
    line-height: 1.7;
    font-size: 14px;
    opacity: 0.85;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: #0a0d18;
    background: radial-gradient(ellipse at center, rgba(255, 203, 5, 0.12), transparent 70%),
                linear-gradient(180deg, #0a0d18, #05070d);
    color: #ffffff;
    text-align: center;
    padding: 100px 24px;
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 18px;
    color: #e4e6ed;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.btn-large {
    padding: 22px 40px;
    font-size: 17px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #05070d;
    color: #8892b0;
    padding: 60px 0 24px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-top .logo-img {
    height: 60px;
    margin: 0 auto 10px;
}

.footer-desc {
    color: #4a5373;
    font-size: 14px;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 28px;
    font-size: 12px;
    line-height: 1.7;
    color: #4a5373;
}

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

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

.footer-disclaimer strong {
    color: #8892b0;
}

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

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

.footer-links a {
    color: #4a5373;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcb05;
}

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

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

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

    .hero-proof {
        justify-content: center;
    }

    .hero-image {
        max-width: 320px;
        order: 2;
    }

    .hero-text {
        order: 1;
    }
    
    .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: 28px 20px;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .step.reverse {
        direction: ltr;
    }

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

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

@media (max-width: 600px) {
    .nav {
        padding: 16px;
    }

    .logo-img {
        height: 44px;
    }
    
    .nav-cta {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .number-value {
        font-size: 44px;
    }
    
    .price-new .value {
        font-size: 80px;
    }
    
    .offer-title {
        font-size: 32px;
    }

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

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 32px;
    }

    .step-content h3 {
        font-size: 30px;
    }

    .anchor-line {
        font-size: 14px;
    }

    .anchor-value-new {
        font-size: 28px;
    }

    .hotmart-trust {
        padding: 14px;
    }

    .hotmart-text strong {
        font-size: 13px;
    }

    .hotmart-text span {
        font-size: 11px;
    }

    .guarantee-content h2 {
        font-size: 36px;
    }

    .guarantee-big {
        font-size: 17px !important;
    }
}
