@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


html, body {
  min-height: 100vh;
 height: 100%;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

body {
background-color: #0f0f0f;
}
   



/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
/*------------------------------------------------------------*/

/*------------------------------------------------------------*/
/* Imagen de HERO y H1 */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.hero-gradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px; /* Ajusta la altura según lo que necesites */
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(87, 168, 12, 0) 0%, #0f0f0f 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4); /* oscurece el video para que el texto destaque */
}

.contenido {
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 106vh;
}


.hero-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 0 0 10px #f849a0, 0 0 20px #812e58, 0 0 30px #5c1e3d;
    margin-bottom: 4vh;
    margin-top: 0;
}

.hero button {
    padding: 1em 2.6em;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
    margin-top: 20vh; /* espacio entre el botón y el título */
    margin-bottom: 20vh;
    z-index: 2;
}

/* Hover: fondo blanco, sombra rosa más intensa, texto rosa */
.hero button:hover {
    background-color: white;
    color: #f849a0;
    box-shadow: 0 0 25px rgba(248, 73, 160, 0.7);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .hero button {
        position: absolute;
        bottom: 20px; /* espacio debajo */
        left: 50%;
        transform: translateX(-50%);
        width: 80%; /* ancho responsive */
        max-width: 400px;
        font-size: 1.4rem;
        margin-top: 0;
        z-index: 300;
        box-shadow: 0 0 15px rgba(248, 73, 160, 0.7);
    }
}


/*
.hero h1 {
    color: #ffffff;
    font-size: 50px; /* Más grande  
    user-select: none;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la legibilidad 
}*/
/*---------------------------DEGRADADO---------------------------------*/
.degradado {
    width: 100%;
    height: 20vh;
    background-color: #0f0f0f;
    z-index: 1;
}






/*------------------------------------------------------------*/
.card {
  /* color used to softly clip top and bottom of the .words container */
  
  background-color: transparent;
 /* padding: 1rem 2rem;*/
  border-radius: 1.25rem;
}

/* Quita el fondo de la card */
.card.loader-card {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}

/* Loader en fila y centrado vertical */
.loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 2vw; /* Espacio entre palabras */
  font-size: 3.2rem; /* Tamaño grande para todo el loader */
  background: transparent !important;
  padding: 0;
  height: auto;
  border-radius: 8px;
  /* width: 100vh; */
  justify-content: center;
}


/* Palabras animadas */
.words {
  display: flex;
  flex-direction: column;
  width: 15vh;
  height: 3.6rem; /* un poco más que el font-size */
  overflow: hidden;
  position: relative;
  padding: 2vh 2vh ;
  justify-content: flex-start;
  width: 90vh;
  
}

.word{
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  text-align: left;       /* <-- alineado a la izquierda */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* <-- alineado a la izquierda */
  animation: fadeIn2 2s ease-in-out, spin_4991 12s infinite ease-in-out;
  animation-delay: 2s, 4s;
  animation-fill-mode: forwards;
   opacity: 0;

}

.word-title{
  color: white;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #6e6e6e, 0 0 30px #000000;
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  text-align: right;      /* <-- alineado a la derecha */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* <-- alineado a la derecha */
  animation: fadeIn2 2s ease-in-out, spin_4992 10s infinite ease-in-out;
  animation-delay: 2s, 4s;
  animation-fill-mode: forwards;
   opacity: 0;

}

@keyframes fadeIn2 {
  from { opacity: 0; }
  to { opacity: 1; }
}


.vacia{
  color : transparent;
  height: 3.6rem;
  
}

/* Colores y sombras personalizados */
.words .word:nth-child(1) {
  color: #ffffff;
  text-shadow: 0 0 10px #f849a0, 0 0 20px #812e58, 0 0 30px #5c1e3d;
}
.words .word:nth-child(4) {
  color: #ffffff;
  text-shadow: 0 0 10px #2ee43d, 0 0 20px #259e35, 0 0 30px #064106;
}
.words .word:nth-child(7) {
  color: #ffffff;
  text-shadow: 0 0 10px #eed06d, 0 0 20px #dac82c, 0 0 30px #df6705;
}
.words .word:nth-child(10) {
  color: #ffffff;
  text-shadow: 0 0 10px #65d7f3, 0 0 20px #277d92, 0 0 30px #0e3166;
}
.words .word:nth-child(13) {
  color: #ffffff;
  text-shadow: 0 0 10px #b160f3, 0 0 20px #5c2e81, 0 0 30px #501e5c;
}
.words .word:nth-child(16) {
  color: #ffffff;
  text-shadow: 0 0 10px #f58484, 0 0 20px rgb(223, 31, 31), 0 0 30px #4b0101;
}

.words .word:nth-child(19) {
  color: #ffffff;
  text-shadow: 0 0 10px #f849a0, 0 0 20px #812e58, 0 0 30px #5c1e3d;
}

/* Responsive para móviles */
@media (max-width: 600px) {

  .loader {
    font-size: 1.3rem;
    gap: 1vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 2vw;
  }
  .words {
    width: 90vw;
    min-width: 0;
    font-size: 1.1rem;
    padding: 1vh 0.5vh;
    height: 2.5rem;
  }
  .word, .word-title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1000px) {
  body.landscape-blocked::before {
    content: "Por favor, gira tu dispositivo a modo vertical.";
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0f0f0f;
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
  }

  body.landscape-blocked > *:not(script):not(style) {
    display: none !important;
  }
}

@keyframes spin_4992 {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-300); }
  20%  { transform: translateY(-300%); }
  40%  { transform: translateY(-600%); }
  40%  { transform: translateY(-600%); }
  60%  { transform: translateY(-900%); }
  60%  { transform: translateY(-900%); }
  80%  { transform: translateY(-1200%); }
  80%  { transform: translateY(-1200%); }
  100%  { transform: translateY(-1500%); }
}
@keyframes spin_4991{
  
  0%   { transform: translateY(-1800%); }
  16.6%  { transform: translateY(-1500%); }
  16.6%  { transform: translateY(-1500%); }
  33.3%  { transform: translateY(-1200%); }
  33.3%  { transform: translateY(-1200%); }
  49.8%  { transform: translateY(-900%); }
  49.8%  { transform: translateY(-900%); }
  66.4%  { transform: translateY(-600%); }
  66.4%  { transform: translateY(-600%); }
  83.3%  { transform: translateY(-300%); }
  83.3%  { transform: translateY(-300%); }
  100% { transform: translateY(0%); }
}

/*------------------------------------------------------------*/

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }







  .ciudades-destacadas {
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
}

.ciudad {
    display: flex;
    margin-bottom: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ciudad-imagen {
    flex: 1;
    overflow: hidden;
}

.ciudad-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ciudad-carrusel {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ciudad-carrusel h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.carrusel-item {
    min-width: 200px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carrusel-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #1976d2;
}

.carrusel-item p {
    font-size: 14px;
    color: #555;
}

.articulo-ciudades {
  max-width: 1100px;
  margin: 60px auto 40px auto;
  padding: 32px 18px 32px 18px;
  background: #181828;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);

}
.articulo-ciudades h1 {
  color: #4980f8;
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-align: center;
    text-decoration: none;
}
.articulo-ciudades > p {
  color: #e3f2fd;
  font-size: 1.15rem;
  margin-bottom: 32px;
  text-align: center;
  text-decoration: none;
}
.ciudades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.ciudad-info {
  background: #23234a;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 18px;
  text-decoration: none;
}
.ciudad-info:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px #f849a055;
}
.ciudad-info h2 {
  color: #65d7f3;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.ciudad-info p {
  font-size: 1.08rem;
  color: #e3f2fd;
  margin: 0;
  margin-bottom: 6px;
}
.ciudad-foto {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: block;
}
@media (max-width: 700px) {
  .articulo-ciudades {
    padding: 12px 2vw;
  }
  .ciudades-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ciudad-info {
    padding: 16px 8px;
  }
  .ciudad-foto {
    height: 90px;
  }
}
* AnimatiSS scale-up-bottom */
.scale-up-bottom {
  animation: scale-up3-bottom 2.5s;
}
@keyframes scale-up-bottom {
  0% {
    transform: scale(.3);
    transform-origin: center bottom;
  }
  100% {
    transform: scale(1);
    transform-origin: center bottom;
  }
}
/* Fade-in effect (desvanecer al revés) */
.fade-in {
  animation: fade-in 2.5s;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Oculta el botón inicialmente */
#comprar-entradas-btn {
  display: none;
  opacity: 0;
}

/* ========================================
   GRID DE CIUDADES
   ======================================== */

.grid-ciudades {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.fila-ciudades {
    display: flex;
    gap: 170px;
    margin-bottom: 20px;
    height: 500px; /* Aumentado para acomodar las imágenes cuadradas */
    align-items: stretch;
}

.lateral-izquierdo,
.lateral-derecho {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    align-items: center; /* Centra las imágenes cuadradas */
}

.central {
    flex: 2;
    display: flex;
    height: 300px; /* Altura ajustada para coincidir con 2 fotos cuadradas + gap */
    margin-top: 100px;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    flex-direction: column; /* Asegura que el contenido se centre verticalmente */
}

.lateral-izquierdo a,
.lateral-derecho a {
    width: 100%;
    height: 240px; /* Altura fija para hacer las fotos cuadradas */
    width: 240px; /* Ancho igual a la altura para cuadrado perfecto */
    aspect-ratio: 1; /* Las fotos son cuadradas */
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.central a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lateral-izquierdo img,
.lateral-derecho img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.central img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Efectos hover */
.grid-ciudades a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(87, 168, 12, 0.4);
}

.grid-ciudades a:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .fila-ciudades {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .lateral-izquierdo,
    .lateral-derecho,
    .central {
        flex: none;
    }
    
    .lateral-izquierdo,
    .lateral-derecho {
        flex-direction: row;
        height: 140px; /* Altura fija para mantener cuadrados en móvil */
    }
    
    .lateral-izquierdo a,
    .lateral-derecho a {
        width: calc(50% - 7.5px); /* Cada foto ocupa la mitad del ancho */
        height: 140px; /* Altura fija igual al ancho para mantener cuadrados */
        aspect-ratio: 1;
        max-width: 140px; /* Asegura que sean cuadradas */
    }
    
    .central {
        height: 180px; /* Altura aumentada para el central en móvil */
    }
}

@media (max-width: 480px) {
    .grid-ciudades {
        padding: 20px 10px;
    }
    
    .fila-ciudades {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .lateral-izquierdo,
    .lateral-derecho {
        height: 120px; /* Altura fija para cuadrados pequeños */
        gap: 5px;
    }
    
    .lateral-izquierdo a,
    .lateral-derecho a {
        width: calc(50% - 2.5px); /* Cada foto ocupa la mitad del ancho */
        height: 120px; /* Altura fija para mantener cuadrados */
        aspect-ratio: 1;
        border-radius: 8px;
        max-width: 120px; /* Asegura dimensiones cuadradas */
    }
    
    .central {
        height: 140px; /* Altura del central en móvil pequeño */
    }
    
    .central a {
        border-radius: 8px;
    }
}