:root {
    /* COLORES PREMIUM */
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --primary: #2563eb;
    --accent: #00e676; /* Verde Dinero */
    --text-main: #1e293b;
    --text-light: #64748b;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-vip: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px -10px rgba(37, 99, 235, 0.2);
    --radius: 20px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* --- TICKER INFINITO ARREGLADO --- */
.ticker-wrap {
    position: fixed; top: 0; left: 0; width: 100%; height: 36px;
    background: #000; color: white; z-index: 9999;
    overflow: hidden; border-bottom: 1px solid #333;
    display: flex; align-items: center;
}

.ticker-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.ticker-item {
    white-space: nowrap;
    padding: 0 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.highlight { color: var(--accent); }

/* --- NAVBAR CRISTAL --- */
.navbar {
    position: sticky; top: 36px; z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 12px 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo-link {
    text-decoration: none; display: flex; align-items: center; gap: 10px;
    font-weight: 900; font-size: 1.3rem; color: var(--bg-dark); letter-spacing: -0.5px;
}
.logo-icon { width: 35px; height: 35px; border-radius: 8px; }

.nav-links { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

/* --- HERO SECTION --- */
.hero {
    background: var(--bg-dark);
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

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

.badge-pill {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    display: inline-block; margin-bottom: 20px; color: var(--accent);
}

.hero h1 {
    font-size: 3.5rem; line-height: 1.1; margin: 0 0 20px; letter-spacing: -1px;
    background: linear-gradient(to right, #fff 20%, #94a3b8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p { font-size: 1.2rem; color: #cbd5e1; max-width: 600px; margin: 0 auto 40px; }

/* Cabecera Social Buttons (Pequeños) */
.community-hub { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.social-btn {
    text-decoration: none; color: white; padding: 12px 24px; border-radius: 12px;
    font-weight: 600; display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s, filter 0.2s;
}
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-tg { background: #229ED9; }
.btn-wa { background: #25D366; }
.btn-ig { background: linear-gradient(45deg, #f09433, #bc1888); }

/* --- SECCIONES --- */
.section-header {
    display: flex; align-items: center; gap: 15px;
    margin: 80px 0 40px; padding-bottom: 20px; border-bottom: 2px solid #e2e8f0;
}
.section-title { font-size: 2rem; margin: 0; color: var(--bg-dark); letter-spacing: -1px; }

/* --- GRID TARJETAS --- */
.grid-promos {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.brand-logo {
    width: 60px; height: 60px; object-fit: contain;
    padding: 5px; border-radius: 12px; background: #f1f5f9;
}

.status-badge {
    position: absolute; top: 20px; right: 20px;
    padding: 6px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
}
.badge-hot { background: #fee2e2; color: #ef4444; }
.badge-easy { background: #dcfce7; color: #166534; }
.badge-new { background: #e0f2fe; color: #0369a1; }

.offer-value { font-size: 2.2rem; font-weight: 900; color: var(--bg-dark); line-height: 1; margin: 10px 0; }
.offer-label { font-size: 0.9rem; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 15px; }
.offer-desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }

.btn-card {
    display: block; width: 100%; text-align: center;
    background: var(--bg-dark); color: white;
    padding: 16px; border-radius: 14px; font-weight: 700;
    text-decoration: none; transition: background 0.2s;
}
.btn-card:hover { background: var(--primary); }

/* --- FOOTER --- */
footer {
    background: var(--bg-dark); color: #94a3b8;
    padding: 80px 0 40px; margin-top: 100px;
    text-align: center;
}
.footer-links a { color: white; margin: 0 10px; text-decoration: none; font-size: 0.9rem; }

/* Banner Cookies */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.98); border-top: 1px solid #e2e8f0;
    padding: 20px; z-index: 9999; display: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.cookie-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}
.btn-accept {
    background: var(--primary); color: white; border: none;
    padding: 10px 25px; border-radius: 8px; cursor: pointer; font-weight: bold;
}

/* =========================================
   🔥 VIP SECTION STYLES (NUEVO)
   ========================================= */
.vip-section {
    background: var(--gradient-vip);
    border-radius: 24px;
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(49, 46, 129, 0.4);
}

/* Efecto de fondo brillante */
.vip-section::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.vip-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

/* Indicador de estado animado */
.vip-status {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent); padding: 8px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 25px;
}
.pulsing-dot {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.vip-title {
    font-size: 2.8rem; line-height: 1.1; margin: 0 0 20px; font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.vip-desc { font-size: 1.1rem; color: #c7d2fe; margin-bottom: 40px; }

/* Grid de botones VIP */
.vip-buttons-grid {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

.btn-vip {
    display: flex; align-items: center; gap: 15px;
    padding: 12px 25px; border-radius: 16px;
    text-decoration: none; color: white;
    transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1);
    min-width: 260px; text-align: left;
}

.btn-vip-wa { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.3); }
.btn-vip-wa:hover { background: rgba(37, 211, 102, 0.25); transform: translateY(-3px); box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.3); }

.btn-vip-tg { background: rgba(34, 158, 217, 0.15); border-color: rgba(34, 158, 217, 0.3); }
.btn-vip-tg:hover { background: rgba(34, 158, 217, 0.25); transform: translateY(-3px); box-shadow: 0 10px 30px -5px rgba(34, 158, 217, 0.3); }

.btn-icon-box {
    width: 45px; height: 45px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
}

.btn-text-col { display: flex; flex-direction: column; }
.btn-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; opacity: 0.8; }
.btn-main-text { font-size: 1.1rem; font-weight: 700; }

/* MOVIL */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .vip-title { font-size: 2rem; }
    .btn-vip { width: 100%; justify-content: center; }
    .ticker-track { animation-duration: 20s; }
}
/* =========================================
   📄 ESTILOS PARA PÁGINAS INTERNAS (Promos)
   ========================================= */

/* Contenedor de lectura (más estrecho para que sea cómodo) */
.promo-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

/* Cabecera de la promo (El recuadro verde/azul de arriba) */
.promo-header-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a8a 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.promo-logo {
    width: 80px; height: 80px;
    background: white; padding: 10px; border-radius: 16px;
    margin-bottom: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.promo-title { font-size: 2.5rem; font-weight: 900; margin: 10px 0; line-height: 1.1; }
.promo-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }

/* 🎟️ LA CAJA DEL CÓDIGO (Cupón) */
.coupon-box {
    background: rgba(255,255,255,0.1);
    border: 2px dashed var(--accent);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px 0;
    position: relative;
}

.coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem; font-weight: bold; letter-spacing: 2px;
    color: var(--accent);
}

.coupon-label {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    color: white; opacity: 0.7; margin-bottom: 5px;
}

/* 🔘 BOTÓN GIGANTE DE ACCIÓN (El que se ve mal ahora) */
.btn-claim {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    background: var(--accent); /* Verde Dinero */
    color: var(--bg-dark);     /* Texto oscuro para contraste */
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.btn-claim:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.6);
    background: white;
    border-color: var(--accent);
    color: var(--accent);
}

/* Pasos numerados */
.step-item {
    display: flex; gap: 20px; margin-bottom: 30px;
}
.step-number {
    background: var(--bg-dark); color: white;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: bold; flex-shrink: 0;
}
.step-content h3 { margin-top: 0; color: var(--primary); }

/* Acordeón FAQ (Preguntas) */
.faq-item {
    border-bottom: 1px solid #e2e8f0; padding: 20px 0;
}
.faq-question {
    font-weight: 700; cursor: pointer; display: flex; justify-content: space-between;
}
.faq-answer {
    margin-top: 10px; color: var(--text-light); font-size: 0.95rem;
}

/* MÓVIL */
@media (max-width: 600px) {
    .promo-wrapper { padding: 20px; margin: 20px 10px; }
    .promo-title { font-size: 1.8rem; }
    .coupon-code { font-size: 1.4rem; }
}
/* --- FIX SENIOR PARA MÓVILES (Responsivo) --- */

@media (max-width: 768px) {
    /* Navbar: Logo arriba y menú abajo bien centrado */
    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap; /* Si no caben, bajan de fila */
        justify-content: center;
        gap: 15px !important;
        padding: 0;
        list-style: none;
    }

    .nav-links li a {
        font-size: 0.9rem;
        font-weight: 600;
        background: #f1f5f9; /* Les damos forma de botoncitos para que sea fácil pulsar con el dedo */
        padding: 8px 12px;
        border-radius: 8px;
    }

    /* Banner Azul: Ajuste de texto */
    .promo-banner-blue {
        background: #eff6ff;
        border-bottom: 1px solid #bfdbfe;
        padding: 12px 5px;
        text-align: center;
    }

    .banner-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .badge-new {
        background: #2563eb;
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 900;
        font-size: 0.7rem;
    }

    /* Hero: Asegurar que los botones de Telegram/WA no se corten */
    .community-hub {
        display: flex;
        flex-direction: column; /* En móvil, uno debajo de otro */
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .social-btn {
        width: 100%; /* Botones anchos para pulsar fácil */
        justify-content: center;
    }
}

/* Ticker: Asegurar que siempre se vea arriba de todo */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #0f172a;
    color: white;
    height: 35px;
    display: flex;
    align-items: center;
}