/* ============================================
   TICKET SHOWS - CSS PROFESIONAL
   Ticketera de Shows y Espectáculos
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix overflow horizontal en móvil */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --bg: #0a0a0a; /* Negro puro premium */
    --bg-card: #141414; /* Gris oscuro elegante */
    --bg-hover: #1c1c1c;
    --accent: #00d4ff; /* Celeste premium */
    --accent-dark: #00a8cc;
    --accent-light: #33e0ff;
    --success: #00c853;
    --warning: #ffaa00;
    --danger: #ff4466;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.6);
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10,22,40,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(10,22,40,0.98);
    border-color: var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.header a.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    border: none !important;
}

a.logo,
.logo a,
.logo-link,
a.logo:hover,
.logo a:hover,
.logo-link:hover,
a.logo:visited,
.logo a:visited,
.logo-link:visited,
a.logo:active,
.logo a:active,
.logo-link:active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    color: var(--text);
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text,
a .logo-text,
a.logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    text-shadow: none;
    box-shadow: none !important;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
}

.nav-overlay.active { display: block; }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 0;
        transition: right 0.3s;
        z-index: 999;
    }
    
    .nav.active { right: 0; }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.1rem;
    }
    
    .nav-link.active::after { display: none; }
}

/* ============================================
   HERO
   ============================================ */
/* ============================================
   HERO PRO - Estilo Ticketera Profesional
   ============================================ */
.hero-pro {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        /* Gradiente principal oscuro */
        linear-gradient(
            to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.3) 40%,
            rgba(10, 10, 10, 0.9) 100%
        ),
        /* Efecto de color celeste izquierda */
        radial-gradient(
            ellipse 80% 100% at 0% 50%,
            rgba(0, 212, 255, 0.25) 0%,
            transparent 50%
        ),
        /* Efecto de color celeste derecha */
        radial-gradient(
            ellipse 60% 80% at 100% 30%,
            rgba(0, 180, 255, 0.2) 0%,
            transparent 50%
        ),
        /* Efecto central superior */
        radial-gradient(
            ellipse 100% 50% at 50% 0%,
            rgba(0, 212, 255, 0.15) 0%,
            transparent 60%
        );
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,212,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0,212,255,0.1) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-pro .container {
    position: relative;
    z-index: 1;
}

.hero-pro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Efecto de glow/resplandor detrás del texto */
.hero-title .text-gradient::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(35px);
    opacity: 0.8;
}

.hero-title .text-gradient::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.4) 0%, rgba(0, 212, 255, 0.2) 50%, transparent 70%);
    z-index: -2;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number.stars {
    font-size: 1rem;
    background: none;
    -webkit-text-fill-color: unset;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stat-number.stars {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.hero-search {
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s;
}

.feature-pill:hover {
    background: rgba(0,212,255,0.15);
    border-color: rgba(0,212,255,0.3);
}

.feature-icon {
    font-size: 1rem;
}

/* Section Header Pro */
.section-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.section-title-pro {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.ver-todos-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #00d4ff, #0066ff) 1;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ver-todos-btn:hover {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

/* Section Header Movistar Style */
.section-header-movistar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-header-movistar h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Watermark Text Background */
/* Eventos Section */
.eventos-section {
    position: relative;
    overflow: hidden;
}

/* Responsive Hero Pro */
@media (max-width: 768px) {
    .hero-pro {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .section-header-pro {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============================================
   HERO ANTIGUO (mantener por compatibilidad)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: min(800px, 100%);
    width: 100%;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,212,255,0.15);
    border: 1px solid rgba(0,212,255,0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    word-spacing: 0.05em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #33e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stats span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    margin: 0.5rem auto 0;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5), 0 4px 15px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #33e0ff, #0080ff);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.btn-mp {
    background: linear-gradient(135deg, #00b1ea, #00a650);
    color: white;
}

.btn-mp:hover {
    box-shadow: 0 8px 25px rgba(0,177,234,0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   ALERTAS - MEJORADAS
   ============================================ */
.alertas-container {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 1rem;
    pointer-events: none;
}

.alerta {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.alerta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.alerta .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.alerta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.alerta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alerta strong { 
    color: #fff;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.95rem;
}

.alerta-mensaje { 
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tipos de alerta */
.alerta-info .container { 
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 212, 255, 0.12) 100%);
    border: 1px solid rgba(0, 153, 255, 0.35);
}
.alerta-info .container::before {
    background: linear-gradient(90deg, #0099ff, #00d4ff);
}

.alerta-warning .container { 
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.2) 0%, rgba(255, 193, 7, 0.12) 100%);
    border: 1px solid rgba(255, 171, 0, 0.4);
}
.alerta-warning .container::before {
    background: linear-gradient(90deg, #ffab00, #ffc107);
}
.alerta-warning strong {
    color: #ffd54f;
}

.alerta-danger .container { 
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.2) 0%, rgba(231, 76, 60, 0.12) 100%);
    border: 1px solid rgba(255, 82, 82, 0.4);
}
.alerta-danger .container::before {
    background: linear-gradient(90deg, #ff5252, #e74c3c);
}
.alerta-danger strong {
    color: #ff8a80;
}

.alerta-success .container { 
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 166, 80, 0.12) 100%);
    border: 1px solid rgba(0, 200, 83, 0.4);
}
.alerta-success .container::before {
    background: linear-gradient(90deg, #00c853, #00a650);
}
.alerta-success strong {
    color: #69f0ae;
}

.cerrar-alerta {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    flex-shrink: 0;
}

.cerrar-alerta:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: rotate(90deg);
}

/* Alertas responsive */
@media (max-width: 768px) {
    .alertas-container {
        top: 60px;
        padding: 0 0.5rem;
    }
    
    .alerta .container {
        padding: 0.85rem 1rem;
        border-radius: 12px;
    }
    
    .alerta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    
    .alerta-icon {
        display: none;
    }
    
    .alerta strong {
        font-size: 0.85rem;
    }
    
    .alerta-mensaje {
        font-size: 0.8rem;
    }
    
    .cerrar-alerta {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

/* ============================================
   EVENTOS SECTION
   ============================================ */
.eventos-section {
    padding: 6rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255,170,0,0.15);
    border: 1px solid rgba(255,170,0,0.3);
    color: var(--warning);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   GRIDS DE EVENTOS
   ============================================ */

/* Grid principal 2x2 centrado (primeros 4) */
.eventos-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .eventos-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .eventos-grid-main {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* Sección secundaria */
.eventos-grid-secondary {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.secondary-title {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Grid 3 columnas (resto de eventos) */
.eventos-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .eventos-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .eventos-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MINI CARDS (para el grid secundario)
   ============================================ */
.match-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.match-card-mini:hover {
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-3px);
}

.mini-image {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-date {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: var(--accent);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.mini-body {
    padding: 1rem;
}

.mini-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.mini-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.btn-mini {
    background: linear-gradient(135deg, var(--accent), #33e0ff);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
}

/* ============================================
   MATCH CARDS - DISEÑO PREMIUM
   ============================================ */
/* Cards estilo Movistar Arena */
.match-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Match Title & Info */
.match-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.match-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.match-title a:hover {
    color: var(--accent);
}

.match-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-icon {
    font-size: 0.9rem;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* Featured Tag */
.featured-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* Match Image */
.match-image-link {
    display: block;
    text-decoration: none;
    border: none;
}

.match-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
}

.match-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.match-card:hover .match-image img {
    transform: scale(1.05);
}

.match-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

/* Date Badge */
.match-date-badge {
    background: var(--accent);
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    min-width: 55px;
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Urgency Badge */
.urgency-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff4466, #ff0044);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255,68,102,0.4);
}

.urgency-badge.soon {
    background: linear-gradient(135deg, #ffaa00, #ff8800);
}

.urgency-badge .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Match Body */
.match-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.match-teams h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.match-card.featured .match-teams h3 {
    font-size: 1.5rem;
}

/* Match Footer */
.match-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: auto;
}

.match-price {
    display: flex;
    flex-direction: column;
}

/* Link "Más info" estilo Movistar */
.mas-info-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mas-info-link:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

/* Botón Todos los shows centrado */
.ver-todos-center {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-todos-shows {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-todos-shows:hover {
    background: linear-gradient(135deg, #33e0ff, #0080ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.btn-todos-shows.active {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

/* Secondary Shows Grid */
.eventos-grid-secondary {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.eventos-grid-secondary .secondary-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-warning {
    color: var(--warning) !important;
}

/* Buy Button */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #33e0ff, #0080ff);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy svg {
    transition: transform 0.3s;
}

.btn-buy:hover svg {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.empty-icon {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.empty-icon svg {
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hover Effects */
.match-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,212,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.match-card:hover::after {
    opacity: 1;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0a1525 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .trust-grid { grid-template-columns: 1fr; }
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 102, 255, 0.15));
    border-radius: 50%;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 0;
    background: #061020;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span:last-child {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}



.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding-left: 15px;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: #00d4ff;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -12px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact p:hover {
    color: #00d4ff;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-payment > span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tarjetas de pago con imágenes */
.payment-cards {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.payment-logo.mp {
    height: 36px;
}

@media (max-width: 576px) {
    .payment-cards {
        gap: 1rem;
    }
    
    .payment-logo {
        height: 26px;
    }
    
    .payment-logo.mp {
        height: 30px;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}




/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto !important;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    display: none !important; /* Ocultamos la X completamente */
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

/* Progress Steps */
.modal-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-hover);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.progress-step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: #000;
}

.step-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-step.active .step-text {
    color: var(--accent);
}

.progress-line {
    width: 50px;
    height: 2px;
    background: var(--border);
    margin: 0 0.75rem 1.25rem;
}

/* Modal Step Content */
.modal-step-content {
    display: none;
}

.modal-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.modal-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #33e0ff);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.modal-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .modal-info {
        flex-direction: column;
        gap: 0.25rem;
    }
}

.modal-body {
    padding: 1.5rem;
    overflow-y: visible;
}

/* Asegurar scroll en modal */
.modal {
    overflow-y: auto;
}

.modal.active {
    overflow-y: auto;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .form-grid { grid-template-columns: 1fr; }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-group label small {
    font-weight: 400;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input.readonly {
    background: var(--bg-hover);
    color: var(--accent);
    cursor: not-allowed;
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--success);
    margin-top: 0.25rem;
}

.input-error {
    display: block;
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 0.25rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
    .form-row-3 .form-group:last-child {
        grid-column: span 2;
    }
}

/* Cantidad Box */
.cantidad-box {
    background: var(--bg);
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cantidad-box label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.cantidad-selector {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.cantidad-selector button {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cantidad-selector button:hover {
    background: var(--accent);
    color: #000;
}

.cantidad-selector input {
    width: 60px;
    height: 44px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
}

.stock-text {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Precio Box */
.precio-box {
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(51,224,255,0.1));
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,212,255,0.2);
}

.precio-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.precio-row.total {
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    color: var(--text);
}

.precio-row.total span:last-child {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Resumen Box */
.resumen-box {
    background: var(--bg);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.resumen-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.resumen-row strong {
    text-align: right;
    word-break: break-word;
}

.resumen-row:last-child {
    border-bottom: none;
}

.resumen-row span {
    color: var(--text-muted);
}

.resumen-row.total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--border);
    border-bottom: none;
}

.resumen-row.total strong {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Métodos Grid */
.metodos-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.metodo-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text);
    text-align: left;
    width: 100%;
}

.metodo-btn:hover {
    border-color: var(--accent);
    background: rgba(0,212,255,0.05);
}

.metodo-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.metodo-icons img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Tarjeta Visual */
.tarjeta-visual {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    aspect-ratio: 1.6/1;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.tarjeta-visual.visa { background: linear-gradient(135deg, #1a1f71, #00579f); }
.tarjeta-visual.mastercard { background: linear-gradient(135deg, #1a1a1a, #434343); }
.tarjeta-visual.amex { background: linear-gradient(135deg, #006fcf, #00aeef); }

.tarjeta-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.tarjeta-brand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.tarjeta-numero {
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.tarjeta-info {
    display: flex;
    justify-content: space-between;
}

.tarjeta-info span {
    display: block;
    font-size: 0.6rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.tarjeta-info div > div {
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Compra Protegida por Mercado Pago */
.mp-compra-protegida {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 166, 80, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 166, 80, 0.3);
}

.mp-compra-protegida .mp-lock {
    font-size: 1rem;
}

.mp-compra-protegida .mp-text {
    font-size: 0.85rem;
    color: #00a650;
}

.mp-compra-protegida .mp-text strong {
    color: #00b1ea;
}

/* Logo en tarjeta visual */
.tarjeta-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 0.75rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Resultado Box */
.resultado-box {
    text-align: center;
    padding: 2rem;
}

.resultado-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.resultado-box h2 {
    margin-bottom: 0.5rem;
}

.resultado-box p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.resultado-box.error h2 {
    color: var(--danger);
}

.text-muted {
    color: var(--text-muted) !important;
}

.email-box {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.email-box span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.email-box strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.orden-box {
    background: var(--bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.orden-box span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.orden-box strong {
    font-size: 1.5rem;
    color: var(--accent);
}

/* ============================================
   PÁGINAS INFO (FAQ, TÉRMINOS, ETC)
   ============================================ */
.pagina-info {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg) 0%, #0a1020 100%);
}

.pagina-info h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-lista {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.06);
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contenido-legal {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.contenido-legal h3 {
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contenido-legal h3:first-child {
    margin-top: 0;
}

.contenido-legal p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contenido-legal ul, .contenido-legal ol {
    color: var(--text-muted);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.contenido-legal li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contenido-legal a {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 600;
}

.contenido-legal a:hover {
    text-decoration: underline;
}

.pasos-compra {
    max-width: 800px;
    margin: 0 auto;
}

.paso-item {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    transition: all 0.3s;
}

.paso-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.06);
    transform: translateX(5px);
    align-items: flex-start;
    gap: 1.5rem;
}

.paso-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.paso-item h3 {
    margin-bottom: 0.5rem;
}

.paso-item p {
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE FINAL
   ============================================ */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 2rem; }
    .hero-scroll { display: none; }
    .eventos-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.75rem; }
    .btn-large { padding: 0.875rem 1.5rem; font-size: 1rem; }
    .evento-content { padding: 1rem; }
    .tarjeta-visual { padding: 1rem; }
    .tarjeta-numero { font-size: 0.9rem; }
}

/* Scroll suave */
html { scroll-behavior: smooth; }

/* Selección */
::selection {
    background: var(--accent);
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ============================================
   SECCIÓN DE RESULTADOS - MEJORADA
   ============================================ */
.resultados-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.resultados-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100%);
    height: 600px;
    background: radial-gradient(circle, rgba(0,200,100,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-badge.finished {
    background: linear-gradient(135deg, rgba(0,200,100,0.2) 0%, rgba(0,255,136,0.1) 100%);
    border: 1px solid rgba(0,255,136,0.4);
    color: #00ff88;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 900px) {
    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .resultados-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

.resultado-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.resultado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c853, #00ff88, #00c853);
    opacity: 0;
    transition: opacity 0.3s;
}

.resultado-card:hover {
    border-color: rgba(0,255,136,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,200,100,0.15);
}

.resultado-card:hover::before {
    opacity: 1;
}

.resultado-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.resultado-fecha {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.resultado-badge {
    background: linear-gradient(135deg, rgba(0,200,100,0.25) 0%, rgba(0,255,136,0.15) 100%);
    color: #00ff88;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0,255,136,0.3);
    text-transform: uppercase;
}

.resultado-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.25rem;
    gap: 0.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.equipo {
    flex: 1;
    text-align: center;
    max-width: 120px;
}

.equipo-nombre {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    line-height: 1.35;
    transition: color 0.3s;
}

.resultado-card:hover .equipo-nombre {
    color: #fff;
}

.marcador {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.goles {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    min-width: 40px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.separador {
    font-size: 1.75rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.resultado-footer {
    padding: 0.85rem 1.25rem;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.estadio-mini {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.estadio-mini::before {
    content: '🏟️';
    font-size: 0.9rem;
}

.resultado-ventas {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0,166,80,0.12) 0%, rgba(0,200,100,0.08) 100%);
    border-top: 1px solid rgba(0,200,100,0.2);
    text-align: center;
}

.ventas-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00a650 0%, #00c853 100%);
    color: white;
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,166,80,0.3);
    transition: all 0.3s;
}

.resultado-card:hover .ventas-badge {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,166,80,0.4);
}

/* Animación para resultados */
.resultado-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.resultado-card:nth-child(1) { animation-delay: 0.1s; }
.resultado-card:nth-child(2) { animation-delay: 0.2s; }
.resultado-card:nth-child(3) { animation-delay: 0.3s; }
.resultado-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive mejoras */
@media (max-width: 480px) {
    .resultado-body {
        padding: 1.25rem 0.75rem;
    }
    
    .equipo-nombre {
        font-size: 0.85rem;
    }
    
    .goles {
        font-size: 2rem;
    }
    
    .marcador {
        padding: 0.5rem 0.75rem;
    }
}


/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 2px solid #00d4ff;
    padding: 1.25rem;
    z-index: 9999;
    transition: bottom 0.3s ease;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    backdrop-filter: none;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: min(200px, 100%);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content p a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-cookie-accept {
    background: #00d4ff;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: #00a8cc;
    transform: translateY(-1px);
}

.btn-cookie-config {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-config:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE COMPLETO - TODOS LOS DISPOSITIVOS
   ============================================ */

/* Desktop Grande (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .eventos-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 4rem;
    }
}

/* Desktop Normal (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .eventos-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .eventos-section {
        padding: 4rem 0;
    }
    
    .eventos-grid-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eventos-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .resultados-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Móvil Grande (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Header móvil */
    .header {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    /* Hero móvil */
    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Secciones móvil */
    .eventos-section,
    .resultados-section,
    .trust-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Eventos móvil */
    .eventos-grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .evento-card {
        border-radius: 12px;
    }
    
    .evento-imagen {
        height: 180px;
    }
    
    .evento-content {
        padding: 1rem;
    }
    
    .evento-titulo {
        font-size: 1rem;
    }
    
    .evento-precio {
        font-size: 1.25rem;
    }
    
    /* Resultados móvil */
    .resultados-grid {
        gap: 1rem;
        padding: 0;
    }
    
    .resultado-card {
        border-radius: 12px;
    }
    
    .resultado-body {
        padding: 1.25rem 1rem;
    }
    
    .equipo-nombre {
        font-size: 0.85rem;
    }
    
    .goles {
        font-size: 2rem;
    }
    
    .marcador {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .ventas-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Trust móvil */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-card {
        padding: 1.25rem;
    }
    
    /* Footer móvil */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        margin-bottom: 0.75rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .payment-cards {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Botones móvil */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Modal móvil */
    .modal-content {
        margin: 0.5rem;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Móvil Pequeño (hasta 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Header pequeño */
    .logo-text {
        font-size: 1rem;
    }
    
    /* Hero pequeño */
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 0.5rem 0;
    }
    
    /* Secciones pequeño */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Eventos pequeño */
    .evento-imagen {
        height: 160px;
    }
    
    .evento-content {
        padding: 0.875rem;
    }
    
    .evento-titulo {
        font-size: 0.95rem;
    }
    
    .evento-meta {
        font-size: 0.8rem;
    }
    
    .evento-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .evento-precio {
        text-align: center;
    }
    
    .evento-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Resultados pequeño */
    .resultado-header {
        padding: 0.75rem 1rem;
    }
    
    .resultado-fecha {
        font-size: 0.75rem;
    }
    
    .resultado-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .resultado-body {
        padding: 1rem 0.75rem;
    }
    
    .equipo {
        max-width: 90px;
    }
    
    .equipo-nombre {
        font-size: 0.8rem;
    }
    
    .goles {
        font-size: 1.75rem;
        min-width: 30px;
    }
    
    .separador {
        font-size: 1.25rem;
    }
    
    .marcador {
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }
    
    .estadio-mini {
        font-size: 0.7rem;
    }
    
    .resultado-ventas {
        padding: 0.75rem;
    }
    
    .ventas-badge {
        font-size: 0.7rem;
        padding: 0.45rem 0.85rem;
    }
    
    /* Alertas pequeño */
    .alertas-container {
        padding: 0 0.5rem;
    }
    
    .alerta .container {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .alerta strong {
        font-size: 0.8rem;
    }
    
    .alerta-mensaje {
        font-size: 0.75rem;
    }
    
    /* Modal pequeño */
    .modal-content {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100%;
    }
    
    .tarjeta-visual {
        padding: 0.875rem;
    }
    
    .tarjeta-numero {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .tarjeta-datos {
        font-size: 0.7rem;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Móvil muy pequeño (hasta 375px) */
@media (max-width: 375px) {
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.45rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .evento-titulo {
        font-size: 0.9rem;
    }
    
    .goles {
        font-size: 1.5rem;
    }
    
    .equipo-nombre {
        font-size: 0.75rem;
    }
}

/* Orientación horizontal en móvil */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
    
    .modal-content {
        max-height: 100vh;
    }
}

/* Ajustes para pantallas de alta densidad */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .alerta-icon {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Modo oscuro forzado (ya es oscuro, pero por si acaso) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* ============================================
   MODAL DE COMPRA - DISEÑO PROFESIONAL
   ============================================ */

/* Modal mejorado */
.modal {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.modal-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 
                0 0 60px rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

/* Progress Steps Mejorados */
.modal-progress {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%);
    border-color: transparent;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

.step-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    transition: color 0.3s;
}

.progress-step.active .step-text,
.progress-step.completed .step-text {
    color: var(--accent);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #0099ff);
    transition: width 0.5s ease;
}

.progress-line.completed::after {
    width: 100%;
}

/* Tarjeta de crédito visual mejorada */
.credit-card-display {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 50%, #1a4a6e 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.1);
}

.credit-card-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    border-radius: 6px;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.card-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    height: 40px;
}

.card-brand img {
    height: 100%;
    width: auto;
    filter: brightness(1.1);
}

.card-number-display {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-details-display {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder-display,
.card-expiry-display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    font-weight: 500;
}

/* Formulario de pago mejorado */
.form-section {
    padding: 1.5rem;
}

.form-section label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-section input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-section input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-section input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* Métodos de pago mejorados */
.metodos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.metodo-btn {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.metodo-btn:hover {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

.metodo-btn.selected {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.metodo-icons {
    display: flex;
    gap: 0.5rem;
    height: 28px;
}

.metodo-icons img {
    height: 100%;
    width: auto;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.metodo-btn:hover .metodo-icons img,
.metodo-btn.selected .metodo-icons img {
    filter: grayscale(0);
}

.metodo-btn span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Botón de pago mejorado */
.btn-mp {
    background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-mp:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-mp:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sección Mercado Pago */
.mp-compra-protegida {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin: 1rem 1.5rem;
}

.mp-lock {
    font-size: 1rem;
}

.mp-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.mp-text strong {
    color: var(--accent);
}

/* ============================================
   COMPRA EXITOSA - DISEÑO PROFESIONAL
   ============================================ */

.resultado-box {
    text-align: center;
    padding: 2rem 1.5rem;
}

.resultado-box.success {
    background: linear-gradient(180deg, rgba(0, 200, 100, 0.08) 0%, transparent 100%);
}

/* Ícono de éxito animado */
.resultado-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #00c864 0%, #00e676 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 200, 100, 0.4);
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Checkmark animado */
.resultado-icon::after {
    content: '✓';
    font-weight: 900;
}

.resultado-box.success h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00c864 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resultado-box > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Caja de email */
.email-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin: 0 auto 1rem;
    max-width: 320px;
}

.email-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.35rem;
}

.email-box strong {
    color: var(--accent);
    font-size: 0.95rem;
    word-break: break-all;
}

/* Caja de orden */
.orden-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 255, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    margin: 0 auto 1.5rem;
    max-width: 240px;
    position: relative;
    overflow: hidden;
}

.orden-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #0099ff);
}

.orden-box span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.35rem;
}

.orden-box strong {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Check animado premium */
.success-check {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.success-check .circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c864 0%, #00e676 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 200, 100, 0.4),
                0 0 60px rgba(0, 200, 100, 0.2);
    animation: circleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-check .circle::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 100, 0.3);
    animation: pulse 2s ease-out infinite;
}

.success-check svg {
    width: 45px;
    height: 45px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-check svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.5s ease 0.3s forwards;
}

@keyframes circleIn {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Título con glow */
.success-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00c864 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Error check (X roja) */
.error-check {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.error-check .circle-error {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4466 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 68, 102, 0.4),
                0 0 60px rgba(255, 68, 102, 0.2);
    animation: circleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.error-check .circle-error::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px solid rgba(255, 68, 102, 0.3);
    animation: pulse 2s ease-out infinite;
}

.error-check svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.error-check svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.5s ease 0.3s forwards;
}

.error-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff4466 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 576px) {
    .error-check {
        width: 70px;
        height: 70px;
    }
    
    .error-check svg {
        width: 30px;
        height: 30px;
    }
    
    .error-title {
        font-size: 1.4rem;
    }
}

/* Orden box nuevo */
.orden-box-new {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    margin: 1rem auto;
    max-width: 200px;
    text-align: center;
}

.orden-box-new span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.orden-box-new strong {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    font-family: monospace;
    margin-top: 0.25rem;
}

/* Alerta de email */
.email-alert {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem auto;
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.email-alert-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.email-alert-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-align: left;
}

.email-alert-text strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.15rem;
}

/* Mini ticket preview */
.ticket-preview {
    background: linear-gradient(180deg, #1a1a2e 0%, #12121f 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    margin: 1.5rem auto;
    max-width: 320px;
    overflow: hidden;
    position: relative;
}

.ticket-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket-preview::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket-header {
    background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-header h4 {
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
}

.ticket-header span {
    color: rgba(0,0,0,0.7);
    font-size: 0.75rem;
}

.ticket-body-preview {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.ticket-info {
    flex: 1;
}

.ticket-info h5 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.ticket-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ticket-info p + p {
    margin-top: 0.25rem;
}

.qr-code {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.ticket-footer-preview {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-code-small {
    font-family: monospace;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-scan-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

/* Botón success */
.btn-success-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%);
    color: #000;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-success-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Responsive ticket preview */
@media (max-width: 400px) {
    .success-check {
        width: 70px;
        height: 70px;
    }
    
    .success-check svg {
        width: 35px;
        height: 35px;
    }
    
    .success-title {
        font-size: 1.4rem;
    }
    
    .ticket-preview {
        margin: 1rem 0.5rem;
    }
    
    .qr-code {
        width: 55px;
        height: 55px;
    }
    
    .ticket-info h5 {
        font-size: 0.8rem;
    }
}

/* Responsive para compra exitosa */
@media (max-width: 480px) {
    .resultado-box {
        padding: 1.5rem 1rem;
    }
    
    .resultado-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .resultado-box h2 {
        font-size: 1.3rem;
    }
    
    .resultado-box > p {
        font-size: 0.9rem;
    }
    
    .email-box {
        padding: 0.85rem 1rem;
    }
    
    .email-box strong {
        font-size: 0.85rem;
    }
    
    .orden-box {
        padding: 0.85rem 1.25rem;
    }
    
    .orden-box strong {
        font-size: 1.2rem;
    }
    
    .resultado-box .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .resultado-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .resultado-box h2 {
        font-size: 1.15rem;
    }
    
    .orden-box strong {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* Confetti mejorado */
.confetti-piece {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.modal-actions .btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-actions .btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   MODAL RESPONSIVE - TODOS LOS DISPOSITIVOS
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 1rem auto;
    }
}

/* Móviles grandes */
@media (max-width: 500px) {
    .modal {
        padding: 0.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .modal-content {
        margin: 0 auto;
        max-height: none;
        min-height: auto;
        border-radius: 16px;
        max-width: calc(100% - 1rem);
        overflow: visible;
    }
    
    .modal-progress {
        padding: 1rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.7rem;
    }
    
    .credit-card-display {
        margin: 1rem;
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .card-number-display {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .card-value {
        font-size: 0.85rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .form-row > *:last-child {
        grid-column: span 2;
    }
    
    .form-section input {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .metodos-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem 1rem;
        gap: 0.75rem;
    }
    
    .metodo-btn {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .modal-actions {
        padding: 1rem;
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .mp-compra-protegida {
        margin: 0.75rem 1rem;
        padding: 0.6rem;
    }
    
    .mp-text {
        font-size: 0.8rem;
    }
}

/* Móviles pequeños */
@media (max-width: 380px) {
    .modal-content {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
        border-radius: 14px;
    }
    
    .modal-progress {
        padding: 0.75rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .step-text {
        font-size: 0.65rem;
    }
    
    .progress-line {
        margin-bottom: 1rem;
    }
    
    .credit-card-display {
        margin: 0.75rem;
        padding: 1rem;
        min-height: 140px;
    }
    
    .card-chip {
        width: 38px;
        height: 28px;
        margin-bottom: 1rem;
    }
    
    .card-brand {
        height: 30px;
        top: 1rem;
        right: 1rem;
    }
    
    .card-number-display {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .card-label {
        font-size: 0.6rem;
    }
    
    .card-value {
        font-size: 0.8rem;
    }
    
    .form-section {
        padding: 0.75rem;
    }
    
    .form-section label {
        font-size: 0.8rem;
    }
    
    .form-section input {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        gap: 0.5rem;
    }
    
    .modal-header h2 {
        font-size: 1rem;
    }
    
    .modal-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 320px) {
    .modal-content {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .card-number-display {
        font-size: 0.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row > *:last-child {
        grid-column: span 1;
    }
}

/* Landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .modal-content {
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .resultado-box {
        padding: 1rem;
    }
    
    .resultado-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .resultado-box h2 {
        font-size: 1.1rem;
    }
    
    .email-box,
    .orden-box {
        padding: 0.6rem 1rem;
        margin-bottom: 0.75rem;
    }
}
