:root {
    --primary-green: #00e676;
    /* Vibrant WhatsApp Green */
    --dark-green: #008f11;
    --bg-dark: #000000;
    --modal-bg: rgba(10, 10, 10, 0.9);
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --warning-gold: #ffcc00;
    --warning-bg: rgba(255, 204, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 10%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
}

/* Header Styles */
.header-main {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    background: #000;
    z-index: 10;
    margin-top: 55px;
    /* Offset for the fixed banner */
}

.back-button {
    position: absolute;
    left: 20px;
    color: white;
    cursor: pointer;
}

.logo-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon-box {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    margin-bottom: 8px;
}

.logo-icon-box img {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--primary-green);
}

/* Hero Section */
.main-hero {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
}

.highlight-green {
    color: var(--primary-green);
}

/* Top Banner */
.top-banner {
    width: 100%;
    background: linear-gradient(90deg, #7f1d1d, #b91c1c);
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    /* Keep it fixed at the top */
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.top-banner strong {
    font-size: 1rem;
    display: block;
}

.top-banner span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.section-card {
    width: 100%;
    background: var(--modal-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.congrats {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.headline {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.headline span {
    color: var(--primary-green);
}

.description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.warning-box {
    background: var(--warning-bg);
    border: 1px solid var(--warning-gold);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.warning-header {
    color: var(--warning-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.warning-text {
    color: var(--warning-gold);
    font-size: 0.8rem;
    line-height: 1.4;
}

.offer-call {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    color: white;
}

.offer-call .highlight {
    color: var(--primary-green);
}

.offer-card {
    width: 100%;
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    text-align: center;
}

.badge-limitado {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-green);
    color: black;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 100px;
}

.offer-title {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 6px;
}

.benefit-check {
    color: var(--primary-green);
    font-weight: 800;
}

.benefit-text {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.pricing-area {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.85rem;
}

.discount-tag {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-green);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    margin-left: 8px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.price-main span {
    font-size: 1.2rem;
    vertical-align: top;
    position: relative;
    top: 6px;
}

.payment-label {
    color: #64748b;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.cta-button-premium {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    color: black;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 900;
}

.cta-icon {
    font-size: 1.4rem;
}

.cta-content strong {
    display: block;
    font-size: 0.95rem;
}

.cta-content span {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
}

.faq-card {
    width: 100%;
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.faq-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
}

.faq-question {
    padding: 12px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
}

.faq-plus {
    color: var(--primary-green);
}

.faq-answer {
    padding: 0 12px;
    color: #94a3b8;
    font-size: 0.8rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-bottom: 12px;
}

.security-footer {
    margin: 20px 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.shield-icon {
    width: 12px;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
}