:root {
    --primary-green: #00ff41;
    --primary-red: #ff0000;
    --primary-blue: #00f3ff;
    --bg-dark: #050505;
    --bg-card: #0e0e0e;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background Effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    z-index: 99;
    pointer-events: none;
    opacity: 0.1;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(var(--bg-dark) 0%, transparent 5%, transparent 95%, var(--bg-dark) 100%),
        linear-gradient(90deg, var(--bg-dark) 0%, transparent 5%, transparent 95%, var(--bg-dark) 100%),
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2) translateY(50px);
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.text-green {
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

.text-red {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--primary-red);
}

.glow-img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.5));
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: 800px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-white);
    letter-spacing: 1px;
}

/* Icons */
.icon-green {
    color: var(--primary-green);
}

.icon-red {
    color: var(--primary-red);
}

.icon-blue {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-large {
    width: 100%;
    max-width: 350px;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn-neon {
    background: var(--primary-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.btn-red {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.btn-red:hover {
    background: #ff2222;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.btn-small-offer {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
    text-align: center;
    text-decoration: none;
    font-family: var(--font-heading);
    margin-top: 15px;
    transition: 0.3s;
}

.btn-small-offer:hover {
    background: var(--text-white);
    color: #000;
}

.blink-animation {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: 40px 0 80px;
    text-align: center;
}

.hero-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border: 2px solid #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--text-white);
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 600px;
}

.hero-bullets {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- DORES (PAINS) --- */
.pains {
    padding: 60px 0;
    background: rgba(20, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.pain-list {
    list-style: none;
    margin-bottom: 30px;
}

.pain-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd1d1;
}

.closing-text {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
}

/* --- SOLUÇÃO --- */
.solution {
    padding: 80px 0;
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- SEGURANÇA --- */
.security-banner {
    padding: 40px 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.05), transparent);
}

.security-box {
    background: #0f120f;
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.lock-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.security-box h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* --- COMO FUNCIONA --- */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    position: relative;
    border: 1px solid var(--border-color);
}

.step-number {
    background: var(--primary-green);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.simple-text {
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* --- ENTREGA --- */
.delivery {
    padding: 40px 0;
    background: #0a0a0a;
}

.delivery-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: rgba(0, 243, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.delivery-content h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

/* --- OFERTA (PRICING) --- */
.offer {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.price-card.recommended {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
    z-index: 2;
}

.sticker {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sub-plan {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin: 20px 0;
    font-family: var(--font-heading);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.plan-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.plan-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-benefits li i {
    color: var(--primary-green);
    width: 18px;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-reinforce {
    color: var(--text-gray);
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- FOOTER --- */
.footer {
    padding: 50px 0;
    background: #020202;
    border-top: 1px solid #111;
    text-align: center;
}

.footer-badges {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-logo {
    height: 30px;
    opacity: 0.5;
    margin-bottom: 15px;
}

.footer p {
    font-size: 0.8rem;
    color: #444;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .price-card.recommended {
        transform: scale(1);
    }

    .security-box {
        flex-direction: column;
        text-align: center;
    }

    .delivery-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- PRICING UPDATES --- */
.old-price {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: -15px;
    text-transform: uppercase;
}

.strike {
    text-decoration: line-through;
    color: var(--primary-red);
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: -15px;
    margin-bottom: 20px;
}

.security-alert-small {
    font-size: 0.8rem;
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 255, 65, 0.05);
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.security-alert-small i {
    width: 14px;
    height: 14px;
}

/* --- IMAGES & CAROUSEL --- */
.section-img {
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
    border-radius: 8px;
    width: 200px;
    height: auto;
}

.glow-img-red {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

/* Testimonials Carousel */
.testimonials {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.carousel {
    position: relative;
    height: 450px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 300ms ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: #000;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    gap: 10px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

@media (max-width: 600px) {
    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .carousel {
        max-width: 85%;
    }
}

/* --- UPSELL POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-card);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    margin-bottom: 20px;
}

.popup-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.popup-subtitle {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.popup-price-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.popup-price-old {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
}

.popup-price-new {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: block;
    margin-top: 5px;
}

.popup-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0 30px;
    display: inline-block;
}

.popup-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-white);
}

.popup-benefits li i {
    color: var(--primary-green);
    width: 18px;
}

.popup-cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.popup-secondary-btn {
    display: inline-block;
    color: var(--text-gray);
    text-decoration: underline;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.popup-secondary-btn:hover {
    color: var(--text-white);
}