/* ============================================================
   SESSION # - ESTILOS RESPONSIVE PROFESIONALES
   Mobile First | Optimizado para todos los dispositivos
   ============================================================ */

/* ========== VARIABLES CSS ========== */
:root {
    --neon: #39ff14;
    --cyan: #00f2ea;
    --purple: #a64bf4;
    --gold: #ffd700;
    --orange: #ff8c00;
    --bg-dark: #0a0a0a;
    --bg-card: #111;
    --text-primary: #fff;
    --text-secondary: #888;
    --border-color: #222;
    
    /* Espaciados responsive */
    --section-padding-mobile: 40px 0;
    --section-padding-tablet: 60px 0;
    --section-padding-desktop: 80px 0;
    --container-padding: 15px;
    --card-gap-mobile: 15px;
    --card-gap-desktop: 25px;
}

/* ========== SELECTOR DE EVENTO ========== */
.evento-selector-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 1px solid var(--neon);
    padding: 20px 0;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.evento-selector-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .evento-selector-box {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.evento-selector-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.evento-selector-label i {
    color: var(--neon);
    font-size: 1.1rem;
}

.evento-selector-dropdown {
    background: #000;
    border: 2px solid var(--neon);
    color: var(--neon);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    min-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2339ff14'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.evento-selector-dropdown:hover,
.evento-selector-dropdown:focus {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    outline: none;
}

.evento-selector-dropdown option {
    background: #111;
    color: #fff;
    padding: 10px;
}

.evento-actual-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 15px;
}

.evento-actual-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--neon);
}

.evento-actual-text h3 {
    color: var(--neon);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.evento-actual-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.evento-actual-text p i {
    color: var(--neon);
}

@media (max-width: 767px) {
    .evento-selector-section {
        padding: 15px 0;
        top: 55px;
    }
    
    .evento-selector-dropdown {
        width: 100%;
        max-width: 320px;
        font-size: 0.9rem;
        padding: 10px 15px;
        padding-right: 40px;
    }
    
    .evento-actual-info {
        flex-direction: column;
        text-align: center;
    }
    
    .evento-actual-info img {
        width: 80px;
        height: 80px;
    }
}

/* Badge de evento en cada sección */
.evento-badge-section {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 18px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon);
    border-radius: 25px;
    color: var(--neon);
    font-size: 0.85rem;
    font-weight: 600;
}

.evento-badge-section.gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.evento-badge-section.purple {
    background: rgba(166, 75, 244, 0.1);
    border-color: var(--purple);
    color: var(--purple);
}

.evento-badge-section.neon {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon);
    color: var(--neon);
}

.evento-badge-section i {
    font-size: 0.8rem;
}

/* ========== RESET Y BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Prevenir desbordamiento horizontal */
html, body {
    overflow-x: hidden !important;
}

section, header, footer, main, div {
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* ========== CONTAINER RESPONSIVE ========== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .container { padding: 0 20px; }
}

@media (min-width: 992px) {
    .container { padding: 0 30px; }
}

/* ========== PREVENIR DESBORDAMIENTO ========== */
section {
    overflow-x: hidden;
    width: 100%;
}

/* ========== SECCIONES BASE ========== */
.section-padding {
    padding: var(--section-padding-mobile);
}

@media (min-width: 768px) {
    .section-padding { padding: var(--section-padding-tablet); }
}

@media (min-width: 1200px) {
    .section-padding { padding: var(--section-padding-desktop); }
}

.section-dark { background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%); }
.section-cyan { background: linear-gradient(180deg, #0a0a0a 0%, #051a1a 50%, #0a0a0a 100%); }
.section-gold { background: linear-gradient(180deg, #0a0a0a 0%, #1a1505 50%, #0a0a0a 100%); }
.section-purple { background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%); }
.section-green { background: linear-gradient(180deg, #0a0a0a 0%, #0a1a0a 50%, #0a0a0a 100%); }

.section-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-color), transparent);
}

/* ========== TÍTULOS DE SECCIÓN ========== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 50px; }
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .section-icon { font-size: 2.5rem; margin-bottom: 15px; }
}

.section-title-new {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
}

@media (min-width: 576px) {
    .section-title-new { font-size: 2rem; }
}

@media (min-width: 768px) {
    .section-title-new { font-size: 2.5rem; margin-bottom: 10px; }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .section-subtitle { font-size: 1rem; }
}

/* ========== GRID DE PRODUCTOS ========== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-gap-mobile);
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--card-gap-desktop);
    }
}

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== CARD PRODUCTO ========== */
.product-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 768px) {
    .product-card { border-radius: 20px; }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
}

.product-card.neon:hover { border-color: var(--neon); box-shadow: 0 15px 30px rgba(57, 255, 20, 0.15); }
.product-card.cyan:hover { border-color: var(--cyan); box-shadow: 0 15px 30px rgba(0, 242, 234, 0.15); }
.product-card.gold:hover { border-color: var(--gold); box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15); }
.product-card.purple:hover { border-color: var(--purple); box-shadow: 0 15px 30px rgba(166, 75, 244, 0.15); }

/* Badge del producto */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (min-width: 768px) {
    .product-badge {
        top: 15px;
        left: 15px;
        padding: 8px 15px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

.badge-neon { background: var(--neon); color: black; }
.badge-cyan { background: var(--cyan); color: black; }
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--orange)); color: black; }
.badge-purple { background: var(--purple); color: white; }

/* Imagen del producto */
.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #111;
}

@media (min-width: 576px) {
    .product-image { height: 200px; }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

@media (min-width: 576px) {
    .product-image-placeholder { height: 200px; font-size: 4rem; }
}

.placeholder-neon { background: linear-gradient(135deg, #0a1a0a 0%, #0d0d0d 100%); color: var(--neon); }
.placeholder-cyan { background: linear-gradient(135deg, #0a1a1a 0%, #0d0d0d 100%); color: var(--cyan); }
.placeholder-gold { background: linear-gradient(135deg, #1a1505 0%, #0d0d0d 100%); color: var(--gold); }
.placeholder-purple { background: linear-gradient(135deg, #1a0a2e 0%, #0d0d0d 100%); color: var(--purple); }

/* Contenido del producto */
.product-content {
    padding: 18px;
}

@media (min-width: 768px) {
    .product-content { padding: 25px; }
}

.product-name {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .product-name { font-size: 1.3rem; margin-bottom: 12px; }
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 15px;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-desc { font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
}

/* Footer del producto */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

@media (min-width: 400px) {
    .product-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .product-footer { padding-top: 20px; }
}

.product-price {
    font-size: 1.5rem;
    font-weight: 900;
}

@media (min-width: 768px) {
    .product-price { font-size: 1.8rem; }
}

.price-neon { color: var(--neon); }
.price-cyan { color: var(--cyan); }
.price-gold { color: var(--gold); }
.price-purple { color: var(--purple); }

/* Acciones del producto */
.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

@media (min-width: 400px) {
    .product-actions { width: auto; }
}

.qty-select {
    padding: 12px 8px;
    background: #000;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    width: 60px;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.qty-select:focus {
    outline: none;
    border-color: var(--neon);
}

/* Botón agregar */
.btn-add {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
}

@media (min-width: 400px) {
    .btn-add { flex: none; padding: 12px 20px; }
}

@media (min-width: 768px) {
    .btn-add { padding: 12px 25px; font-size: 0.85rem; }
}

.btn-neon { background: var(--neon); color: black; }
.btn-neon:hover, .btn-neon:active { 
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5); 
    transform: scale(1.02); 
}

.btn-cyan { background: var(--cyan); color: black; }
.btn-cyan:hover, .btn-cyan:active { 
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.5); 
    transform: scale(1.02); 
}

.btn-gold { background: linear-gradient(135deg, var(--gold), var(--orange)); color: black; }
.btn-gold:hover, .btn-gold:active { 
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5); 
    transform: scale(1.02); 
}

.btn-purple { background: var(--purple); color: white; }
.btn-purple:hover, .btn-purple:active { 
    box-shadow: 0 0 25px rgba(166, 75, 244, 0.5); 
    transform: scale(1.02); 
}

/* ========== EVENTOS - GRID ========== */
.eventos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-gap-mobile);
}

@media (min-width: 576px) {
    .eventos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .eventos-grid { grid-template-columns: repeat(3, 1fr); gap: var(--card-gap-desktop); }
}

/* Card de evento */
.evento-card {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .evento-card { border-radius: 16px; }
}

.evento-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 20px rgba(57, 255, 20, 0.1);
}

@media (min-width: 768px) {
    .evento-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(57, 255, 20, 0.1);
    }
}

.evento-card.sold-out {
    opacity: 0.7;
    border-color: #ff4757;
}

.evento-card.sold-out .evento-img-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Imagen del evento */
.evento-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

@media (min-width: 576px) {
    .evento-img-container { aspect-ratio: 4/5; }
}

@media (min-width: 768px) {
    .evento-img-container { aspect-ratio: 1/1; }
}

.evento-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-img-container img {
    transform: scale(1.05);
}

/* Badge del evento */
.evento-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: var(--neon);
    color: black;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

@media (min-width: 768px) {
    .evento-badge {
        top: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 0.7rem;
        border-radius: 8px;
        letter-spacing: 1px;
    }
}

/* Contenido del evento */
.evento-content {
    padding: 15px;
}

@media (min-width: 768px) {
    .evento-content { padding: 20px; }
}

.evento-fecha {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .evento-fecha { font-size: 0.8rem; gap: 8px; letter-spacing: 1px; margin-bottom: 10px; }
}

.evento-titulo {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
}

@media (min-width: 768px) {
    .evento-titulo { font-size: 1.2rem; margin-bottom: 15px; }
}

/* Footer del evento */
.evento-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
}

@media (min-width: 400px) {
    .evento-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (min-width: 768px) {
    .evento-footer { padding-top: 15px; }
}

.evento-precio {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--neon);
}

@media (min-width: 768px) {
    .evento-precio { font-size: 1.8rem; }
}

.evento-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

@media (min-width: 400px) {
    .evento-actions { width: auto; }
}

.evento-qty {
    padding: 12px 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    width: 55px;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 768px) {
    .evento-qty { width: 60px; font-size: 0.95rem; }
}

.evento-qty:focus {
    outline: none;
    border-color: var(--neon);
}

.evento-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: var(--neon);
    color: black;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

@media (min-width: 400px) {
    .evento-btn { flex: none; min-width: 120px; padding: 12px 20px; }
}

@media (min-width: 768px) {
    .evento-btn { font-size: 0.85rem; }
}

.evento-btn:hover, .evento-btn:active {
    background: #4dff33;
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.4);
}

.evento-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

/* ========== MESAS VIP ========== */
.vip-card {
    background: linear-gradient(160deg, #1a0a2e 0%, #0d0d1a 50%, #0a0a15 100%);
    border: 2px solid rgba(166, 75, 244, 0.4);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .vip-card { border-radius: 24px; }
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), #ff6b9d, var(--purple));
    z-index: 2;
}

@media (min-width: 768px) {
    .vip-card::before { height: 4px; }
}

.vip-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(166, 75, 244, 0.3);
}

@media (min-width: 768px) {
    .vip-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(166, 75, 244, 0.35);
    }
}

/* Imagen VIP */
.vip-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .vip-image-container { height: 180px; }
}

.vip-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vip-card:hover .vip-image-container img { 
    transform: scale(1.1); 
}

.vip-image-placeholder {
    height: 160px;
    background: linear-gradient(135deg, #2a1a4e 0%, #1a0a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(166, 75, 244, 0.3);
}

@media (min-width: 768px) {
    .vip-image-placeholder { height: 180px; font-size: 4rem; }
}

/* Estado VIP */
.vip-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 3;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .vip-status {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 25px;
    }
}

.vip-status.libre { 
    background: linear-gradient(135deg, var(--purple), #b847ff);
    color: white;
    box-shadow: 0 5px 15px rgba(166, 75, 244, 0.5);
}

@media (min-width: 768px) {
    .vip-status.libre { box-shadow: 0 5px 20px rgba(166, 75, 244, 0.5); }
}

.vip-status.ocupada { 
    background: rgba(50,50,50,0.9); 
    color: #888; 
}

/* Contenido VIP */
.vip-content { 
    padding: 18px; 
}

@media (min-width: 768px) {
    .vip-content { padding: 25px; }
}

.vip-header-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

@media (min-width: 400px) {
    .vip-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.vip-info h3 {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    color: #fff;
}

@media (min-width: 768px) {
    .vip-info h3 { font-size: 1.4rem; }
}

.vip-capacity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(166, 75, 244, 0.15);
    color: var(--purple);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .vip-capacity { padding: 6px 12px; font-size: 0.8rem; border-radius: 20px; }
}

.vip-precio-box {
    text-align: left;
}

@media (min-width: 400px) {
    .vip-precio-box { text-align: right; }
}

.vip-precio-label {
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .vip-precio-label { font-size: 0.65rem; }
}

.vip-precio {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--purple);
    text-shadow: 0 0 20px rgba(166, 75, 244, 0.5);
}

@media (min-width: 768px) {
    .vip-precio { font-size: 2rem; text-shadow: 0 0 25px rgba(166, 75, 244, 0.5); }
}

/* Beneficios VIP */
.vip-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

@media (min-width: 768px) {
    .vip-benefits { margin: 0 0 20px 0; }
}

.vip-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #bbb;
}

@media (min-width: 768px) {
    .vip-benefits li { gap: 10px; padding: 8px 0; font-size: 0.85rem; }
}

.vip-benefits li:last-child { border-bottom: none; }

.vip-benefits li i {
    color: var(--purple);
    font-size: 0.7rem;
    width: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vip-benefits li i { font-size: 0.75rem; width: 18px; }
}

/* Botón VIP Comprar */
.vip-btn-comprar {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--purple), #8b2fc9);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
}

@media (min-width: 768px) {
    .vip-btn-comprar { 
        padding: 16px 20px; 
        border-radius: 12px; 
        font-size: 0.95rem; 
    }
}

.vip-btn-comprar:hover, .vip-btn-comprar:active {
    background: linear-gradient(135deg, #c44dff, var(--purple));
    box-shadow: 0 8px 25px rgba(166, 75, 244, 0.5);
    transform: translateY(-2px);
}

.vip-btn-comprar:disabled, .vip-btn-comprar.disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Botón VIP Reservar (legacy) */
.vip-btn-reserve {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--purple), #8b2fc9);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
}

@media (min-width: 768px) {
    .vip-btn-reserve { padding: 16px; border-radius: 12px; font-size: 1rem; }
}

.vip-btn-reserve:hover, .vip-btn-reserve:active {
    background: linear-gradient(135deg, #c44dff, var(--purple));
    box-shadow: 0 10px 30px rgba(166, 75, 244, 0.5);
    transform: translateY(-2px);
}

.vip-btn-reserve:disabled, .vip-btn-reserve.disabled {
    background: #222;
    color: #555;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 15px;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 1px solid var(--purple);
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: modalIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .modal-content { padding: 40px; border-radius: 25px; }
}

@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    color: #666;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

@media (min-width: 768px) {
    .modal-close { top: 20px; right: 20px; font-size: 1.5rem; }
}

.modal-close:hover { color: var(--purple); }

.modal-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .modal-title { font-size: 2rem; }
}

.modal-cap {
    color: var(--purple);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .modal-cap { font-size: 0.9rem; margin-bottom: 20px; }
}

.modal-precio {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 15px 0;
}

@media (min-width: 768px) {
    .modal-precio { font-size: 3rem; margin: 20px 0; }
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

@media (min-width: 768px) {
    .modal-list { margin: 0 0 30px 0; }
}

.modal-list li {
    color: #ccc;
    font-size: 0.85rem;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .modal-list li { font-size: 0.9rem; padding: 8px 0; }
}

.modal-list li::before {
    content: '✓';
    color: var(--purple);
    font-weight: bold;
}

.modal-btn {
    width: 100%;
    background: var(--purple);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 50px;
}

@media (min-width: 768px) {
    .modal-btn { padding: 18px; border-radius: 12px; font-size: 1rem; }
}

.modal-btn:hover {
    box-shadow: 0 0 30px rgba(166, 75, 244, 0.5);
}

/* ========== CARRITO FLOTANTE ========== */
#cart-float {
    position: fixed;
    bottom: 15px; 
    right: 15px;
    left: auto;
    background: var(--neon);
    color: black;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(57,255,20,0.4);
    display: none;
    cursor: pointer;
    z-index: 9990;
    border: 2px solid white;
    transition: all 0.3s ease;
    max-width: calc(100vw - 30px);
}

@media (min-width: 768px) {
    #cart-float {
        bottom: 20px; right: 20px;
        padding: 15px 25px;
        font-size: 0.9rem;
        box-shadow: 0 10px 30px rgba(57,255,20,0.4);
    }
}

#cart-float:hover, #cart-float:active { 
    transform: scale(1.05); 
}

/* Botones flotantes - prevenir desbordamiento y separar del carrito */
.floating-socials {
    right: 15px !important;
    bottom: 100px !important;
    max-width: 60px;
    z-index: 9998;
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 90px !important;
        right: 12px !important;
    }
    .floating-socials .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ========== EMPTY STATE ========== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

@media (min-width: 768px) {
    .empty-state { padding: 60px; }
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

@media (min-width: 768px) {
    .empty-state i { font-size: 3rem; margin-bottom: 20px; }
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10000;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
    max-width: calc(100% - 30px);
    text-align: center;
    border: 1px solid var(--neon);
}

@media (min-width: 768px) {
    .toast {
        bottom: 100px;
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ========== UTILIDADES ========== */
.neon-text { color: var(--neon); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }

/* ========== ANIMACIONES DE BOTÓN ========== */
.btn-adding {
    transform: scale(0.95) !important;
    opacity: 0.8;
}

.btn-added {
    background: #22c55e !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5) !important;
}

/* ========== MEJORAS TÁCTILES ========== */
@media (hover: none) and (pointer: coarse) {
    /* Dispositivos táctiles */
    .btn-add, .evento-btn, .vip-btn-comprar, .vip-btn-reserve, .modal-btn {
        min-height: 50px;
    }
    
    .qty-select, .evento-qty {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .product-card:hover,
    .evento-card:hover,
    .vip-card:hover {
        transform: none;
    }
    
    .product-card:active,
    .evento-card:active,
    .vip-card:active {
        transform: scale(0.98);
    }
}

/* ========== SCROLL SUAVE ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== SAFE AREA (Notch) ========== */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(var(--container-padding), env(safe-area-inset-left));
        padding-right: max(var(--container-padding), env(safe-area-inset-right));
    }
    
    #cart-float {
        bottom: max(15px, env(safe-area-inset-bottom));
        right: max(15px, env(safe-area-inset-right));
    }
}

/* ========== FIX FINAL: PREVENIR SCROLL HORIZONTAL ========== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* Elementos que pueden causar desbordamiento */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Texto largo sin wrap */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Asegurar que las secciones no se desborden */
.section-padding,
.section-dark,
.section-cyan,
.section-gold,
.section-purple,
.section-green {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ========== EVENTOS ANTERIORES (COLAPSADO) ========== */
.eventos-anteriores-section {
    padding-top: 20px;
}

/* Divider con texto */
.section-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

.divider-text {
    padding: 0 20px;
    color: #555;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eventos-anteriores-toggle {
    width: 100%;
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border: 1px solid #2a2a2a;
    border-left: 3px solid var(--neon);
    color: #aaa;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.eventos-anteriores-toggle:hover {
    border-color: var(--neon);
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #111);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.1);
}

.eventos-anteriores-toggle i {
    transition: transform 0.3s ease;
}

#chevron-anteriores {
    margin-left: auto;
}

.eventos-anteriores-content {
    margin-top: 25px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Eventos pasados en el grid principal */
.evento-card.evento-pasado {
    opacity: 0.85;
    transition: all 0.3s ease;
}

.evento-card.evento-pasado:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.evento-card.evento-pasado .evento-img-container img {
    filter: saturate(0.7);
}

.evento-card.evento-pasado:hover .evento-img-container img {
    filter: saturate(1);
}

.evento-pasado .evento-content {
    background: linear-gradient(135deg, #151515, #0a0a0a);
}

.evento-pasado .evento-titulo {
    color: #ccc;
}

/* Link de evento clickeable */
.evento-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.evento-card-link .evento-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.evento-card-link:hover .evento-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.2);
}

.evento-card-link:hover .evento-card:not(.evento-pasado) {
    border-color: var(--neon);
}

/* Botón VER EVENTO */
.ver-evento-btn {
    background: transparent !important;
    border: 2px solid var(--neon) !important;
    color: var(--neon) !important;
    padding: 10px 20px !important;
}

.evento-card-link:hover .ver-evento-btn {
    background: var(--neon) !important;
    color: #000 !important;
}

/* Banner de éxito */
.exito-banner {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, #0a0a0a 50%, rgba(57, 255, 20, 0.05) 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.exito-icon {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.exito-texto {
    flex: 1;
}

.exito-texto h3 {
    color: var(--neon);
    font-size: 1.1rem;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exito-texto p {
    color: #666;
    margin: 0;
    font-size: 0.8rem;
}

.exito-stats {
    display: flex;
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 8px 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}

.stat-numero {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Badge de éxito en eventos pasados */
.evento-exito-badge {
    background: linear-gradient(135deg, #39ff14, #00c853) !important;
    color: #000 !important;
    font-weight: 700;
}

/* Badge de urgencia */
.evento-urgencia-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #fff !important;
    font-weight: 700;
    top: auto !important;
    bottom: 12px;
    left: 12px;
    animation: pulse-urgencia 1.5s ease-in-out infinite;
}

@keyframes pulse-urgencia {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px 3px rgba(255, 107, 53, 0.5); }
}

/* Badge 2x1 */
.evento-2x1-badge {
    background: linear-gradient(135deg, #ff6600, #ff3300) !important;
    color: #fff !important;
    font-weight: 900;
    top: auto !important;
    bottom: 50px;
    left: 12px;
    animation: pulse-2x1 2s ease-in-out infinite;
    font-size: 0.7rem !important;
}

@keyframes pulse-2x1 {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 102, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 102, 0, 0.8); }
}

.evento-exito-msg {
    margin-top: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.05));
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--neon);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

/* CTA al final de eventos pasados */
.eventos-pasados-cta {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(57, 255, 20, 0.03);
    border-radius: 10px;
    border: 1px dashed #2a2a2a;
}

.eventos-pasados-cta p {
    color: #666;
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.eventos-pasados-cta strong {
    color: var(--neon);
}

.btn-cta-proximo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--neon);
    color: var(--neon);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta-proximo:hover {
    background: var(--neon);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
}

/* Responsive para el banner */
@media (max-width: 768px) {
    .exito-banner {
        flex-direction: column;
        padding: 20px;
    }
    
    .exito-stats {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .exito-texto h3 {
        font-size: 1.1rem;
    }
    
    .stat-numero {
        font-size: 1.5rem;
    }
}

