:root {
    /* Colors */
    --bg-dark: #070911;
    --bg-light-dark: #121626;
    --accent-gold: #D4AF37;
    --accent-gold-glow: rgba(212, 175, 55, 0.5);
    --accent-cyan: #00f2fe;
    --accent-cyan-glow: rgba(0, 242, 254, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, #F3E298 0%, #D4AF37 100%);
    --grad-cyan: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    /* Shadows */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glow-gold: 0 0 20px var(--accent-gold-glow);
    --glow-cyan: 0 0 20px var(--accent-cyan-glow);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

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

/* Typography & Utilities */
h1, h2, h3, h4, .title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

.text-glow {
    text-shadow: 0 0 10px var(--accent-gold-glow);
}

.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.5em; display: block; margin-top: 5px; opacity: 0.8; }

/* Sections Common */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background-color: var(--bg-light-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--grad-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad-gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.glow-btn:hover {
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 10px;
}

.guarantee-seal i {
    color: #4ade80;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.hologram-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

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

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Target Audience Section */
.target-audience .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.target-list {
    list-style: none;
    margin-top: 30px;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.target-list i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.target-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: repeating-radial-gradient(
        transparent,
        transparent 40px,
        rgba(0, 242, 254, 0.1) 40px,
        rgba(0, 242, 254, 0.1) 41px
    );
    animation: rotate 20s linear infinite;
}

.radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan));
    transform-origin: left center;
    animation: scan 4s linear infinite;
}

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

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

.glass-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    width: 80%;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background: var(--grad-cyan);
    box-shadow: var(--glow-cyan);
}

/* Pillars Section */
.pillars-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pillars-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.pillar-number {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    flex-shrink: 0;
    z-index: 2;
}

.pillar-content {
    background: rgba(255,255,255,0.03);
    padding: 20px 30px;
    border-radius: 15px;
    flex-grow: 1;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.pillar-item:hover .pillar-content {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-item {
    background: var(--grad-glass);
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.benefit-item i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

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

.bonus-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    border-top: 3px solid transparent;
}

.bonus-card:hover {
    border-top-color: var(--accent-gold);
    transform: translateY(-10px);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.bonus-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin: 20px 0;
}

.bonus-value {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.free {
    color: #4ade80;
    font-weight: 800;
    font-size: 1.2rem;
}

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

.testimonial-card {
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

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

.author strong {
    color: #fff;
}

.author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Guarantee Section */
.guarantee-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--grad-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px;
}

.guarantee-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-gold);
}

.guarantee-icon i {
    font-size: 5rem;
}

.guarantee-icon span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-cyan));
    z-index: -1;
    border-radius: 22px;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.offer-header .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.pricing {
    margin: 40px 0;
}

.pricing .old-price {
    font-size: 1.2rem;
    color: #f87171;
    margin-bottom: 10px;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-price .label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin: 10px 0;
    color: var(--accent-gold);
    text-shadow: var(--glow-gold);
}

.price-value .currency {
    font-size: 2rem;
    margin-top: 15px;
    margin-right: 5px;
    font-weight: 800;
}

.price-value .big {
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.price-value .cents {
    font-size: 2rem;
    margin-top: 15px;
    font-weight: 800;
}

.btn-checkout {
    display: block;
    background: #25D366; /* WhatsApp/Action green, but let's make it gold for consistency or keep it bright */
    background: linear-gradient(to right, #00b09b, #96c93d);
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(150, 201, 61, 0.5);
    transition: 0.3s;
}

.btn-checkout:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(150, 201, 61, 0.8);
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

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

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #cbd5e1;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-secondary);
}

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

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

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

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

.disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .target-audience .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-wrapper {
        align-items: center;
        margin: 0 auto;
    }
    
    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pillars-timeline::before {
        left: 20px;
    }
    
    .pillar-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .price-value .big {
        font-size: 4rem;
    }
}
