/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #fbbf24 75%, #f59e0b 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables de colores - Azul y Amarillo */
:root {
    --azul-primario: #1e40af;
    --azul-secundario: #3b82f6;
    --azul-claro: #60a5fa;
    --amarillo-primario: #fbbf24;
    --amarillo-secundario: #f59e0b;
    --amarillo-claro: #fde047;
    --blanco: #ffffff;
    --gris-claro: #f8fafc;
    --gris-oscuro: #1f2937;
}

/* ===== ESTILOS PRINCIPALES DEL SITIO ===== */

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    color: var(--azul-primario);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--azul-primario);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--amarillo-primario);
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #fbbf24 75%, #f59e0b 100%);
    min-height: 60vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boleteria-banner {
    text-align: center;
    margin-bottom: 40px;
}

.boleteria-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.boleteria-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Evento Principal */
.evento-principal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.evento-content {
    flex: 1;
}

.evento-badge span {
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evento-titulo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--azul-primario);
    margin: 15px 0 8px 0;
    line-height: 1.2;
}

.evento-subtitulo {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--azul-secundario);
    font-weight: 600;
    margin-bottom: 20px;
}

.evento-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 10px;
}

.info-icon {
    font-size: 1.2rem;
}

.info-text {
    font-weight: 500;
    color: var(--azul-primario);
}

/* Imagen del Evento */
.evento-imagen-container {
    flex: 0 0 auto;
    max-width: 350px;
    width: 100%;
}

.evento-imagen {
    margin-bottom: 20px;
}

.imagen-portada {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.compra-principal {
    text-align: center;
}

.disponibilidad {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Botones CTA */
.cta-button {
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, var(--amarillo-secundario), #ef9e0b);
}

.btn-comprar-principal {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: white;
}

.btn-comprar-principal:hover {
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-claro));
}

/* Sección de Compra */
.compra-section {
    padding: 60px 0;
    background: var(--gris-claro);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--azul-primario);
    margin-bottom: 40px;
}

.compra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boleto-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.boleto-card:hover {
    transform: translateY(-5px);
}

.boleto-card.featured {
    border: 3px solid var(--amarillo-primario);
    transform: scale(1.02);
}

.card-header h3 {
    color: var(--azul-primario);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--azul-secundario);
    font-size: 1rem;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.precio-info {
    text-align: center;
    margin-bottom: 15px;
}

.precio-label {
    display: block;
    color: var(--gris-oscuro);
    font-size: 0.9rem;
}

.precio {
    display: block;
    color: var(--azul-primario);
    font-size: 1.8rem;
    font-weight: 900;
}

.caracteristicas {
    margin-bottom: 20px;
}

.caracteristica {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.check {
    color: #059669;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--azul-primario);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--amarillo-primario);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--amarillo-primario);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SECCIÓN PROMOCIONAL ARRIBA ===== */
.promo-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin: 0 15px;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-image {
    flex: 0 0 auto;
    max-width: 300px;
    width: 100%;
}

.promo-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.promo-text {
    flex: 1;
    text-align: center;
    min-width: 0; /* Permite que el texto se contraiga */
}

.promo-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--azul-primario);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--azul-secundario);
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--azul-primario);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.promo-offer {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--amarillo-secundario);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-btn {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-claro));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-description {
    font-size: 1.4rem;
    color: var(--azul-primario);
    margin-bottom: 10px;
    font-weight: 600;
}

.promo-offer {
    font-size: 1.2rem;
    color: var(--amarillo-secundario);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-btn {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--azul-secundario), var(--azul-claro));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== BOTÓN DE COMPRA FLOTANTE INFERIOR ===== */
.floating-buy-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    white-space: nowrap;
    max-width: 200px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.floating-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, var(--amarillo-secundario), #ef9e0b);
}

.floating-buy-btn:active {
    transform: translateY(-1px);
}

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

/* ===== ESTILOS PARA COOKIES BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 99999 !important;
    border-top: 4px solid var(--amarillo-primario);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUp 0.3s ease-out;
    max-height: 50vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text h4 {
    color: var(--amarillo-primario);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-btn.accept {
    background: var(--amarillo-primario);
    color: var(--azul-primario);
}

.cookie-btn.accept:hover {
    background: var(--amarillo-secundario);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border-color: white;
}

.cookie-btn.reject:hover {
    background: white;
    color: var(--azul-primario);
}

.cookie-btn.settings {
    background: var(--azul-primario);
    color: white;
}

.cookie-btn.settings:hover {
    background: var(--azul-secundario);
    transform: translateY(-2px);
}

/* ===== MODAL DE CONFIGURACIÓN DE COOKIES ===== */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cookie-settings-header {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-settings {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-settings:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-type {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.cookie-type-header {
    margin-bottom: 10px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--azul-primario);
}

.cookie-toggle input[type="checkbox"] {
    appearance: none;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background: var(--amarillo-primario);
}

.cookie-toggle input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
    transform: translateX(25px);
}

.required {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    margin-left: 10px;
}

.cookie-type-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-settings-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn.secondary {
    background: #6c757d;
    color: white;
}

.cookie-btn.secondary:hover {
    background: #5a6268;
}

.cookie-btn.primary {
    background: var(--azul-primario);
    color: white;
}

.cookie-btn.primary:hover {
    background: var(--azul-secundario);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--amarillo-primario);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: var(--amarillo-primario);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navegación */
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--azul-primario);
    background: var(--amarillo-primario);
    border-color: var(--amarillo-secundario);
    transform: translateY(-2px);
}

/* Sección Hero */
.hero-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--azul-primario) 0%, 
        var(--azul-secundario) 40%, 
        var(--amarillo-primario) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Layout para computador */
@media (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .boleteria-banner {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .evento-principal {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .evento-content {
        display: flex;
        flex-direction: column;
    }
    
    .evento-imagen-container {
        display: flex;
        flex-direction: column;
    }
}

/* Banner de la boletería */
.boleteria-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.boleteria-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--amarillo-primario);
    font-family: 'Fredoka', sans-serif;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), 0 0 20px var(--amarillo-primario); 
    }
    to { 
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), 0 0 40px var(--amarillo-primario), 0 0 60px var(--amarillo-primario); 
    }
}

.boleteria-subtitle {
    font-size: 1.5rem;
    color: var(--blanco);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Evento principal */
.evento-principal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--amarillo-primario);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.evento-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--azul-primario), var(--amarillo-primario));
}

/* Contenido del evento */
.evento-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contenedor de imagen */
.evento-imagen-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Layout para computador */
@media (min-width: 769px) {
    .evento-principal {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .evento-content {
        padding-right: 1rem;
    }
    
    .evento-info {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .info-item {
        justify-content: flex-start;
    }
}

.evento-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.evento-badge span {
    display: inline-block;
    background: linear-gradient(45deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    border: 3px solid var(--azul-primario);
}

.evento-header {
    text-align: center;
    margin-bottom: 2rem;
}

.evento-titulo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--azul-primario);
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.evento-subtitulo {
    font-size: 1.8rem;
    color: var(--amarillo-secundario);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Imagen principal */
.evento-imagen {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--amarillo-primario);
}

.imagen-portada {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.evento-imagen:hover .imagen-portada {
    transform: scale(1.02);
}

/* Sección de compra principal debajo de la imagen */
.compra-principal {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    border: 3px solid var(--azul-primario);
}

.disponibilidad {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--azul-primario);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botones CTA */
.cta-button {
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    border: 3px solid transparent;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
    border-color: var(--azul-primario);
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: var(--amarillo-primario);
}

.btn-comprar-principal {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

/* Información del evento */
.evento-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--amarillo-primario);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--azul-primario);
}

.info-icon {
    font-size: 1.5rem;
}

.info-text {
    font-weight: 600;
    color: var(--azul-primario);
}

/* Sección de Compra */
.compra-section {
    padding: 80px 0;
    background: var(--gris-claro);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--azul-primario);
    margin-bottom: 3rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.compra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Tarjeta de boleto */
.boleto-card {
    background: var(--blanco);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--amarillo-primario);
    transition: transform 0.3s ease;
}

.boleto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.boleto-card.featured {
    border-color: var(--azul-primario);
    border-width: 4px;
}

.card-header {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: var(--blanco);
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-info {
    padding: 2rem;
}

.precio-info {
    text-align: center;
    margin-bottom: 2rem;
}

.precio-label {
    display: block;
    color: var(--gris-oscuro);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.precio {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--azul-primario);
    font-family: 'Fredoka', sans-serif;
}

.caracteristicas {
    margin-bottom: 2rem;
}

.caracteristica {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.check {
    color: var(--amarillo-secundario);
    font-size: 1.2rem;
}

.btn-comprar-card {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.3rem;
}

/* Información de compra */
.info-compra {
    background: var(--blanco);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--azul-primario);
}

.info-compra h3 {
    color: var(--azul-primario);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Fredoka', sans-serif;
}

.ventajas {
    margin-bottom: 2rem;
}

.ventaja {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--amarillo-primario);
}

.ventaja-icon {
    font-size: 2rem;
    min-width: 50px;
}

.ventaja-content h4 {
    color: var(--azul-primario);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ventaja-content p {
    color: var(--gris-oscuro);
    font-size: 0.95rem;
}

.proceso-compra h4 {
    color: var(--azul-primario);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pasos {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.paso {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 15px;
}

.paso-numero {
    background: var(--amarillo-primario);
    color: var(--azul-primario);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.paso-texto {
    font-weight: 500;
    color: var(--azul-primario);
}

/* Sección de Contacto */
.contacto-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-secundario));
    color: var(--blanco);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contacto-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--amarillo-primario);
    font-family: 'Fredoka', sans-serif;
}

.contacto-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contacto-icon {
    font-size: 1.5rem;
}

/* Botón WhatsApp mega */
.btn-whatsapp-mega {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--amarillo-primario), var(--amarillo-secundario));
    color: var(--azul-primario);
    padding: 2rem 3rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    border: 3px solid transparent;
    font-family: inherit;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp-mega:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.6);
    border-color: var(--blanco);
}

.btn-icon {
    font-size: 3rem;
    animation: bounce 1s ease-in-out infinite;
}

.btn-content {
    text-align: left;
}

.btn-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.btn-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--gris-oscuro);
    color: var(--blanco);
    padding: 3rem 0 1rem;
    border-top: 4px solid var(--amarillo-primario);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--amarillo-primario);
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== ENLACES DEL FOOTER ===== */
.footer-link {
    display: block;
    color: var(--blanco);
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-link:hover {
    color: var(--amarillo-primario);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    opacity: 0.8;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Responsive Design Mejorado */

/* Tabletas y pantallas medianas */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .boleteria-title {
        font-size: 3rem;
    }
    
    .evento-titulo {
        font-size: 2.5rem;
    }
    
    .compra-grid,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== MEDIA QUERIES PARA TABLETS ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .promo-banner {
        padding: 25px 20px;
        margin: 0 20px;
    }
    
    .promo-content {
        gap: 25px;
    }
    
    .promo-image {
        max-width: 250px;
    }
    
    .floating-buy-btn {
        bottom: 70px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ===== MEDIA QUERIES PARA MÓVILES ===== */
@media (max-width: 768px) {
    /* ===== HEADER EN MÓVILES ===== */
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .nav {
        display: none;
    }
    
    /* ===== HERO SECTION EN MÓVILES ===== */
    .hero-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .boleteria-banner {
        margin-bottom: 30px;
    }
    
    /* ===== EVENTO PRINCIPAL EN MÓVILES ===== */
    .evento-principal {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .evento-content {
        text-align: center;
        order: 2;
    }
    
    .evento-imagen-container {
        order: 1;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
    
    .imagen-portada {
        max-height: 250px;
    }
    
    .evento-info {
        align-items: center;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        max-width: 250px;
    }
    
    /* ===== BOTONES EN MÓVILES ===== */
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* ===== SECCIÓN DE COMPRA EN MÓVILES ===== */
    .compra-section {
        padding: 40px 0;
    }
    
    .compra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .boleto-card {
        padding: 20px;
    }
    
    .boleto-card.featured {
        transform: none;
    }
    
    .card-image img {
        height: 180px;
    }
    
    /* ===== FOOTER EN MÓVILES ===== */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        text-align: center;
    }
    
    /* ===== SECCIÓN PROMOCIONAL EN MÓVILES ===== */
    .promo-section {
        padding: 10px 0;
    }
    
    .promo-banner {
        padding: 15px 10px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .promo-image {
        order: 1;
        max-width: 320px;
        width: 95%;
        margin: 0 auto;
    }
    
    .promo-img {
        max-height: 280px;
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .promo-text {
        order: 2;
        width: 100%;
    }
    
    .promo-btn {
        padding: 12px 20px;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* ===== BOTÓN FLOTANTE EN MÓVILES ===== */
    .floating-buy-btn {
        bottom: 85px;
        right: 10px;
        left: 10px;
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 25px;
        max-width: none;
    }
    
    /* ===== COOKIES BANNER EN MÓVILES ===== */
    .cookie-banner {
        bottom: 0 !important;
        position: fixed !important;
        z-index: 99999 !important;
        max-height: 60vh;
    }
        bottom: 0 !important;
        position: fixed !important;
        z-index: 99999 !important;
        max-height: 60vh;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero-section {
        padding: 100px 15px 40px;
    }
    
    .boleteria-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .boleteria-subtitle {
        font-size: 1.2rem;
    }
    
    .evento-principal {
        padding: 1.5rem;
    }
    
    .evento-titulo {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .evento-subtitulo {
        font-size: 1.4rem;
    }
    
    .evento-badge span {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .compra-principal {
        padding: 1.5rem;
    }
    
    .disponibilidad {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .btn-comprar-principal {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
    }
    
    .evento-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .boleto-card {
        margin-bottom: 2rem;
    }
    
    .info-compra {
        padding: 2rem;
    }
    
    .ventaja {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .ventaja-icon {
        font-size: 2.5rem;
    }
    
    .btn-whatsapp-mega {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }
    
    .btn-icon {
        font-size: 2.5rem;
    }
    
    .btn-title {
        font-size: 1.5rem;
    }
    
    .contacto-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* ===== RESPONSIVE COOKIES BANNER ===== */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .cookie-settings-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-settings-header {
        padding: 15px;
    }
    
    .cookie-settings-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-settings-body {
        padding: 20px;
    }
    
    .cookie-type {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .cookie-toggle {
        gap: 10px;
    }
    
    .cookie-toggle input[type="checkbox"] {
        width: 40px;
        height: 20px;
    }
    
    .cookie-toggle input[type="checkbox"]::before {
        width: 16px;
        height: 16px;
    }
    
    .cookie-toggle input[type="checkbox"]:checked::before {
        transform: translateX(20px);
    }
    
    .cookie-settings-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn.secondary,
    .cookie-btn.primary {
        width: 100%;
        padding: 12px;
    }
}

/* ===== MÓVILES PEQUEÑOS ===== */
@media (max-width: 480px) {
    /* ===== HEADER EN MÓVILES PEQUEÑOS ===== */
    .logo h1 {
        font-size: 1.2rem;
    }
    
    /* ===== HERO SECTION EN MÓVILES PEQUEÑOS ===== */
    .hero-container {
        padding: 0 10px;
    }
    
    .boleteria-banner {
        margin-bottom: 20px;
    }
    
    /* ===== EVENTO PRINCIPAL EN MÓVILES PEQUEÑOS ===== */
    .evento-principal {
        padding: 15px 10px;
        margin: 0 5px;
    }
    
    .evento-imagen-container {
        max-width: 260px;
    }
    
    .imagen-portada {
        max-height: 200px;
    }
    
    .info-item {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    /* ===== BOTONES EN MÓVILES PEQUEÑOS ===== */
    .cta-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* ===== COMPRA SECTION EN MÓVILES PEQUEÑOS ===== */
    .compra-grid {
        padding: 0 10px;
    }
    
    .boleto-card {
        padding: 15px;
    }
    
    .card-image img {
        height: 160px;
    }
    
    /* ===== SECCIÓN PROMOCIONAL EN MÓVILES PEQUEÑOS ===== */
    .promo-section {
        padding: 8px 0;
    }
    
    .promo-banner {
        padding: 12px 8px;
        margin: 0 3px;
        border-radius: 12px;
    }
    
    .promo-content {
        gap: 12px;
    }
    
    .promo-image {
        max-width: 300px;
        width: 98%;
    }
    
    .promo-img {
        max-height: 220px;
        border-radius: 12px;
    }
    
    .promo-btn {
        padding: 10px 15px;
        width: 95%;
        font-size: 0.85rem;
    }
    
    /* ===== BOTÓN FLOTANTE EN MÓVILES PEQUEÑOS ===== */
    .floating-buy-btn {
        bottom: 75px;
        right: 8px;
        left: 8px;
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    /* ===== COOKIES BANNER EN MÓVILES PEQUEÑOS ===== */
    .cookie-banner {
        bottom: 0 !important;
        position: fixed !important;
        z-index: 99999 !important;
        max-height: 65vh;
    }
    
    .cookie-content {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* ===== MÓVILES EXTRA PEQUEÑOS ===== */
@media (max-width: 360px) {
    /* ===== EVENTO PRINCIPAL EN MÓVILES EXTRA PEQUEÑOS ===== */
    .evento-principal {
        padding: 12px 8px;
        margin: 0 3px;
    }
    
    .evento-imagen-container {
        max-width: 240px;
    }
    
    .imagen-portada {
        max-height: 180px;
    }
    
    .info-item {
        padding: 5px 8px;
        font-size: 0.85rem;
    }
    
    /* ===== BOTONES EN MÓVILES EXTRA PEQUEÑOS ===== */
    .cta-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    /* ===== COMPRA SECTION EN MÓVILES EXTRA PEQUEÑOS ===== */
    .compra-grid {
        padding: 0 5px;
    }
    
    .boleto-card {
        padding: 12px;
    }
    
    .card-image img {
        height: 140px;
    }
    
    /* ===== SECCIÓN PROMOCIONAL EN MÓVILES EXTRA PEQUEÑOS ===== */
    .promo-banner {
        padding: 10px 5px;
        margin: 0 2px;
    }
    
    .promo-image {
        max-width: 280px;
        width: 100%;
    }
    
    .promo-img {
        max-height: 200px;
    }
    
    /* ===== BOTÓN FLOTANTE EN MÓVILES EXTRA PEQUEÑOS ===== */
    .floating-buy-btn {
        bottom: 70px;
        right: 5px;
        left: 5px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    /* ===== COOKIES EN MÓVILES EXTRA PEQUEÑOS ===== */
    .cookie-content {
        padding: 8px;
    }
    
    .cookie-text h4 {
        font-size: 0.9rem;
    }
    
    .cookie-text p {
        font-size: 0.75rem;
    }
}
    
    .cookie-content {
        padding: 12px;
        gap: 12px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: none;
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .boleteria-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .boleteria-subtitle {
        font-size: 1rem;
    }
    
    .evento-titulo {
        font-size: 1.6rem;
    }
    
    .evento-subtitulo {
        font-size: 1.2rem;
    }
    
    .evento-principal {
        padding: 1rem;
    }
    
    .compra-principal {
        padding: 1rem;
    }
    
    .disponibilidad {
        font-size: 1rem;
    }
    
    .btn-comprar-principal {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .info-icon {
        font-size: 1.2rem;
    }
    
    .boleto-card {
        border-width: 2px;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-info {
        padding: 1.5rem;
    }
    
    .info-compra {
        padding: 1.5rem;
    }
    
    .ventaja {
        padding: 0.8rem;
    }
    
    .btn-whatsapp-mega {
        padding: 1.2rem 1.5rem;
    }
    
    .btn-title {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* ===== COOKIES EN MÓVILES PEQUEÑOS ===== */
    .cookie-banner {
        bottom: 0;
    }
    
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Pantallas muy grandes */
@media (min-width: 1200px) {
    .hero-container {
        max-width: 1400px;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .boleteria-title {
        font-size: 5rem;
    }
    
    .evento-titulo {
        font-size: 3.5rem;
    }
    
    .evento-subtitulo {
        font-size: 2rem;
    }
}