/* --- ESTA PARTE ES TUYA, TAL CUAL LA TENÍAS --- */
:root { --header-height: 100px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #000; color: #fff; font-family: 'Orbitron', sans-serif; padding-top: var(--header-height); }

.navbar { position: fixed; top: 0; width: 100%; height: var(--header-height); display: flex; justify-content: space-between; align-items: center; padding: 0 80px; background: rgba(0, 0, 0, 0.95); z-index: 1000; }
.logo img { width: 200px; }
.menu a { color: white; text-decoration: none; margin: 0 20px; font-weight: bold; font-size: 14px; }
.btn-comprar-top { background-color: #05e702; color: #000; border: none; padding: 12px 25px; border-radius: 5px; font-weight: bold; cursor: pointer; }

/* HERO */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 40px 80px; min-height: calc(100vh - var(--header-height)); }
.hero-content { flex: 1; padding-right: 0px; }
.hero-logo-principal img { width: 300px; margin: 20px 0; }
.hero-image { flex: 1; display: flex; justify-content: flex-end; }
.hero-image img { max-width: 100%; }

.contador-container { border: 2px solid #05e702; padding: 20px; border-radius: 15px; display: inline-block; margin-bottom: 20px; }
#contador { display: flex; gap: 20px; }
.tiempo-box { text-align: center; }
.tiempo-box span { font-size: 32px; font-weight: bold; color: #05e702; }

.sub-title { font-size: 24px; margin-bottom: 10px; }
.lugar { font-size: 40px; font-weight: bold; margin-bottom: 20px; }
.descripcion { font-size: 16px; margin-bottom: 30px; line-height: 1.6; max-width: 450px; }
.acciones { display: flex; gap: 20px; }
.btn-main-comprar { background-color: #05e702; color: #000; padding: 15px 30px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }
.btn-main-ver { background: transparent; color: #fff; padding: 15px 30px; border: 1px solid #fff; border-radius: 5px; cursor: pointer; }

.hero-image { position: relative; view-timeline-name: --hero-parallax; view-timeline-axis: block; }
.hero-image img { animation: parallax-anim linear both; animation-timeline: --hero-parallax; animation-range: entry 0% cover 60%; }
@keyframes parallax-anim { from { transform: translateY(0); } to { transform: translateY(-100px); } }

/* --- SECCIÓN EXPERIENCIA --- */
.seccion-experiencia { 
    padding: 100px 80px; 
    text-align: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.seccion-experiencia .fondo-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('img/fondo1.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    will-change: transform;
    transform: translateY(0%);
}

.seccion-experiencia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.seccion-experiencia * {
    position: relative;
    z-index: 1;
}

.seccion-inferior { padding-top: 50px; padding-bottom: 50px; }

/* VIDEO WRAPPER */
.video-wrapper {
    border: 2px solid #05e702;
    border-radius: 40px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 60px;
}

.video-contenido {
    display: flex;
    align-items: center;
    gap: 40px;
}

.video-preview {
    flex: 1;
    max-width: 50%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-text {
    flex: 1;
    max-width: 50%;
}

.small-title {
    color: #05e702;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.question {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

.btn-ver {
    background: transparent;
    border: 2px solid #05e702;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-ver:hover {
    background: #05e702;
    color: #000;
}

/* INFO COLUMNS */
.info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(5, 231, 2, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 231, 2, 0.1);
    border-radius: 50%;
    border: 1px solid #05e702;
    flex-shrink: 0;
}

.info-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: #05e702;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.info-value {
    font-size: 15px;
    color: #fff;
    font-weight: bold;
}

/* GRID ATRACCIONES */
.grid-atracciones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 30px 0; }
.tarjeta { background: rgba(0, 0, 0, 0.8); border: 2px solid #05e702; border-radius: 25px; padding: 10px; text-align: center; transition: transform 0.3s ease; }
.tarjeta img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
.tarjeta h4 { color: #05e702; font-size: 16px; margin-bottom: 8px; text-transform: uppercase; }
.tarjeta p { font-size: 12px; color: #fff; line-height: 1.4; padding: 0 10px 15px; }
.tarjeta:hover { transform: translateY(-10px); box-shadow: 0 0 15px rgba(5, 231, 2, 0.3); }

.btn-descubre { 
    background: transparent; border: 2px solid #05e702; color: #fff; 
    padding: 15px 40px; border-radius: 5px; cursor: pointer; margin-bottom: 50px;
}

/* --- SECCIÓN FINAL --- */
.seccion-final {
    padding: 80px 80px;
    background: url('img/final.jpg') no-repeat center center/cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.seccion-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.contenedor-boletos {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    border: 2px solid #05e702;
    border-radius: 40px;
    padding: 50px 60px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: visible;
    min-height: 320px;
}

.texto-boletos {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.texto-boletos h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.texto-boletos p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 400px;
    color: #fff;
}

.btn-comprar-final {
    background: #05e702;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.btn-comprar-final:hover {
    transform: scale(1.05);
}

.imagen-boletos {
    flex: 0 0 50%;
    max-width: 500px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -100px;
    margin-top: -50px;
    margin-bottom: -50px;
}

.imagen-boletos img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(5, 231, 2, 0.3));
    transform: rotate(-5deg);
}

.redes-sociales {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 50px;
    z-index: 10;
}

.redes-sociales img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

/* --- SECCIÓN INVASIÓN --- */
.seccion-invasion {
    padding: 100px 80px;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.seccion-invasion .fondo-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('img/invasion.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    will-change: transform;
}

.invasion-contenido {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 50%;
    margin-right: auto;
    margin-left: 0;
}

.invasion-texto h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.invasion-texto p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- SECCIÓN CARACTERÍSTICAS --- */
.seccion-caracteristicas {
    padding: 60px 80px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(5, 231, 2, 0.3);
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.caracteristica-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.caracteristica-item:hover {
    transform: translateY(-5px);
}

.caracteristica-icono {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 231, 2, 0.1);
    border-radius: 50%;
    border: 2px solid #05e702;
    transition: all 0.3s ease;
}

.caracteristica-item:hover .caracteristica-icono {
    background: rgba(5, 231, 2, 0.2);
    box-shadow: 0 0 20px rgba(5, 231, 2, 0.3);
}

.caracteristica-icono img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.caracteristica-item h4 {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* --- SECCIÓN EXPERIENCIAS --- */
.seccion-experiencias {
    padding: 80px 80px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url('img/fondo3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seccion-experiencias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.experiencias-contenedor {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    border: 2px solid #05e702;
    border-radius: 40px;
    padding: 50px 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(5, 231, 2, 0.2), inset 0 0 30px rgba(5, 231, 2, 0.05);
}

.experiencias-titulo {
    color: #fff;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(5, 231, 2, 0.3);
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.experiencia-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    border: 2px solid rgba(5, 231, 2, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.experiencia-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #05e702;
    box-shadow: 0 20px 50px rgba(5, 231, 2, 0.3), 0 0 40px rgba(5, 231, 2, 0.2);
}

.experiencia-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.experiencia-card:hover img {
    transform: scale(1.1);
}

.experiencia-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: #fff;
}

.experiencia-tag {
    display: inline-block;
    background: #05e702;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    box-shadow: 0 0 20px rgba(5, 231, 2, 0.4);
}

.experiencia-overlay h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.experiencias-boton {
    text-align: center;
}

.btn-ver-todas {
    background: transparent;
    border: 2px solid #05e702;
    color: #fff;
    padding: 15px 45px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(5, 231, 2, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 231, 2, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-ver-todas:hover::before {
    left: 100%;
}

.btn-ver-todas:hover {
    background: #05e702;
    color: #000;
    box-shadow: 0 0 40px rgba(5, 231, 2, 0.4), inset 0 0 20px rgba(5, 231, 2, 0.2);
    transform: scale(1.05);
}

/* --- SECCIÓN PRECIOS --- */
.seccion-precios {
    padding: 80px 80px;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.precios-contenedor {
    max-width: 1200px;
    width: 100%;
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.precio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(5, 231, 2, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.precio-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, #05e702, transparent, #05e702, transparent);
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.precio-item:hover::before { opacity: 1; }
.precio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(5, 231, 2, 0.3), 0 0 40px rgba(5, 231, 2, 0.15), inset 0 0 30px rgba(5, 231, 2, 0.05);
    border-color: #05e702;
    background: rgba(5, 231, 2, 0.05);
}

.precio-item img {
    width: 90%;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(5, 231, 2, 0.1));
    transition: all 0.4s ease;
}

.precio-item:hover img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 40px rgba(5, 231, 2, 0.3));
}

.precio-item h3 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.precio {
    color: #05e702;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(5, 231, 2, 0.3);
    transition: all 0.4s ease;
}

.precio-item:hover .precio {
    text-shadow: 0 0 50px rgba(5, 231, 2, 0.5);
    transform: scale(1.1);
}

/* --- SECCIÓN PROMOCIONES --- */
.seccion-promociones {
    padding: 80px 80px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.promociones-contenedor {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    border: 2px solid #05e702;
    border-radius: 40px;
    padding: 50px 60px;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 0 30px rgba(5, 231, 2, 0.2), inset 0 0 30px rgba(5, 231, 2, 0.05);
}

.promociones-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.promociones-imagen {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('img/Web-22.png') no-repeat center center;
    background-size: cover;
    border-radius: 0 40px 40px 0;
    z-index: 0;
}

.promociones-imagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    border-radius: 0 40px 40px 0;
}

.promociones-texto {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.promociones-texto h2 {
    color: #05e702;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(5, 231, 2, 0.2);
}

.promocion-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(5, 231, 2, 0.15);
    transition: all 0.3s ease;
}

.promocion-item:hover {
    padding-left: 15px;
    border-bottom-color: rgba(5, 231, 2, 0.4);
}

.promocion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.promocion-dia {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.boleto-imagen {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(5, 231, 2, 0.2));
    transition: all 0.4s ease;
    flex-shrink: 0;
    border-radius: 8px;
}

.promocion-item:hover .boleto-imagen {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 30px rgba(5, 231, 2, 0.4));
}

.promocion-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dia-semana {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.dia-badge {
    display: inline-block;
    background: rgba(5, 231, 2, 0.15);
    color: #05e702;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 15px;
    border-radius: 20px;
    border: 1px solid rgba(5, 231, 2, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dia-horario {
    color: #05e702;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.promocion-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 100px;
}

/* --- SCROLL EFFECTS --- */
html { scroll-behavior: smooth; }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #05e702, #aeff00);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(5, 231, 2, 0.5);
}

.navbar { transition: transform 0.3s ease; }
.fondo-parallax { will-change: transform; transition: transform 0.1s ease; }

/* --- MODAL DE VIDEO --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active { display: flex; }

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 20px;
    border: 2px solid #05e702;
    box-shadow: 0 0 60px rgba(5, 231, 2, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: #05e702;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    box-shadow: 0 0 20px rgba(5, 231, 2, 0.3);
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 40px rgba(5, 231, 2, 0.5);
}

.modal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================ */
/* ========== RESPONSIVE ========== */
/* ============================================ */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .navbar { padding: 0 40px; }
    .hero { padding: 30px 40px; }
    .seccion-experiencia { padding: 80px 40px; }
    .seccion-final { padding: 60px 40px; }
    .seccion-invasion { padding: 80px 40px; }
    .seccion-caracteristicas { padding: 50px 40px; }
    .seccion-experiencias { padding: 60px 40px; }
    .seccion-precios { padding: 60px 40px; }
    .seccion-promociones { padding: 60px 40px; }
    
    .contenedor-boletos { padding: 40px 40px; }
    .imagen-boletos { margin-right: -60px; }
    .experiencias-contenedor { padding: 40px 30px; }
    .promociones-contenedor { padding: 40px 40px; }
}

/* TABLET PEQUEÑA (768px) */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; flex-wrap: wrap; height: auto; min-height: var(--header-height); }
    .logo img { width: 150px; }
    .menu a { margin: 0 10px; font-size: 12px; }
    .btn-comprar-top { padding: 8px 15px; font-size: 12px; }
    
    .hero { flex-direction: column; padding: 20px 20px; text-align: center; }
    .hero-content { padding-right: 0; }
    .hero-logo-principal img { width: 200px; }
    .hero-image { justify-content: center; margin-top: 30px; }
    .hero-image img { max-width: 80%; }
    .descripcion { max-width: 100%; }
    .acciones { justify-content: center; flex-wrap: wrap; }
    
    .contador-container { display: inline-block; }
    #contador { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .tiempo-box span { font-size: 24px; }
    
    .sub-title { font-size: 20px; }
    .lugar { font-size: 28px; }
    
    .seccion-experiencia { padding: 60px 20px; }
    .seccion-final { padding: 40px 20px; }
    .seccion-invasion { padding: 60px 20px; }
    .seccion-caracteristicas { padding: 40px 20px; }
    .seccion-experiencias { padding: 40px 20px; }
    .seccion-precios { padding: 40px 20px; }
    .seccion-promociones { padding: 40px 20px; }
    
    .video-contenido { flex-direction: column; gap: 20px; }
    .video-preview { max-width: 100%; width: 100%; }
    .video-text { max-width: 100%; width: 100%; text-align: center; }
    .video-text h2 { font-size: 24px; }
    .video-wrapper { padding: 20px; border-radius: 25px; }
    
    .info-columns { grid-template-columns: 1fr; gap: 15px; padding: 15px 20px; }
    .info-item { justify-content: center; }
    .info-value { font-size: 14px; }
    
    .grid-atracciones { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tarjeta img { height: 180px; }
    
    .contenedor-boletos { flex-direction: column; padding: 30px 25px; text-align: center; }
    .texto-boletos h2 { font-size: 24px; }
    .texto-boletos p { max-width: 100%; }
    .btn-comprar-final { align-self: center; }
    .imagen-boletos { 
        position: relative; 
        margin: 20px 0 0; 
        max-width: 80%; 
        flex: 0 0 auto;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .invasion-contenido { width: 100%; text-align: center; margin: 0; }
    .invasion-texto h2 { font-size: 28px; }
    .invasion-texto p { font-size: 14px; }
    
    .caracteristicas-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .caracteristica-icono { width: 60px; height: 60px; }
    .caracteristica-icono img { width: 30px; height: 30px; }
    .caracteristica-item h4 { font-size: 12px; }
    
    .experiencias-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .experiencias-contenedor { padding: 30px 20px; border-radius: 25px; }
    .experiencias-titulo { font-size: 24px; }
    .experiencia-overlay h3 { font-size: 20px; }
    .btn-ver-todas { padding: 12px 25px; font-size: 12px; }
    
    .precios-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .precio-item { padding: 20px 15px; }
    .precio-item h3 { font-size: 13px; }
    .precio { font-size: 32px; }
    .precio-item img { width: 80px; height: 80px; }
    
    .promociones-contenedor { flex-direction: column; padding: 30px 25px; border-radius: 25px; }
    .promociones-texto { padding-right: 0; width: 100%; }
    .promociones-texto h2 { font-size: 30px; text-align: center; }
    .promociones-imagen { 
        position: relative; 
        width: 100%; 
        height: 200px; 
        border-radius: 15px; 
        margin-top: 25px; 
        order: -1; 
    }
    .promociones-imagen::before { border-radius: 15px; background: rgba(0, 0, 0, 0.4); }
    .boleto-imagen { width: 120px; }
    .dia-semana { font-size: 22px; }
    .promocion-desc { padding-left: 0; text-align: center; }
    .promocion-dia { justify-content: center; }
    .promocion-info { justify-content: center; }
    
    .redes-sociales { gap: 20px; padding-top: 30px; }
    .redes-sociales img { width: 45px; height: 45px; }
    
    .btn-descubre { padding: 12px 25px; font-size: 12px; margin-bottom: 30px; }
    .btn-main-comprar, .btn-main-ver { padding: 12px 20px; font-size: 13px; }
    
    .modal-content { width: 98%; border-radius: 15px; }
    .modal-close { top: -12px; right: -12px; width: 38px; height: 38px; font-size: 22px; }
}

/* MÓVIL (480px) */
@media (max-width: 480px) {
    .navbar { padding: 0 15px; flex-direction: column; height: auto; padding: 10px 15px; }
    .logo img { width: 120px; }
    .menu { display: flex; flex-wrap: wrap; justify-content: center; margin: 5px 0; }
    .menu a { margin: 0 8px; font-size: 10px; }
    .btn-comprar-top { padding: 6px 12px; font-size: 10px; margin-top: 5px; }
    
    .hero { padding: 15px 15px; }
    .hero-logo-principal img { width: 150px; }
    .hero-image img { max-width: 100%; }
    .sub-title { font-size: 16px; }
    .lugar { font-size: 22px; }
    .descripcion { font-size: 13px; }
    .acciones { gap: 10px; }
    .btn-main-comprar, .btn-main-ver { padding: 10px 15px; font-size: 11px; }
    
    .contador-container { padding: 15px; }
    .tiempo-box span { font-size: 18px; }
    .tiempo-box small { font-size: 10px; }
    #contador { gap: 8px; }
    
    .seccion-experiencia { padding: 40px 15px; }
    .seccion-final { padding: 30px 15px; }
    .seccion-invasion { padding: 40px 15px; }
    .seccion-caracteristicas { padding: 30px 15px; }
    .seccion-experiencias { padding: 30px 15px; }
    .seccion-precios { padding: 30px 15px; }
    .seccion-promociones { padding: 30px 15px; }
    
    .video-wrapper { padding: 15px; border-radius: 20px; margin-bottom: 30px; }
    .video-text h2 { font-size: 20px; }
    .question { font-size: 15px; }
    .btn-ver { padding: 10px 20px; font-size: 12px; }
    .small-title { font-size: 11px; }
    
    .grid-atracciones { grid-template-columns: 1fr; gap: 15px; }
    .tarjeta img { height: 200px; }
    .tarjeta h4 { font-size: 14px; }
    
    .contenedor-boletos { padding: 20px 15px; border-radius: 25px; }
    .texto-boletos h2 { font-size: 20px; }
    .texto-boletos p { font-size: 13px; }
    .btn-comprar-final { padding: 12px 20px; font-size: 13px; }
    .imagen-boletos { max-width: 90%; }
    
    .invasion-texto h2 { font-size: 22px; }
    .invasion-texto p { font-size: 13px; }
    
    .caracteristicas-grid { grid-template-columns: 1fr; gap: 15px; }
    .caracteristica-icono { width: 50px; height: 50px; }
    .caracteristica-icono img { width: 25px; height: 25px; }
    .caracteristica-item h4 { font-size: 11px; }
    
    .experiencias-grid { grid-template-columns: 1fr; gap: 15px; }
    .experiencias-contenedor { padding: 20px 15px; border-radius: 20px; }
    .experiencias-titulo { font-size: 20px; }
    .experiencia-overlay h3 { font-size: 18px; }
    .experiencia-tag { font-size: 10px; padding: 3px 12px; }
    .btn-ver-todas { padding: 10px 20px; font-size: 10px; letter-spacing: 1px; }
    
    .precios-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .precio-item { padding: 15px 10px; }
    .precio-item img { width: 60px; height: 60px; margin-bottom: 10px; }
    .precio-item h3 { font-size: 11px; letter-spacing: 1px; }
    .precio { font-size: 26px; }
    
    .promociones-contenedor { padding: 20px 15px; border-radius: 20px; }
    .promociones-texto h2 { font-size: 24px; }
    .boleto-imagen { width: 80px; }
    .dia-semana { font-size: 18px; }
    .dia-badge { font-size: 9px; padding: 3px 10px; }
    .dia-horario { font-size: 10px; }
    .promocion-desc { font-size: 12px; }
    .promocion-item { margin-bottom: 20px; padding-bottom: 15px; }
    .promociones-imagen { height: 120px; }
    
    .redes-sociales { gap: 15px; padding-top: 20px; }
    .redes-sociales img { width: 35px; height: 35px; }
    
    .btn-descubre { padding: 10px 20px; font-size: 10px; margin-bottom: 20px; }
    
    .modal { padding: 10px; }
    .modal-content { border-radius: 12px; }
    .modal-close { top: -10px; right: -10px; width: 32px; height: 32px; font-size: 18px; }
}

/* MÓVIL MUY PEQUEÑA (360px) */
@media (max-width: 360px) {
    .menu a { margin: 0 5px; font-size: 9px; }
    .btn-comprar-top { padding: 5px 10px; font-size: 9px; }
    .hero-logo-principal img { width: 120px; }
    .lugar { font-size: 18px; }
    .tiempo-box span { font-size: 16px; }
    #contador { gap: 5px; }
    .precios-grid { grid-template-columns: 1fr; gap: 12px; }
    .boleto-imagen { width: 60px; }
    .dia-semana { font-size: 16px; }
    .contenedor-boletos { padding: 15px 10px; }
    .imagen-boletos { max-width: 100%; }
}

/* --- BOTÓN FLOTANTE PARA MÓVIL --- */
/* --- BOTÓN FLOTANTE CON ANIMACIÓN --- */
.btn-flotante {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #05e702, #05e702);
    color: #000;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 0 40px rgba(5, 231, 2, 0.5);
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    width: auto;
    min-width: 220px;
    text-align: center;
    animation: flotar 2s ease-in-out infinite;
}

@keyframes flotar {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.btn-flotante:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 60px rgba(5, 231, 2, 0.7);
}

.btn-flotante:active {
    transform: translateX(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .btn-comprar-top {
        display: none !important;
    }
    .btn-flotante {
        display: block;
    }
}

@media (max-width: 480px) {
    .btn-flotante {
        padding: 14px 25px;
        font-size: 12px;
        min-width: 180px;
        bottom: 15px;
    }
}