/* ==========================================================================
   RESET & VARIABLES (UPDATED)
   ========================================================================== */
:root {
    --primary: #bc13fe;
    --primary-glow: rgba(188, 19, 254, 0.5);
    --secondary: #ff0055;
    --gold: #ffcc00;
    --gold-glow: rgba(255, 204, 0, 0.4);
    --whatsapp-green: #25D366;
    --bg-deep: #050505;
    --text-white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    padding-bottom: 80px;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.narrow {
    max-width: 800px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
}

.nav-btn-header {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(5px);
}

.nav-btn-header:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ==========================================================================
   HERO / VSL
   ========================================================================== */
.hero-sales {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=2025&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
    filter: blur(5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--bg-deep) 90%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.glitch-badge {
    display: inline-block;
    background: #111;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px #000;
}

.highlight-text {
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary);
}

.subheadline {
    font-size: 18px;
    color: #eee;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 5px #000;
}

.vsl-wrapper {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.video-container {
    position: relative;
    z-index: 1;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border: 1px solid #333;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #ffb300, #ffcc00, #ffb300);
    color: #000;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
    animation: goldPulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.security-text {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
}

/* ==========================================================================
   STATS, CAROUSEL, CATEGORIES, DEVICES
   ========================================================================== */
.stats-section {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 700;
}

.carousel-section {
    padding: 30px 0;
    overflow: hidden;
    background: #000;
}

.carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

.mini-card {
    width: 140px;
    height: 210px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cat-card {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
    transition: 0.3s;
}

.cat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-overlay h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.devices-section {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
}

.devices-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.device-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    border: 1px solid #333;
    transition: 0.3s;
}

.device-icon-box:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   HOW IT WORKS (NEW)
   ========================================================================== */
.how-it-works-section {
    padding: 60px 0;
    background: #08020a;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #222;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px var(--gold-glow);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

/* ==========================================================================
   WHATSAPP PROVA SOCIAL
   ========================================================================== */
.whatsapp-section {
    padding: 60px 0;
    background-color: #0b141a;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-blend-mode: overlay;
    background-size: 400px;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wa-card {
    background: #1f2c34;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--whatsapp-green);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.wa-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-name {
    color: #e9edef;
    font-weight: 600;
    font-size: 14px;
}

.wa-status {
    color: #8696a0;
    font-size: 11px;
}

.wa-body {
    font-size: 14px;
    color: #e9edef;
    line-height: 1.4;
}

.wa-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.wa-time {
    font-size: 11px;
    color: #8696a0;
}

.wa-check {
    color: #53bdeb;
    font-size: 14px;
}

.wa-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.wa-btn {
    display: inline-block;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
    padding: 60px 0;
    background: #000;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    width: 320px;
}

.price-card.gold {
    background: linear-gradient(180deg, #1a1200 0%, #000 100%);
    border: 2px solid #ffaa00;
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.badge-gold {
    display: table;
    margin: -45px auto 20px;
    background: #ffaa00;
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.gold-offer-tag {
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 4px;
    text-align: center;
    border-radius: 4px;
    margin-top: 10px;
}

.price-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.price-header p {
    color: #888;
    font-size: 14px;
}

.gold .price-header h3 {
    color: var(--gold);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 15px 0;
}

.gold .price-value {
    color: #ffaa00;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
    display: flex;
    gap: 10px;
}

.features-list i {
    color: var(--secondary);
    font-size: 18px;
}

.gold .features-list i {
    color: #ffaa00;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    margin-top: 20px;
}

.btn-outline {
    border: 1px solid #555;
    color: #fff;
}

.btn-gold {
    background: linear-gradient(to right, #ffcc00, #ff9900);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.3);
    animation: goldPulse 2s infinite;
}

/* ==========================================================================
   BONUS SECTION (NEW)
   ========================================================================== */
.bonus-section {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
}

.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.bonus-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    width: 280px;
    transition: 0.3s;
}

.bonus-card:hover {
    border-color: var(--primary);
}

.bonus-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.4;
}

.bonus-price {
    display: inline-block;
    background: rgba(255, 0, 85, 0.2);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
}

/* ==========================================================================
   COMPARISON (NEW)
   ========================================================================== */
.comparison-section {
    padding: 80px 0;
    background: #000;
}

.comparison-table {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    margin-top: 30px;
}

.comp-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #222;
    align-items: center;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row.header {
    background: #0a0a0a;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-col {
    flex: 1;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

.comp-col:first-child {
    text-align: left;
    color: #fff;
    font-weight: 600;
    flex: 1.5;
}

.comp-col.brand {
    color: var(--gold);
    font-weight: 800;
}

.comp-col.other {
    color: #888;
    text-decoration: line-through;
    opacity: 0.7;
}

/* ==========================================================================
   FAQ & FOOTER
   ========================================================================== */
.faq-section {
    padding: 60px 0;
    background: #0a040e;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-question {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding-bottom: 20px;
    color: #aaa;
    font-size: 14px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

footer {
    padding: 50px 0 100px;
    text-align: center;
    background: #000;
    color: #555;
}

.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    z-index: 1000;
    display: none;
    border-top: 1px solid var(--gold);
}

.btn-sticky {
    display: block;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
}

#sales-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s;
}

#sales-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#sales-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
}

@media (max-width: 768px) {
    #sales-toast {
        top: auto;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 90%;
    }

    #sales-toast.active {
        transform: translateX(-50%) translateY(0);
    }

    .mobile-sticky {
        display: block;
    }

    h1 {
        font-size: 30px;
    }

    .price-card {
        width: 100%;
    }

    .steps-grid,
    .stats-grid,
    .bonus-grid {
        flex-direction: column;
        align-items: center;
    }

    .bonus-card {
        width: 100%;
    }

    .comp-col {
        font-size: 12px;
    }
}

@keyframes goldPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}