/* ==========================================================================
   CÓDIGO DIVINO - MODERN DESIGN SYSTEM (DARK LUXURY & GOLD)
   ========================================================================== */

:root {
    /* Color Tokens */
    --bg-dark: #0b0f19;
    --bg-dark-surface: #121829;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --gold-primary: #f5d061;
    --gold-secondary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #ffe596 0%, #f5d061 50%, #c99827 100%);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --accent-green: #00e676;
    --accent-green-glow: rgba(0, 230, 118, 0.3);
    --border-gold: rgba(245, 208, 97, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.max-w-xl { max-width: 900px; }
.max-w-md { max-width: 760px; }
.max-w-lg { max-width: 800px; }

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

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #1e130c, #4a3418, #1e130c);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 100;
}

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3d00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3d00;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 61, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

.timer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-gold);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 80px;
    background: radial-gradient(circle at 50% 20%, #1a233b 0%, var(--bg-dark) 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(245, 208, 97, 0.12);
    top: 10%;
    left: 15%;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 230, 118, 0.05);
    top: 40%;
    right: 10%;
}

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

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 208, 97, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge-tag.alt {
    background: rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.3);
    color: var(--accent-green);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.check-icon {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Primary CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #0b0f19;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(245, 208, 97, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 208, 97, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f5d061 60%, #d4af37 100%);
}

.btn-large {
    font-size: 1.15rem;
    padding: 20px 40px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto;
}

.animate-glow {
    animation: btnGlow 3s infinite alternate;
}

@keyframes btnGlow {
    0% { box-shadow: 0 0 20px rgba(245, 208, 97, 0.2); }
    100% { box-shadow: 0 0 35px rgba(245, 208, 97, 0.6); }
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Media Mockup Styling */
.mockup-wrapper {
    position: relative;
    text-align: center;
}

.ambient-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(245, 208, 97, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    transform: rotate(12deg);
}

.save-percent {
    font-weight: 900;
    font-size: 1.1rem;
}

.save-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--bg-dark-surface);
    border-y: 1px solid var(--border-subtle);
    padding: 30px 0;
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.stars-rating {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Glassmorphism Card System */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-50%);
}

.glass-card-gold {
    background: linear-gradient(180deg, rgba(245, 208, 97, 0.06) 0%, rgba(18, 24, 41, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 208, 97, 0.15);
}

/* Cards Grid (Problems) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

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

/* Solution Section */
.solution-section {
    background: var(--bg-dark-surface);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin: 16px 0;
    font-weight: 600;
}

.solution-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-icon {
    font-size: 1.8rem;
    background: rgba(245, 208, 97, 0.1);
    padding: 10px;
    border-radius: var(--radius-sm);
    line-height: 1;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.box-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 10px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 10;
}

.bonus-image-container {
    text-align: center;
    padding: 20px 0;
}

.bonus-img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.bonus-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.bonus-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-subtle);
    padding-top: 12px;
    font-size: 0.875rem;
}

.old-price {
    color: var(--text-dim);
}

.free-price {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at 50% 50%, #192238 0%, var(--bg-dark) 80%);
}

.pricing-badge {
    display: inline-block;
    background: #ff3d00;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.value-stack-list {
    list-style: none;
    margin-bottom: 24px;
}

.value-stack-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.val-price {
    color: var(--text-dim);
}

.total-value-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.strike-total {
    color: #e63946;
}

.price-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

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

.big-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    margin: 8px 0;
}

.big-price .currency {
    font-size: 2.2rem;
    vertical-align: super;
}

.big-price .usd {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.currency-note {
    font-size: 0.85rem;
    color: var(--accent-green);
}

.guarantee-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Guarantee Section */
.guarantee-badge-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0b0f19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(245, 208, 97, 0.3);
    font-weight: 900;
    line-height: 1;
}

.guarantee-badge-large span {
    font-size: 2.5rem;
}

.guarantee-badge-large small {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.guarantee-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

/* Footer */
.footer {
    background: #06080f;
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.disclaimer {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 0.75rem;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-gold);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-mobile-bar.visible {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sticky-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid, .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-media {
        order: -1;
    }

    .main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        font-size: 0.75rem;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .big-price {
        font-size: 3rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .proof-divider {
        display: none;
    }

    .proof-grid {
        flex-direction: column;
        gap: 15px;
    }
}
