/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (FIFA/Panini & AFA Inspired)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@400;500;700&family=Montserrat:wght@800;900&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --bg-deep-stadium: #030a16;
    --bg-dark-blue: #07162E;
    --bg-card-blue: #0a1f3f;
    --accent-afa-blue: #3FA9F5;
    --gold-accent: #FFC928;
    --gold-hover: #e5b320;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba59;
    --text-white: #ffffff;
    --text-light-blue: #cce7ff;
    --text-gray: #a0aec0;
    --border-color: rgba(63, 169, 245, 0.2);
    --gold-glow: 0 0 15px rgba(255, 201, 40, 0.4);
    --wa-glow: 0 4px 20px rgba(37, 211, 102, 0.4);
    
    /* Layout */
    --vsl-width: 580px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-deep-stadium);
    color: var(--text-white);
}

body {
    background-image: radial-gradient(circle at top, #0c2349 0%, #030a16 70%);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================================
   VSL LAYOUT (Single Centered Column with wide padding)
   ========================================================================== */
.vsl-wrapper {
    width: 100%;
    max-width: var(--vsl-width);
    background-color: var(--bg-dark-blue);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.85);
    border-left: 1px solid rgba(63, 169, 245, 0.1);
    border-right: 1px solid rgba(63, 169, 245, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px; /* Space for floating CTA */
}

/* Common Section Styles */
section {
    padding: 48px 24px;
    border-bottom: 1px solid rgba(63, 169, 245, 0.1);
    position: relative;
}

.section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title .highlight-yellow {
    color: var(--gold-accent);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light-blue);
    text-align: center;
    margin-top: -12px;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

/* ==========================================================================
   1. CINTILLO URGENCIA (Top alert bar)
   ========================================================================== */
.cintillo-urgencia {
    background-color: var(--gold-accent);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    text-align: center;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: pulse-red 1.2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* ==========================================================================
   2. HERO SECTION (Vertical VSL Stack)
   ========================================================================== */
.hero-section {
    padding: 36px 24px 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-afa-blue);
}

.stadium-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(circle, rgba(63, 169, 245, 0.25) 0%, rgba(7, 22, 46, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-deportiva {
    display: inline-block;
    background-color: rgba(63, 169, 245, 0.15);
    border: 1px solid var(--accent-afa-blue);
    color: var(--accent-afa-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.main-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.highlight-yellow {
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(255, 201, 40, 0.2);
}

.subheadline {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-light-blue);
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Image Container in Hero */
.main-mockup-container {
    position: relative;
    margin: 0 auto 32px auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-mockup-img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(63, 169, 245, 0.2);
    border: 1px solid rgba(63, 169, 245, 0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-mockup-img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 201, 40, 0.3);
    border-color: var(--gold-accent);
}

.badge-imprimible {
    position: absolute;
    bottom: -15px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e0ae1d 100%);
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: rotate(-1.5deg);
    border: 2px solid #ffffff;
    letter-spacing: 0.5px;
}

/* Bullets de Valor */
.hero-bullets {
    list-style: none;
    text-align: left;
    max-width: 460px;
    margin: 24px auto 36px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bullet-icon {
    font-size: 1.2rem;
    line-height: 1;
    filter: drop-shadow(0 0 5px rgba(255,201,40,0.5));
}

.hero-bullets li strong {
    color: var(--accent-afa-blue);
    font-family: 'Poppins', sans-serif;
}

/* CTAs styling */
.cta-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1ebd5b 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    padding: 18px 20px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: var(--wa-glow);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    filter: brightness(1.08);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Micro-animations */
.pulse-animation {
    animation: pulsate 1.8s infinite alternate;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), var(--wa-glow);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), var(--wa-glow);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--wa-glow);
    }
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

.cta-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   3. BENEFITS SECTION (Glass Cards Stack)
   ========================================================================== */
.benefits-section {
    background-color: rgba(7, 22, 46, 0.4);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-afa-blue);
    transform: translateX(4px);
    background: rgba(63, 169, 245, 0.05);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.benefit-icon-wrapper.bg-afa {
    background-color: var(--accent-afa-blue);
}

.benefit-icon-wrapper.bg-gold {
    background-color: var(--gold-accent);
}

.benefit-icon {
    font-size: 1.4rem;
    color: #000;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--text-white);
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light-blue);
}

/* ==========================================================================
   4. GALLERY SECTION (Dynamic Grid)
   ========================================================================== */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    cursor: pointer;
    background-color: var(--bg-card-blue);
    aspect-ratio: 16/10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 22, 46, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    padding: 10px 20px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    background-color: rgba(0,0,0,0.4);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   5. INCLUDES SECTION
   ========================================================================== */
.includes-section {
    background-color: var(--bg-card-blue);
}

.includes-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.includes-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.includes-main-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(63, 169, 245, 0.2);
}

.gold-seal {
    position: absolute;
    top: -15px;
    right: 15px;
    width: 90px;
    height: 90px;
    background-color: var(--gold-accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px dashed #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: rotate(12deg);
}

.seal-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1;
}

.seal-sub {
    font-size: 0.45rem;
    font-weight: bold;
    margin-top: 2px;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--gold-accent);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: var(--gold-glow);
}

.includes-list h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.includes-list p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-light-blue);
}

/* ==========================================================================
   6. BUSINESS SECTION (Negocio/Reventa Opportunity)
   ========================================================================== */
.business-section {
    background-image: linear-gradient(180deg, #07162E 0%, #030a16 100%);
    text-align: center;
}

.business-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light-blue);
    margin-bottom: 36px;
}

.business-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    position: relative;
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-afa-blue);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark-blue);
}

.step-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: var(--gold-accent);
    margin-top: 8px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-light-blue);
}

.step-arrow {
    font-size: 1.5rem;
    transform: rotate(90deg);
    color: var(--accent-afa-blue);
    margin: 4px 0;
}

.huge-statement {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e0ae1d 100%);
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--gold-glow);
    text-transform: uppercase;
    line-height: 1.2;
}

/* ==========================================================================
   7. SOCIAL PROOF (WhatsApp Chat Bubbles Style)
   ========================================================================== */
.social-section {
    background-color: rgba(7, 22, 46, 0.5);
}

.chat-container {
    background-color: #0b141a; /* WhatsApp Web dark mode background */
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(63, 169, 245, 0.15);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.chat-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.02) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

.chat-bubble {
    max-width: 90%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.chat-bubble.left {
    background-color: #202c33; /* Left bubble dark color */
    align-self: flex-start;
    border-top-left-radius: 0;
    color: #e9edef;
}

.chat-bubble.right {
    background-color: #005c4b; /* WhatsApp Green dark bubble color */
    align-self: flex-end;
    border-top-right-radius: 0;
    color: #e9edef;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
    font-size: 0.75rem;
}

.chat-sender {
    font-weight: 700;
    color: var(--accent-afa-blue);
}

.chat-bubble.right .chat-sender {
    color: var(--gold-accent);
}

.chat-time {
    color: #8696a0;
}

.chat-text {
    word-break: break-word;
}

/* ==========================================================================
   8. BONUS SECTION (Explosive Offer Styling)
   ========================================================================== */
.bonus-section {
    background: linear-gradient(180deg, #0a1f3f 0%, #07162E 100%);
}

.bonus-container {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--gold-accent);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--gold-glow);
}

.bonus-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0055;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(255, 0, 85, 0.5);
    white-space: nowrap;
}

.bonus-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--text-white);
    margin-top: 10px;
    margin-bottom: 16px;
}

.bonus-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light-blue);
    margin-bottom: 24px;
}

.bonus-media {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.bonus-img {
    width: 100%;
    max-width: 340px;
    border-radius: 16px;
    border: 1px solid rgba(255, 201, 40, 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.bonus-items-list {
    list-style: none;
    text-align: left;
    max-width: 380px;
    margin: 24px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bonus-items-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 20px;
    color: var(--text-light-blue);
}

.bonus-value .old-price {
    text-decoration: line-through;
    color: #ff3b30;
}

.bonus-value .free-badge {
    color: var(--gold-accent);
    font-weight: 900;
    text-shadow: 0 0 5px rgba(255, 201, 40, 0.5);
}

/* ==========================================================================
   9. URGENCIA CONTADOR
   ========================================================================== */
.urgency-section {
    background-color: var(--bg-deep-stadium);
}

.urgency-card {
    background: linear-gradient(135deg, #7c1a1a 0%, #3a0b0b 100%);
    border: 1px solid #ff4d4d;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.urgency-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #ff4d4d;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.urgency-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #ffd6d6;
    margin-bottom: 24px;
}

.timer-wrapper {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.timer-title {
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timer-display {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   10. FAQ ACCORDION (Interactive CSS + JS)
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card-blue);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-align: left;
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question span {
    font-size: 1.3rem;
    color: var(--accent-afa-blue);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-afa-blue);
    box-shadow: 0 4px 15px rgba(63,169,245,0.15);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--gold-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light-blue);
    padding: 0 18px 18px 18px;
}

/* ==========================================================================
   11. FINAL CTA SECTION (Stadium Radial & Giant Pricing)
   ========================================================================== */
.final-cta-section {
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #040e1d;
    border-top: 2px solid var(--gold-accent);
}

.final-cta-stadium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom, rgba(255, 201, 40, 0.15) 0%, rgba(7, 22, 46, 0) 80%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-badge {
    display: inline-block;
    background-color: rgba(255, 201, 40, 0.1);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.final-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.final-desc {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-light-blue);
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--gold-accent);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--gold-glow);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.price-old {
    font-size: 0.95rem;
    color: #ff3b30;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.price-current {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    text-shadow: 0 0 15px rgba(255, 201, 40, 0.3);
}

.price-currency {
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.payment-methods-logos {
    font-size: 0.8rem;
    color: var(--text-light-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.payment-methods-logos span {
    color: var(--accent-afa-blue);
}

.final-security-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    padding: 32px 24px;
    text-align: center;
    background-color: #030a15;
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1.5;
}

.footer-disclaimer {
    opacity: 0.5;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Highly Optimized Mobile Sticky CTA)
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), var(--wa-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.88rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.25);
    animation: wa-bounce 2.5s infinite;
}

.wa-float-icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.whatsapp-floating:hover {
    transform: scale(1.05) translateY(-2px);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

@keyframes wa-bounce {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* On Desktop screens, let's keep the floating button clean or slightly larger */
@media (min-width: 600px) {
    .whatsapp-floating {
        right: calc(50% - 270px); /* Centers it relative to VSL container desktop margin */
    }
}

/* ==========================================================================
   LIGHTBOX OVERLAY (Fullscreen view)
   ========================================================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(3, 10, 22, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid var(--accent-afa-blue);
    box-shadow: 0 0 30px rgba(63, 169, 245, 0.3);
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform:scale(0.8); opacity:0} 
    to {transform:scale(1); opacity:1}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold-accent);
    text-decoration: none;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 500px;
    text-align: center;
    color: var(--text-light-blue);
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTABILITY
   ========================================================================== */
@media (max-width: 580px) {
    .vsl-wrapper {
        border-left: none;
        border-right: none;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-current {
        font-size: 3rem;
    }
    
    .whatsapp-floating {
        right: 15px;
        bottom: 15px;
    }
}
