/* Font face */
@font-face {
    font-family: 'Josefin';
    src: url('../font/JosefinSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700; /* Rango de pesos soportados */
    font-style: normal; /* Estilo normal */
}

@font-face {
    font-family: 'Josefin';
    src: url('../font/JosefinSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700; /* Rango de pesos soportados */
    font-style: italic; /* Estilo en cursiva */
}

:root {
    --vh: 1vh; /* Valor inicial por defecto */
}

/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Josefin;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    height: calc(var(--vh) * 100); /* Altura dinámica del viewport */
}
/* Contenedor de video */
#videoContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh) * 100);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:2;
}
/* Estilos del video de la cámara */
#camera {
    position: absolute;
    width: 100vw;
    height: calc(var(--vh) * 100);
    object-fit: cover;
    z-index: -1; /* Aparece detrás del canvas */
}

#pageContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh) * 100);
    z-index: 9;
}

.page{
    width: 100vw;
    height: calc(var(--vh) * 100);
    position:absolute;
    top:0;
    left:0;
}

.loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh)* 100);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: #000;
    font-size: calc(var(--vh)* 6);
    opacity: 0.4;
}

.back{
    font-family: Josefin;
    position: absolute;
    top: 4vh;
    left: 3vh;
    z-index: 10;
    background: linear-gradient(to right,
    #cbddee 0%,
    #edf2fa 50%,
    #f4edfd 100%);
    padding: .7vh 1vh;
    border-radius: 5px;
    color: #253050;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cameraLegal {
    background-color: rgba(7, 16, 40, 0.95); /* azul muy oscuro casi negro */
    backdrop-filter: none;                   /* quito blur aquí, no hace falta */
    -webkit-backdrop-filter: none;
}

.content_legal{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.2);
    justify-content: center;
    align-items: center;
    z-index:9;
    display:none;
}

.content_legal .legal{
    width: 80%;
    height: auto;
    color: #253050;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 7%;
    border-radius: 15px;
}

.content_legal .btn.left{
    margin-right: 8%;
}

.content_legal .btn{
    font-family: Josefin;
    color: #253050;
    padding: 3%;
    border-radius: 5px;
    background: linear-gradient(to right,
    #cbddee 0%,
    #edf2fa 50%,
    #f4edfd 100%);
    width: 40%;
    float: left;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content_brand_menu{
    position: absolute;
    width: 44%;
    height: calc(var(--vh) * 5);
    top: calc(var(--vh) * -5);
    left: 50%;
    margin-left: -22%;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.content_brand_menu img{
    object-fit: contain;
    width: 70%;
    height: 100%;
}

/* PAGE INTRO INDEX */

.title_disney{
    position: absolute;
    width: calc(var(--vh) * 42);
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh) * -2);
    left: 50%;
    margin-left: calc(var(--vh) * -21);
}
.title_disney img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

.neon_container{
    width:170vw;
    height: calc(var(--vh) * 53);
    position:absolute;
    top:50%;
    left:50%;
    /* margin-left:-84vw;
     margin-top:-45vw;*/
    transform:translate(-50%, -50%);
    z-index:9;
}

.neon_container img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

.neon_container .sumergete{
    position: absolute;
    width:100%;
    height: 100%;
    top:0;
    left:0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11vw;
    text-align: center;
}

/* PAGE INTRO SECTIONS */

.bubbleContainer{
    position: absolute;
    width: 100%;
    height: 79%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh) * 16);
    left: 0;
    -webkit-tap-highlight-color: transparent;
}

.bubbleRow{
    position:relative;
    width:80%;
    height: auto;
    float:left;
    margin-bottom:6%;
    display: flex;
    justify-content: center;
    left: 50%;
    margin-left: -40%;
    clear: both;
}

.bubbleRow.start{
    justify-content: start;
}

.bubbleRow.end{
    justify-content: end;
}

.bubbleText{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--vh) * 2.3);
    text-align: center;
    z-index: 9;
    color:#253050;
}

/* Estilos de las burbujas */
.bubble {
    position: absolute;
    width: calc(var(--vh) * 18);
    height: calc(var(--vh) * 18);
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: transform 5s ease;
}

#linkNovedades.bubble{
    width: calc(var(--vh) * 22);
    height: calc(var(--vh) * 22);
    top: calc(var(--vh) * 7.5);
    left: 20%;
    transform: translateX(-20%);
    z-index:4;
}

#linkOfertas.bubble{
    width: calc(var(--vh) * 22);
    height: calc(var(--vh) * 22);
    top: calc(var(--vh) * 25);
    right: 20%;
    transform: translateX(20%);
    z-index:3;
}

#linkSorprendete.bubble{
    top: calc(var(--vh) * 40);
    left: 20%;
    transform: translateX(-20%);
    z-index:2;
}

#linkInfo.bubble{
    top: calc(var(--vh) * 51);
    right: 20%;
    transform: translateX(20%);
    z-index:1;
}

.bubble .content_inner{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position:absolute;
}

.bubble .bubble-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background: radial-gradient(circle, white, #d4e3f0);
    position:absolute;
}

.bubble .neon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position:absolute;
    z-index:-1;
}

.bubble img{
    width:100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
}

.bubble img.neon{
    transform: scale(2.2);
    pointer-events: none;
}

#sections .content_brand{
    position: absolute;
    width: 50%;
    height: calc(var(--vh) * 7);
    bottom: 0;
    left: 50%;
    margin-left: -25%;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 30px 30px 0 0;
}

#sections .content_brand img{
    object-fit: contain;
    width: 80%;
    height: 100%;
}

/* MAS INFO PAGE */

.info_circle{
    width:90vw;
    height: auto;
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-45vw;
    margin-top:-59vw;
    z-index:9;
}

.info_circle img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

.info_circle .content_neon img.neon{
    transform: scale(2) !important;
    pointer-events: none;
    position: absolute;
    top: -1%;
    left: 2%;
}

.info_circle .content_neon{
    width:100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index:-1;
}

.info_circle .infoLink{
    z-index:9;
}

#contactLink{
    width: 23%;
    height: 25%;
    position: absolute;
    top: 33%;
    left: 3%;
}

#videoLink{
    width: 23%;
    height: 25%;
    position: absolute;
    bottom: 13%;
    left: 57%;
}

#rrssLink{
    width: 20%;
    height: 26%;
    position: absolute;
    top: 34%;
    right: 4%;
}

#webLink{
    width: 23%;
    height: 25%;
    position: absolute;
    bottom: 7%;
    left: 38.5%;
}

#folletoLink{
    width: 20%;
    height: 26%;
    position: absolute;
    top: 5%;
    left: 40.5%;
}

.title_disney_peq{
    position: absolute;
    width: 50vw;
    height: auto;
    z-index: 3;
    top: 0;
    right: 0;
}
.title_disney_peq img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

.menu{
    width: 90%;
    position: absolute;
    left: 50%;
    margin-left: -47%;
    bottom: 2%;
    background: radial-gradient(circle, white, #d4e3f0);
    color: #253050;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    padding: 2%;
    font-size: .8em;
    align-items: flex-start;
    display: none;
    z-index: 99999;
}

.menu-item{
    display: grid;
    grid-template-rows: auto auto; /* Una fila para la imagen y otra para el texto */
    justify-items: center; /* Centra horizontalmente */
    align-items: start;    /* Alinea verticalmente al inicio */
    text-align: center;    /* Centra el texto dentro de cada celda */
    position: relative;
}

.menu-item img{
    object-fit: contain;
    display: none;
    height: calc(var(--vh) * 4.5);
}

/* Mostrar la primera imagen si NO tiene la clase .selected */
.menu-item:not(.selected) img:nth-child(1) {
    display: block;
}

/* Mostrar la segunda imagen si tiene la clase .selected */
.menu-item.selected img:nth-child(2) {
    display: block;
}

.menu-item img.neon{
    transform: scale(1.6);
    position: absolute;
    width: 100%;
    top: 7%;
}

.menu-item p {
    margin: 0; /* Elimina márgenes adicionales */
    font-size: 3.3vw;
    padding-top:3px;
}

.menu-item.selected p{
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

/* PAGE SOPRENDETE */

#notes{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bubbles .bubble {
    position: absolute;
    bottom: -50px; /* Empieza fuera de la pantalla */
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(173, 216, 230, 0.5) 50%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.8),
    inset 5px 5px 15px rgba(0, 0, 0, 0.2),
    0px 0px 20px rgba(173, 216, 230, 0.6); /* Realismo en sombras */
    opacity: 0.9;
    animation: floatUp 12s ease-in-out infinite, drift 5s ease-in-out infinite;
}

#captureButton {
    position: fixed;
    bottom: calc(var(--vh) * 9);
    left: 50%;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background: linear-gradient(90deg, #00619A, #008CC7);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    width: 50%;
    font-family: Josefin;
    margin-left: -25%;
}

#captureButton:hover {
    background: linear-gradient(90deg, #00619A, #008CC7);
}

.soapBubble {
    position: absolute;
    bottom: -10vmin; /* Empieza fuera de la pantalla */
    z-index: 1;
    width: 5vmin;
    height: 5vmin;
    outline: 0 solid rgba(0, 0, 0, 0.7);
    transition: 1s;
    user-select: none; /* Evita la selección del contenido */
    -webkit-user-select: none; /* Compatibilidad con navegadores móviles */
    -ms-user-select: none; /* Compatibilidad con IE/Edge */
    pointer-events: all; /* Permitir clics en las burbujas */
    touch-action: none; /* Desactiva gestos táctiles como zoom o scroll */
    animation: floatUp 10s ease-in-out infinite; /* Movimiento hacia arriba */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.soapBubble div {
    position: absolute;
    height: 100%;
    width: 100%;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

.bubbleImg {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: 1s;
    background-image:
            url("data:image/svg+xml;utf8, <svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='50' fill='none'/><circle cx='24' cy='24' r='7.5' fill='white' /><path d='M78 58.4999C69.5 72.4999 56 78.4999 53.5 80.9999C51 83.4999 50 89.9999 59.5 87.4999C69 84.9999 82.5 76.4999 86.5 67.4999C90.5 58.5 86.5 44.5 78 58.4999Z' fill='rgba(255,255,255,.9)' style='filter:blur(0px)'/></svg>"),
            radial-gradient(circle at 70% 96%, white .5%, rgba(255,255,200,.4) 2%, transparent 9%),
            radial-gradient(at 30% 20%, white 1%, rgba(255,255,200,1) 2%, transparent 20%, transparent 50%, rgba(0,200,200,.3) 73%, rgba(0,80,80,.3) 84%),
            radial-gradient(circle at 0% 0%, rgba(255,0,255,.7) 2%, transparent 80%);
    background-size: cover;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

#sorprendete .content_brand{
    position: absolute;
    width: 50%;
    height: calc(var(--vh) * 7);
    bottom: 0;
    left: 50%;
    margin-left: -25%;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 30px 30px 0 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sorprendete .content_brand img{
    width: 80%;
    height: auto;
}

#sorprendete .title{
    position: absolute;
    width: auto;
    height: calc(var(--vh)* 32);
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh)* 5);
    left: 50%;
    transform: translate(-50%, 0);
}
#sorprendete .title img{
    width:auto;
    height: 100%;
    object-fit: contain;
}

/* VIDEO PAGE */

#videoPlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black; /* Opcional, para que el fondo sea negro */
    z-index: 10; /* Asegura que esté encima de otros elementos */
}

/* Estilos para el video */
#videoPlay video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Escala el video para llenar el contenedor sin distorsión */
}

#closeVideo{
    position:absolute;
    top:3%;
    right:5%;
    font-size:5vw;
    padding:3px 8px;
    background-color:#000000;
    color:#FFFFFF;
    z-index:99;
}

#volume{
    position:absolute;
    top:3%;
    left:5%;
    font-size:5vw;
    padding:3px 8px;
    background-color:red;
    color:#FFFFFF;
    z-index:99;
}

#volume.on{
    background-color:green;
}

#video .content_buttons{
    width: 80%;
    left:50%;
    margin-left: -40%;
    position: absolute;
    top: calc(var(--vh)* 73);
    z-index:99;
    opacity:0;
    transition: opacity 0.5s ease;
}

#video .button{
    background: linear-gradient(90deg, #00619A, #008CC7);
    color:#FFFFFF;
    font-size: calc(var(--vh) * 2.5);
    text-align: center;
    float:left;
    clear: both;
    border-radius:30px;
    width:100%;
    padding: calc(var(--vh) * 2) 0;
    margin-bottom: calc(var(--vh) * 1.1);
    text-decoration: none;
}

#video .content_buttons #call{
    display:none;
}

#video .content_buttons #budget{
    display:none;
}

#video .content_buttons.v2{
    width: 65%;
    margin-left: -32.5%;
}

#video .content_buttons.v2 .button{
    font-size: calc(var(--vh)* 2.3);
    padding: calc(var(--vh)* 1) 0;
}

#video .content_buttons.v2 #call{
    display:block;
}

#video .content_buttons.v3{
    top: calc(var(--vh) * 65);
}

#video #loading-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 90%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

#video #loading-bar {
    width: 0%;
    height: 100%;
    background-color: #4caf50;
    transition: width 0.2s ease;
}

#video #loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

/* NOVEDADES PAGE */

#novedades .content_events{
    width:100%;
    height:auto;
    position: absolute;
    left:0;
    top:calc(var(--vh) * 13);
}

#novedades .content_events .content_text{
    width:100%;
    height: auto;
    position:relative;
    float:left;
    clear:both;
    font-weight: 700;
    text-align: center;
}

#novedades .content_events .content_text h1{
    font-size: 6vw;
    margin:0;
}

#novedades .content_events .content_text h2{
    font-size: 4vw;
    font-weight: 500;
}

#novedades .content_events .event{
    width:100%;
    height:auto;
    position: relative;
    left:0;
    float:left;
    clear: both;
    padding-bottom: calc(var(--vh) * 2.5);
    border-radius: 10px;
}

#novedades .content_events .event .image{
    width:100%;
    height: auto;
    position: relative;
    float:left;
    clear: both;
    justify-content: center;
    display: flex;
}
#novedades .content_events .event .image img{
    object-fit: contain;
    height: calc(var(--vh) * 22);
    width: auto;
}

#novedades .content_events .event#navidad .image img{
    height: calc(var(--vh) * 29);
}

#novedades .content_events .event .text{
    width: 80%;
    height: auto;
    position: relative;
    left: 50%;
    margin-left: -40%;
    color: #FFFFFF;
    font-size: 6vw;
    display: flex;
    justify-content: center;
    background-color: #2BC0D0;
    padding: calc(var(--vh) * 1.5) 0;
    border-radius:30px;
}

/* ===== Nieve (con fade-out natural) ===== */
@keyframes snowfall {
    0%   { transform: translate3d(var(--drift-start, 0), var(--startY, -10vh), 0); opacity: 0; }
    10%  { opacity: var(--opacity, .9); }
    90%  { opacity: var(--opacity, .9); }
    100% { transform: translate3d(var(--drift-end, 0), var(--endY, 70vh), 0); opacity: 0; }
}
.snowflake {
    position: absolute;
    top: 0; left: 0;
    width: var(--size, 8px);
    height: var(--size, 8px);
    background: radial-gradient(circle at 30% 30%, #fff, #eaf6ff);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(var(--blur, .2px));
    will-change: transform, opacity;
    animation: snowfall var(--duration, 8s) linear forwards;
}

/* ===== Murciélagos (como en tu index.html) ===== */
.bats-layer{
    position: absolute; inset: 0;
    pointer-events: none;
    contain: layout paint style;
    z-index:0;
}

.bat{ position: absolute; will-change: transform; }
.bat svg{ display:block; width: 120px; height: auto; color: #1b1b1b;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.35)) drop-shadow(0 6px 12px rgba(0,0,0,.25));
}
.bat .wing{
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation: flap .38s ease-in-out infinite alternate;
}
.bat .wing--left{  transform-origin: 100% 50%; animation: flap-left .38s ease-in-out infinite alternate; }
.bat .wing--right{ transform-origin:   0% 50%; animation: flap-right .38s ease-in-out infinite alternate; }
.bat .body{ transform-box: fill-box; }
.bat .eye{ fill:#f7f3d4; }
.bat .ear {
    stroke: #000;
    stroke-width: 0.3px;
}

@keyframes flap-left{  from{ transform: rotate(-12deg) } to{ transform: rotate(12deg) } }
@keyframes flap-right{ from{ transform: rotate(12deg) }  to{ transform: rotate(-12deg) } }
@keyframes flap{ from { transform: rotate(12deg); } to { transform: rotate(-18deg); } }

.bat[data-speed="slow"] .wing{ animation-duration: .5s; }
.bat[data-speed="fast"] .wing{ animation-duration: .28s; }

/* Accesibilidad: reducir movimiento */
@media (prefers-reduced-motion: reduce){
    .bat{ display: none; }
}


/* INFO EVENT */

#infoEvent .logo-event{
    position: absolute;
    width: calc(var(--vh) * 22);
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh) * 1);
    left: 50%;
    margin-left: calc(var(--vh) * -11);
}

#infoEvent .logo-event img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

#infoEvent .content-halloween{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:#000000;
    z-index:1;
    display: none;
}

#infoEvent .content-halloween.show{
    display:block;
}

#infoEvent .content-halloween .capa-footer{
    width:100%;
    height: calc(var(--vh)* 85);
    position: absolute;
    z-index:3;
    bottom:0;
    left:0;
}

#infoEvent .content-halloween .capa-footer img{
    object-fit: cover;
    width:100%;
    height: auto;
}

#infoEvent .content-halloween .background-animate{
    width:100%;
    height: calc(var(--vh)* 50);
    position: absolute;
    z-index:2;
    top: calc(var(--vh)* -8);
    left:0;
}

#infoEvent .content-halloween .background-animate img{
    object-fit: cover;
    width:100%;
    height: auto;
}

#infoEvent .content-halloween .title-halloween{
    position: absolute;
    width: calc(var(--vh) * 42);
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh) * 6.5);
    left: 50%;
    margin-left: calc(var(--vh) * -21);
}

#infoEvent .content-halloween .title-halloween img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

#infoEvent .content_info{
    width:100%;
    height:auto;
    position: absolute;
    left:0;
    z-index:4;
    top: calc(var(--vh) * 47);
}

#infoEvent .description{
    width: 95%;
    height: auto;
    position: relative;
    float: left;
    clear: both;
    left: 50%;
    margin-left: -47.5%;
    z-index: 3;
}

#infoEvent .description .title{
    width: 100%;
    float: left;
    height: auto;
    text-align: center;
    color: #FFFFFF;
    font-size: calc(var(--vh)* 2.2);
    font-weight: bold;
}

#infoEvent .description .title img{
    object-fit: contain;
    width:90%;
    height: auto;
}

#infoEvent .description .text{
    width: 100%;
    float: left;
    height: auto;
    text-align: center;
    color: #FFFFFF;
    font-size: calc(var(--vh)* 2.1);
    padding-top: calc(var(--vh)* 0.55);
    line-height: calc(var(--vh)* 2.4);
}

#infoEvent .description .content_icons{
    width:100%;
    height: auto;
    float:left;
    display: flex;
    justify-content: space-around;
}


#infoEvent .description .content_icons .icon{
    width:33.3%;
    text-align: center;
    font-size: calc(var(--vh) * 1.2);
    font-weight: 600;
}

#infoEvent .description .content_icons .icon img{
    object-fit: contain;
    height: calc(var(--vh) * 14);
    width: 100%;
}

#infoEvent .content_buttons{
    width: 90%;
    position: relative;
    left: 50%;
    margin-left: -45%;
    padding-top: calc(var(--vh) * 2);
    display: flex;
    justify-content: space-around;
}

#infoEvent .button{
    background: linear-gradient(90deg, #E38131, #6AB04C);
    color: #FFFFFF;
    font-size: calc(var(--vh) * 2);
    text-align: center;
    float: left;
    clear: both;
    border-radius: 30px;
    width: 46%;
    padding: calc(var(--vh) * 1) 0;
}

#infoEvent .content-navidad{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:#000000;
    z-index:1;
    display: none;

}

#infoEvent .content-navidad.show{
    display:block;
}



#infoEvent .content-navidad .background-animate{
    width:100%;
    height: calc(var(--vh)* 50);
    position: absolute;
    z-index:2;
    top: 0;
    left:0;
}

#infoEvent .content-navidad .background-animate img{
    object-fit: cover;
    object-position: bottom;
    width:100%;
    height: 100%;
}

#infoEvent .content-navidad .content_info{
    top: calc(var(--vh) * 46);
    background-image: url(../img/capa-navidad.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

#infoEvent .content-navidad .content_info .title{
    color:#1F7D2B;
    font-weight: normal;
}

#infoEvent .content-navidad .content_info .description {
    top: calc(var(--vh) * 7);
}

#infoEvent .content-navidad .description .content_icons .icon{
    color:#75173D;
}

#infoEvent .content-navidad .description .title.peq{
    padding-top:calc(var(--vh)* .5);
    font-size:calc(var(--vh)* 1.8);
    padding-bottom:calc(var(--vh)* 1);
}

#infoEvent .content-navidad .title-navidad{
    position: absolute;
    width: calc(var(--vh) * 30);
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    top: calc(var(--vh) * 6);
    left: 50%;
    margin-left: calc(var(--vh) * -15);
}

#infoEvent .content-navidad .title-navidad img{
    width:100%;
    height: 100%;
    object-fit: contain;
}




/***** LEGALES *****/

.content_text_legal{
    color:#253050;
    background: linear-gradient(to right,
    #cbddee 0%,
    #edf2fa 50%,
    #f4edfd 100%);
    padding:10% 5%;
    height:100%;
    overflow:auto;
}

.links_legal{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 18vh;
    text-align: center;
}

.links_legal a{
    color: #FFF;
    line-height: 4vh;
}

/* EFECTOS */

/* Partículas para los fuegos artificiales */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #fff; /* Color de las partículas */
    border-radius: 50%;
    opacity: 0;
    animation: explodeFireworks 1.5s ease-out forwards;
}

/* Notas musicales */
.note {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: white;
    opacity: 0; /* Empiezan invisibles */
    animation: moveNote 3s ease-in-out infinite, rotateNote 3s linear infinite;
}

/* Animación para mover las notas */
@keyframes moveNote {
    0% {
        transform: translate(0, 0);
        opacity: 0; /* Empieza invisible */
    }
    10% {
        opacity: 1; /* Se hace visible al inicio */
    }
    50% {
        transform: translate(var(--x), var(--y));
        opacity: 1; /* Mantiene visibilidad durante el movimiento */
    }
    100% {
        transform: translate(0, 0);
        opacity: 0; /* Desaparece al final */
    }
}

/* Animación para rotar las notas */
@keyframes rotateNote {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animación de explosión */
@keyframes explodeFireworks {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

@keyframes explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Movimiento hacia arriba */
@keyframes floatUp {
    0% {
        bottom: -70vmin;
        opacity: 1;
    }
    100% {
        bottom: calc(var(--vh) * 110);
        opacity: 1;
    }
}

/* Movimiento lateral */
.moveX {
    animation: moveX 2s ease-in-out alternate infinite;
}

@keyframes moveX {
    from {
        transform: translateX(-2vmin);
    }
    to {
        transform: translateX(2vmin);
    }
}

.moveY {
    animation: moveY 1.4s ease-in-out alternate infinite;
}

@keyframes moveY {
    from {
        transform: translateY(-2vmin);
    }
    to {
        transform: translateY(2vmin);
    }
}

.deformX {
    animation: deformX 4s ease-in-out alternate infinite;
}

@keyframes deformX {
    0% {
        transform: none;
    }
    25% {
        transform: scaleX(1.05) skewX(2deg);
    }
    50% {
        transform: none;
    }
    75% {
        transform: scaleX(1.05) skewX(-2deg);
    }
    100% {
        transform: none;
    }
}

.deformY {
    animation: deformY 5s ease-in-out alternate infinite;
}

@keyframes deformY {
    0% {
        transform: none;
    }
    25% {
        transform: scaleY(1.05) skewY(2deg);
    }
    50% {
        transform: none;
    }
    75% {
        transform: scaleY(1.05) skewY(-2deg);
    }
    100% {
        transform: none;
    }
}

/* Movimiento lateral */
@keyframes drift {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-15px); /* Oscila hacia la izquierda */
    }
    50% {
        transform: translateX(30px); /* Oscila hacia la derecha */
    }
    75% {
        transform: translateX(-20px); /* Regresa ligeramente a la izquierda */
    }
}

/* Rotación lenta para simular iridiscencia */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatDown {
    0% {
        top: -10px; /* Posición inicial fuera de la pantalla */
        opacity: 0.9; /* Totalmente visible */
    }
    100% {
        top: calc(var(--vh) * 110); /* Moverse hasta fuera de la pantalla */
        opacity: 0; /* Desvanecerse al final */
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1); /* Tamaño normal */
    }
    50% {
        transform: scale(1.1); /* Aumentar ligeramente */
    }
}



/* Estilos generales para el mensaje de advertencia */
#orientation-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    text-align: center;
    z-index: 9999;
}

/* NOVEDADES PAGE */

#menuSorprendete .content_events{
    width:100%;
    height:auto;
    position: absolute;
    left:0;
    top:calc(var(--vh) * 13);
}

#menuSorprendete .content_events .event{
    width:100%;
    height:auto;
    position: relative;
    left:0;
    float:left;
    clear: both;
    padding-bottom: calc(var(--vh) * 2.5);
    border-radius: 10px;
}

#menuSorprendete .content_events .event .image{
    width:100%;
    height: auto;
    position: relative;
    float:left;
    clear: both;
    justify-content: center;
    display: flex;
}
#menuSorprendete .content_events .event .image img.imgMenu{
    object-fit: contain;
    height: calc(var(--vh) * 24);
    width: auto;
}


#menuSorprendete .content_events .event .text{
    width: 80%;
    height: auto;
    position: relative;
    left: 50%;
    margin-left: -40%;
    color: #FFFFFF;
    font-size: 6vw;
    display: flex;
    justify-content: center;
    background: #2BC0D0;
    padding: calc(var(--vh) * 2) 0;
    border-radius:30px;
}

#menuSorprendete .content_events .event .text:active{
    transform: translateY(1px) scale(.98);
    box-shadow: 0 6px 14px rgba(43,192,208,.28);
}

#menuSorprendete .content_events .event .text-sm{
    width: 40%;
    height: auto;
    position: relative;
    left: 50%;
    margin-left: -40%;
    color: #FFFFFF;
    font-size: 6vw;
    display: flex;
    justify-content: center;
    background: #2BC0D0;
    padding: calc(var(--vh) * 2) 0;
    border-radius:30px;
}

#menuSorprendete .neon-wrapper{
    display:inline-block;
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

#menuSorprendete .neon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Centro exacto del contenedor */
    transform: translate(-50%, -50%);
    pointer-events: none; /* no bloquear clics */
    z-index: 2;
}

/* Ajustes globales (puedes tocarlos sin tocar el CSS) */
:root{
    /* cuánto más grande que la base */
    --neon-height-mult: 27; /* 24 => 24vh-equivalentes vía --vh */
    /* desplazamientos en % del propio neón (escala con el tamaño) */
    --neon-shift-x: 1%;   /* + a la derecha */
    --neon-shift-y: -1%;  /* - hacia arriba */
}

#menuSorprendete img.neon{
    height: calc(var(--vh) * var(--neon-height-mult));
    width: auto;
    object-fit: contain;
    /* Empuje fino, proporcional (siempre mantiene proporción al redimensionar) */
    transform: translate(var(--neon-shift-x), var(--neon-shift-y));
}

/* Título pequeño bajo la imagen */
#menuSorprendete .content_events .event .subheading{
    width: 100%;
    max-width: 720px;
    margin: calc(var(--vh) * 1.5) auto;
    color: #fff;
    font-weight: 600;
    display: block;
    text-align: center;
    font-size: clamp(18px, 5.2vw, 28px);
    float: left;
}

/* Fila de botones */
#menuSorprendete .content_events .event .btn-row{
    width: 86%;
    max-width: 720px;
    margin: calc(var(--vh) * 1.5) auto 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(8px, 3vw, 16px);
    flex-wrap: wrap; /* si falta espacio, se apilan */
}

/* Botón pastilla */
#menuSorprendete .content_events .event .btn-pill{
    display:inline-flex;           /* evita el width:100% global de <a> */
    width:auto;                    /* anula posibles 100% heredados */
    box-sizing:border-box;
    text-decoration:none;          /* quita subrayado */
    align-items:center;
    justify-content:center;
    appearance: none;
    border: 0;
    outline: 0;
    cursor: pointer;
    padding: clamp(8px, 1.8vh, 8px) clamp(12px, 5vw, 18px);
    border-radius: 28px;
    background:#2BC0D0;
    color:#fff;
    font-weight: 600;
    text-align: center;
    /* ancho adaptable: dos columnas en móviles, una si no cabe */
    flex: 1 1 calc(50% - 8px);
    max-width: 320px;
    font-size: clamp(15px, 4vw, 18px);
    box-shadow: 0 8px 20px rgba(43,192,208,.35);
    transition: transform .12s ease, box-shadow .12s ease;
}

/* Feedback táctil/hover */
#menuSorprendete .content_events .event .btn-pill:active{
    transform: translateY(1px) scale(.98);
    box-shadow: 0 6px 14px rgba(43,192,208,.28);
}

/* Ocultar el mensaje en dispositivos móviles en modo vertical */
@media screen and (max-width: 768px) and (orientation: portrait) {
    #orientation-warning {
        display: none;
    }
}

