/* ============================================
   RESET & BASE STYLES - TEMA ESCURO 2026
   ============================================ */

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

:root {
    /* CORES ESCURAS - ALTA CONVERSÃO */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary: #8b5cf6;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* TEMA ESCURO */
    --bg-dark: #0a0c0f;
    --bg-card: #111417;
    --bg-card-hover: #1a1e24;
    --bg-section: #0d0f12;
    --bg-gradient: radial-gradient(circle at 20% 30%, #1e293b, #0a0c0f);
    
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-gray: #64748b;
    
    --border: #2d3748;
    --border-light: #3a4a5c;
    
    --shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-accent: 0 0 20px var(--accent-glow);
    
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    overflow-x: hidden;
    position: relative;
}

/* EFEITO DE GRID NO FUNDO */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px var(--primary-glow);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

/* ============================================
   NOTIFICAÇÕES DE VENDAS (removidas, mas mantido estilo por precaução)
   ============================================ */

.sales-notification {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), #059669);
    color: white;
    padding: 15px;
    z-index: 9999;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: top 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sales-notification.show {
    top: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

/* ============================================
   HEADER ESCURO COM GLASS EFFECT
   ============================================ */

.header {
    background: rgba(10, 12, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.logo i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-year {
    color: var(--primary);
    margin-left: 5px;
}

.header-cta {
    display: flex;
    align-items: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, var(--warning), #ea580c);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-badge {
    background: linear-gradient(135deg, var(--accent), #059669);
    box-shadow: 0 0 20px var(--accent-glow);
}

.discount-badge {
    background-color: var(--danger);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: 20px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   BUTTONS COM EFEITO DE GLOW
   ============================================ */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px -5px var(--primary-glow);
    width: 100%;
    max-width: 550px;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -5px var(--primary-glow);
}

.final-cta {
    font-size: 1.3rem;
    padding: 22px 45px;
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% { transform: scale(1); box-shadow: 0 10px 30px -5px var(--primary-glow); }
    50% { transform: scale(1.05); box-shadow: 0 20px 50px -5px var(--primary-glow); }
    100% { transform: scale(1); box-shadow: 0 10px 30px -5px var(--primary-glow); }
}

.ebook-cta {
    background: linear-gradient(135deg, var(--accent), #059669);
    box-shadow: 0 10px 30px -5px var(--accent-glow);
}

.ebook-cta:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 20px 40px -5px var(--accent-glow);
}

.final-button {
    background: linear-gradient(135deg, var(--accent), #059669);
    box-shadow: 0 10px 30px -5px var(--accent-glow);
    font-size: 1.3rem;
    padding: 22px 45px;
}

.final-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 20px 40px -5px var(--accent-glow);
}

.secure-purchase {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.cta-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
}

/* ============================================
   HERO SECTION - TEMA ESCURO
   ============================================ */

.hero {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* EFEITO DE PARTÍCULAS */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulseGlow 8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* CONTADOR DE VENDAS */
.sales-counter {
    display: flex;
    gap: 30px;
    margin: 2rem 0;
    justify-content: flex-start;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.counter-item i {
    font-size: 2.2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px var(--primary-glow);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

.benefits {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.benefit span {
    color: var(--text-secondary);
}

/* EBOOK COVER */
.ebook-cover {
    position: relative;
    perspective: 1000px;
}

.ebook-cover img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.ebook-cover:hover img {
    transform: rotateY(0) rotateX(0);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warning), #ea580c);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* ============================================
   SEÇÃO DE PROVA SOCIAL COM GIF
   ============================================ */

.proof-video-section {
    padding: 60px 0;
    background: var(--bg-section);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.proof-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #059669);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px var(--accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.proof-video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 400px;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.proof-video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.proof-video-card::after {
    content: '📱 PROVA REAL';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gif-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #000;
}

.proof-gif {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.proof-gif:hover {
    transform: scale(1.02);
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.video-stats i {
    color: var(--accent);
}

.video-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 10px;
    font-style: italic;
}

.proof-testimonials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-testimonial-item {
    background: var(--bg-card-hover);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
}

.proof-testimonial-item i {
    color: var(--warning);
    font-size: 1.1rem;
}

.proof-testimonial-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   EBOOKS SHOWCASE - TEMA ESCURO
   ============================================ */

.ebooks-showcase {
    padding: 80px 0;
    background: var(--bg-section);
}

.ebooks-showcase h2 {
    text-align: center;
    margin-bottom: 40px;
}

.ebooks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ebook-card {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.ebook-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.ebook-card.bonus {
    border: 1px solid var(--warning);
    background: linear-gradient(145deg, var(--bg-card), #1a1e24);
}

.ebook-card.bonus:hover {
    border-color: var(--warning);
}

.ebook-cover-container {
    position: relative;
    flex: 0 0 200px;
}

.ebook-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebook-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px var(--primary-glow);
    border-radius: 0 20px 20px 0;
}

.ebook-badge.bonus-badge {
    background: linear-gradient(135deg, var(--warning), #ea580c);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.ebook-info {
    flex: 1;
    padding: 25px;
}

.ebook-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ebook-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.ebook-features {
    list-style: none;
    margin: 20px 0;
}

.ebook-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.ebook-features i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 0.95rem;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.ebook-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.original-price s {
    color: var(--text-gray);
    font-size: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-top: 5px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.current-price.free {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.bonus-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.ebooks-total {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.total-value {
    margin-bottom: 25px;
}

.total-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.total-price s {
    color: var(--text-gray);
    font-size: 1.3rem;
}

.today-price {
    font-size: 2.2rem;
    color: var(--danger);
    margin: 15px 0;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.savings {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ============================================
   SOCIAL PROOF - TEMA ESCURO
   ============================================ */

.social-proof {
    padding: 80px 0;
    background: var(--bg-section);
}

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-top: 5px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   PAIN POINTS - TEMA ESCURO
   ============================================ */

.pain-points {
    padding: 80px 0;
    background: var(--bg-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pain-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.pain-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pain-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.pain-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pain-item p {
    color: var(--text-muted);
}

/* ============================================
   BONUS SECTION - TEMA ESCURO
   ============================================ */

.bonus-section {
    padding: 80px 0;
    background: var(--bg-section);
    position: relative;
}

.bonus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 3rem;
}

.main-offer, .bonus-offer {
    flex: 1;
    min-width: 300px;
}

.offer-card {
    background: linear-gradient(145deg, #111417, #0a0c0f);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-title h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.edition {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.offer-list {
    list-style: none;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.offer-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.offer-list i {
    color: var(--accent);
    margin-right: 12px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.price-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    position: relative;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.old-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.old-price s {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.new-price {
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px var(--primary-glow);
}

.installment {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plus-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 2px dashed var(--accent);
    height: 100%;
}

.bonus-card h4 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.bonus-card h4 i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.8rem;
}

.featured-bonus {
    padding: 25px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bonus-icon {
    font-size: 2.8rem;
    color: var(--warning);
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-content h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.bonus-content p {
    color: var(--text-muted);
}

.bonus-list {
    list-style: none;
    margin-top: 1rem;
}

.bonus-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.bonus-list i {
    color: var(--warning);
    margin-right: 10px;
    font-size: 0.95rem;
}

/* ============================================
   COUNTDOWN (VERSÃO ANTIGA - NÃO USADA, MAS MANTIDA)
   ============================================ */

.countdown {
    text-align: center;
    margin-top: 2rem;
    padding: 25px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.countdown p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.countdown p i {
    color: var(--danger);
    margin-right: 8px;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    background: var(--bg-card);
    padding: 15px;
    border-radius: var(--radius);
    min-width: 85px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.countdown-item small {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: -15px;
}

/* ============================================
   CONTADOR INLINE (NOVO) - USADO NA FINAL CTA
   ============================================ */

.countdown-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(239, 68, 68, 0.1);
    padding: 15px 25px;
    border-radius: 60px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.final-time {
    background: var(--bg-card);
    color: var(--danger);
    font-size: 2rem;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: var(--radius);
    min-width: 60px;
    display: inline-block;
    border: 1px solid var(--border);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    text-align: center;
}

.final-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 5px;
}

.final-separator {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 5px;
}

/* ÚLTIMAS VENDAS (removidas, mas mantido estilo) */
.recent-sales {
    margin-top: 2rem;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.recent-sales h3 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.recent-sales h3 i {
    color: var(--danger);
}

.sales-list {
    max-height: 200px;
    overflow: hidden;
}

.sale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.5s ease;
}

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

.sale-item i {
    font-size: 2rem;
    color: var(--primary);
}

.sale-item strong {
    color: var(--text-primary);
    display: block;
}

.sale-item div {
    color: var(--text-secondary);
}

.sale-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HOW IT WORKS - TEMA ESCURO
   ============================================ */

.how-works {
    padding: 80px 0;
    background: var(--bg-section);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
}

/* ============================================
   GUARANTEE - TEMA ESCURO
   ============================================ */

.guarantee {
    padding: 80px 0;
    background: var(--bg-dark);
}

.guarantee-card {
    background: linear-gradient(145deg, #111417, #0a0c0f);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 5rem;
    color: var(--warning);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
}

.guarantee-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: white;
    color: white;
}

.guarantee-content p {
    color: var(--text-secondary);
}

.guarantee-note {
    font-weight: 700;
    color: var(--accent) !important;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* ============================================
   FAQ - TEMA ESCURO
   ============================================ */

.faq {
    padding: 80px 0;
    background: var(--bg-section);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-card);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    background: var(--bg-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
}

/* ============================================
   FINAL CTA - TEMA ESCURO
   ============================================ */

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #0a0c0f, #000000);
    position: relative;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.final-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    color: white;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.final-cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-countdown {
    margin: 2rem 0;
}

.final-countdown p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#final-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.final-time {
    background: var(--bg-card);
    color: var(--danger);
    font-size: 2.5rem;
    font-weight: 800;
    padding: 15px 25px;
    border-radius: var(--radius);
    min-width: 85px;
    display: inline-block;
    border: 1px solid var(--border);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.final-separator {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 5px;
}

.final-guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
}

.final-guarantee p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.final-guarantee i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}

/* ============================================
   FOOTER - TEMA ESCURO
   ============================================ */

.footer {
    padding: 60px 0;
    background: #050708;
    color: white;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-logo i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   THANK YOU PAGE - TEMA ESCURO
   ============================================ */

.thank-you-page {
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thank-you-container {
    width: 100%;
    max-width: 900px;
}

.thank-you-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.thank-you-card h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* DOWNLOAD ALL SECTION */
.download-all-section {
    text-align: center;
    margin: 30px 0;
}

.download-all-btn {
    background: linear-gradient(135deg, var(--accent), #059669);
    color: white;
    border: none;
    padding: 22px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px -5px var(--accent-glow);
    width: 100%;
    max-width: 550px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-all-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -5px var(--accent-glow);
}

.download-all-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-all-note i {
    color: var(--warning);
}

/* ACCESS BOX */
.access-box {
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.access-box h2 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    -webkit-text-fill-color: white;
}

.access-box h2 i {
    color: var(--primary);
}

/* EBOOKS PREVIEW */
.ebooks-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.ebook-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.ebook-preview:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.ebook-preview.bonus {
    border: 1px solid var(--warning);
    background: linear-gradient(145deg, var(--bg-card), #1a1e24);
}

.preview-cover {
    position: relative;
    margin-bottom: 20px;
}

.preview-cover img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.preview-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ebook-preview.bonus .preview-badge {
    background: linear-gradient(135deg, var(--warning), #ea580c);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.preview-info h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.preview-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.file-info i {
    color: var(--danger);
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px -3px var(--primary-glow);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -3px var(--primary-glow);
}

/* DOWNLOAD INSTRUCTIONS */
.download-instructions {
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
    text-align: left;
}

.download-instructions h3 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.download-instructions h3 i {
    color: var(--primary);
}

.download-instructions ol {
    margin-left: 20px;
    color: var(--text-secondary);
}

.download-instructions li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* NEXT STEPS */
.next-steps {
    text-align: left;
    margin-bottom: 2rem;
    padding: 25px;
    background: var(--bg-section);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.next-steps h3 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.next-steps h3 i {
    color: var(--primary);
}

.next-steps ol {
    margin-left: 20px;
    color: var(--text-secondary);
}

.next-steps li {
    margin-bottom: 0.8rem;
    padding-left: 10px;
}

/* SUPPORT BOX */
.support-box {
    background: rgba(245, 158, 11, 0.05);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.support-box h3 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.support-box h3 i {
    color: var(--warning);
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    justify-content: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.common-issues {
    background: rgba(239, 68, 68, 0.05);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--danger);
    text-align: left;
}

.common-issues h4 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.common-issues h4 i {
    color: var(--danger);
}

.common-issues ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.common-issues li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* THANK YOU FOOTER */
.thank-you-footer {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.signature {
    font-style: italic;
    color: var(--text-muted);
    margin: 1rem 0;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.back-home {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: var(--transition);
}

.back-home:hover {
    background: var(--primary);
    color: white;
}

.check-email {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-email:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

/* ============================================
   CARD DE BÔNUS DEFINITIVO - COM IMAGEM DE FUNDO
   ============================================ */

/* CARD PRINCIPAL DO BÔNUS */
.ebook-card.bonus-card-full {
    background: #0f1219;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* IMAGEM DE FUNDO DO CARD - BEM VISÍVEL */
.ebook-card.bonus-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bonus-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

/* OVERLAY BEM SUAVE - SÓ PARA DAR UM CONTRASTE */
.ebook-card.bonus-card-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(15, 18, 25, 0.5),
        rgba(26, 31, 43, 0.45));
    z-index: 2;
    pointer-events: none;
}

/* CONTEÚDO DO CARD */
.bonus-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 40px 30px;
}

/* HEADER DO BÔNUS */
.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.bonus-star {
    font-size: 2.2rem;
    animation: twinkle 2s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.bonus-badge-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* TÍTULO */
.bonus-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.bonus-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* LISTA DE BENEFÍCIOS */
.bonus-features-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 30px auto;
}

.bonus-features-list li {
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-features-list i {
    color: #FFD700;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    flex-shrink: 0;
}

/* ÁREA DE PREÇO */
.bonus-price-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 18px 25px;
    margin: 25px 0 25px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bonus-old-price {
    color: #cbd5e0;
    font-size: 1.3rem;
    text-decoration: line-through;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-new-price {
    color: #FFD700;
    font-size: 2.4rem;
    font-weight: 800;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
}

.bonus-gift {
    font-size: 2.4rem;
    animation: shake 2.5s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-4deg); }
    80% { transform: rotate(4deg); }
}

/* BADGE INCLUSO */
.bonus-included {
    margin-top: 25px;
}

.bonus-included span {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* EFEITO HOVER */
.ebook-card.bonus-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -15px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

.ebook-card.bonus-card-full:hover::before {
    opacity: 0.9;
}

.ebook-card.bonus-card-full:hover .bonus-title {
    text-shadow: 0 0 35px rgba(255, 215, 0, 0.7);
}

/* DESATIVAR O CARD DE BÔNUS ANTIGO */
.ebook-card.bonus {
    display: none;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .bonus-title {
        font-size: 1.6rem;
    }
    
    .bonus-price-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .bonus-new-price {
        font-size: 2rem;
    }
    
    .bonus-content-wrapper {
        padding: 30px 20px;
    }
    
    .bonus-features-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-title {
        font-size: 1.4rem;
    }
    
    .bonus-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .bonus-badge-text {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}

/* ============================================
   RESPONSIVIDADE GERAL
   ============================================ */

@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sales-counter {
        justify-content: center;
    }
    
    .ebooks-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .ebook-card {
        flex-direction: column;
    }
    
    .ebook-cover-container {
        flex: 0 0 auto;
        height: 280px;
    }
    
    .offer-container {
        flex-direction: column;
    }
    
    .plus-sign {
        order: 2;
        margin: 20px 0;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .guarantee-content h2 {
        text-align: center;
    }
    
    .final-guarantee {
        flex-direction: column;
        gap: 15px;
    }
    
    .ebooks-preview {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto;
    }
    
    .proof-testimonials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .final-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sales-counter {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .counter-item {
        width: 100%;
        max-width: 280px;
    }
    
    .benefit {
        justify-content: center;
    }
    
    .ebook-card {
        margin-bottom: 20px;
    }
    
    .thank-you-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.4rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .final-time {
        font-size: 2rem;
        min-width: 70px;
        padding: 12px 20px;
    }
    
    .download-all-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .proof-video-card {
        max-width: 100%;
    }
    
    .video-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .back-home,
    .check-email {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .ebooks-container {
        grid-template-columns: 1fr;
    }
    
    .ebook-cover-container {
        height: 220px;
    }
    
    .ebook-info {
        padding: 20px;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .today-price {
        font-size: 1.8rem;
    }
    
    .notification-content {
        flex-direction: column;
        gap: 5px;
        font-size: 0.9rem;
    }
    
    #countdown-timer,
    #final-countdown {
        flex-wrap: wrap;
    }
    
    .countdown-separator,
    .final-separator {
        display: none;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 1.6rem;
    }
    
    .final-time {
        font-size: 1.6rem;
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .proof-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .proof-testimonial-item {
        width: 100%;
        justify-content: center;
    }
    
    .ebooks-preview,
    .ebooks-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 5px 10px;
    }
}
