@font-face {
    font-family: 'Blur';
    src: url('fonts/Blur\ Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    font-family: 'Geist', sans-serif;
    margin: 0;
  }
  
  h1, h2, .boton-registro {
    font-family: 'Blur', sans-serif;
  }
  
  header {
    background-color: #000000;
    padding: 1.5rem 0;
    text-align: center;
  }

  .encabezado-flex {
    margin-top: 1rem;
    background-color: #000;
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  
  .logo-img {
    max-width: 120px;
    margin-bottom: 1rem;
  }
  
  .conoce-mas {
    margin-top: 0;
  }

  
  
  .logo {
    color: #EEEADD;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  .video-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }
  
  .banner-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.85;
  }
  
  .overlay-texto {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #EEEADD;
    padding: 2rem;
  }
  
  .overlay-texto h1 {
    font-family: 'Blur', sans-serif;
    font-size: 4rem;
    color: #031FFF;
    margin-bottom: 1rem;
  }
  
  .overlay-texto p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
  }
  
  .registro {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #031FFF;
  }
  
  .registro h1 {
    line-height:0.8;
    font-size: 2rem;
    color: #EEEADD;
    margin-top: 0rem;
    margin-bottom: 6rem;
  }
  
  .registro p {
    color: #EEEADD;
    font-weight: bolder;
    letter-spacing: -1.2px;
    margin-top: -4rem;
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .boton-registro {
    position: relative;
    display: inline-block;
    background-color: #EEEADD;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    overflow: hidden;
    transition: background-color 0.3s ease;
    z-index: 1;
    margin-bottom: -1rem;
    margin-top: -3rem;
  }
  
  .boton-registro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: agua-reflejo 3s infinite linear;
    z-index: 0;
  }
  
  .boton-registro:hover {
    background-color: #000000;
    color: #EEEADD;
  }
  
  .boton-registro:hover::before {
    opacity: 1;
  }
  
  @keyframes agua-reflejo {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(25%, 25%);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  .boton-registro {
    position: relative;
    z-index: 1;
  }

  .boton-registro span {
    position: relative;
    z-index: 2;
  }
  
  .redes {
    background-color: #000000;
    color: #EEEADD;
    text-align: center;
    padding: 2rem;
  }
  
  .redes h2 {
    margin-bottom: 1rem;
  }
  
  .iconos a {
    margin: 0 1rem;
    color: #031FFF;
    text-decoration: none;
    font-weight: bold;
  }
  
  .iconos a:hover {
    text-decoration: underline;
  }
  
  footer {
    background-color: #EEEADD;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #000000;
  }

  .iconos a {
    margin: 0 10px;
    font-size: 2rem;
    color: #031FFF;
    transition: transform 0.3s;
  }
  
  .iconos a:hover {
    transform: scale(1.2);
    color: #EEEADD;
  }

  .mapa {
    margin-top: 3rem;
    padding: 1rem;
    margin-bottom: 3rem;
    background-color: #000000;
    text-align: center;
    margin: 0;
  }
  .mapa h2 {
    font-family: 'Blur', sans-serif;
    font-size: 2rem;
    color: #031FFF;
    margin-bottom: 1.5rem;
  }
  .mapa-enmarcado {
    display: flex;
    justify-content: center;
  }
  .marco-azul {
    padding: 12px;
    background-color: #031FFF;
    border-radius: 20px;
    max-width: 90%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  }
  .marco-azul iframe {
    border: none;
    border-radius: 20px;
    width: 100%;
    width: 800px;
    height: 400px;
  }

  .marquee {
  
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    color: #031FFF;
    background-color: #000000; /* opcional */
    padding: 0rem 0;
  }
  
  .marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: slide-text 10s linear infinite;
    font-family: 'Martian Mono', monospace;    
    font-size: 1rem;
    color: #031FFF;
    letter-spacing: 0px;
  }
  
  @keyframes slide-text {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .cuenta-regresiva {
    background-color: #000;
    color: #EEEADD;
    text-align: center;
    padding: 4rem 2rem;
    font-family: 'Blur', sans-serif;
  }
  
  .cuenta-regresiva h2 {
    font-size: 3rem;
    color: #031FFF;
    margin-bottom: 2rem;
    margin-top: -2rem;
  }
  
  .contador {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .contador div {
    background-color: #031FFF;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 90px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .contador span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #EEEADD;
  }
  
  .contador small {
    font-size: 1rem;
    color: #EEEADD;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .boton-calendario-contenedor {
    text-align: center;
    margin-top: 0;
    background-color: #000000;
  }
  
  .boton-agendar {
    background-color: #031FFF;
    color: #EEEADD;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Blur', sans-serif;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .boton-agendar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: agua-reflejo 3s infinite linear;
    z-index: 0;
  }
  
  .boton-agendar:hover {
    background-color: #EEEADD;
    color: #031FFF;
  }
  
  .boton-agendar:hover::before {
    opacity: 1;
  }
  
  
  .contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background-color: #000000;
  }
  
  .formulario {
    background-color: #031FFF;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .formulario h1 {
    color: #EEEADD;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  input,
  textarea,
  select {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.4rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  button {
    margin-top: 2rem;
    background-color: #031FFF;
    color: #ffffff;
    border: none;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  button:hover {
    background-color: #000000;
  }

  /* Playera Merch */
  .playera {
    background-color: #000000; /* azul del campamento */
    padding: 4rem 2rem;
    text-align: center;
  }

  .playera p {
    color: #EEEADD;
    line-height: 0.5rem;
    text-align: center;
  }
  
  .playera h2 {
    font-family: 'Blur', sans-serif;
    color: #031FFF;
    font-size: 3.5rem;
    line-height: 1;
    margin-top: -2rem;
    margin-bottom: 0rem;
    text-transform: uppercase;
  }
  
  .playera-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .playera-img {
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 3rem;
  }

/* Logo Aquí y Ahora */
.logo-aqui-ahora {
  max-width: 280px;
  width: 100%;
  margin-bottom: 1rem;

}

@media (max-width: 768px) {
  .logo-aqui-ahora {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .logo-aqui-ahora {
    max-width: 200px;
  }
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #000000;
  color: #000;
}

.playera-slider {
  text-align: center;
  padding: 3rem 1rem;
}

.playera-slider h1 {
  margin-top: -1rem;
  font-family: 'Blur', sans-serif;
  color: #031FFF;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
 margin-bottom: 3rem;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  border-radius: 10px;
}

.slide.active {
  display: block;
}

.nav {
  background-color: #000000cc;
  color: #EEEADD;
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
   transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav:hover {
  background-color: #031FFF;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 480px) {
  .nav {
    font-size: 1.3rem;
    padding: 0.6rem 0.9rem;
  }
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.volver {
  display: block;
  margin-top: 2rem;
  color: #031FFF;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 1rem;
}

.descripcion-playera {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: 'Geist', sans-serif;
}

.descripcion-playera h2 {
  font-family: 'Blur', sans-serif;
  font-size: 1.8rem;
  color: #031FFF;
  margin-bottom: 0.5rem;
}

.descripcion-playera p {
  margin: 0.3rem 0;
  color: #EEEADD;
  font-size: 1rem;
}

.precio {
  font-weight: bold;
  font-size: 1.5rem;
  color: #EEEADD;
}

.playlist-section {
  background-color: #000;
  padding: 4rem 2rem;
  text-align: center;
}

.playlist-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 16px;
  background-color: #00000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.playlist-container h2 {
  font-family: 'Blur', sans-serif;
  font-size: 2.5rem;
  color: #031FFF;
  margin-bottom: 1.5rem;
}

.playlist-container iframe {
  width: 100%;
  height: 400px;
  max-width: 100%;
  border: none;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .playlist-container iframe {
    height: 360px;
  }
}

.open-spotify-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #031FFF;
  color: #EEEADD;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.open-spotify-btn:hover {
  background-color: #EEEADD;
  color: #031FFF;
  transform: scale(1.05);
}

/* Responsive ajustes para móvil */
@media (max-width: 480px) {
  .playlist-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .open-spotify-btn {
    width: auto;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  iframe {
    height: 300px;
  }
}

  .playlist-container h2 {
    font-size: 1.8rem;
  }

  .open-spotify-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #031FFF;
  color: #EEEADD;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}

  iframe {
    height: 300px;
  }
}
  /* ======== RESPONSIVE DESIGN ======== */


  @media (max-width: 768px) {
    .cuenta-regresiva h2 {
      font-size: 2rem;
    }
  
    .contador {
      flex-direction: row;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .contador div {
      padding: 1rem;
      min-width: 70px;
    }
  
    .contador span {
      font-size: 2rem;
    }
  
    .contador small {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .cuenta-regresiva {
      padding: 2rem 1rem;
    }
  
    .cuenta-regresiva h2 {
      font-size: 1.8rem;
    }
  
    .contador {
      gap: 0.5rem;
    }
  
    .contador div {
      min-width: 60px;
      padding: 0.8rem;
    }
  
    .contador span {
      font-size: 1.6rem;
    }
  
    .contador small {
      font-size: 0.7rem;
    }
  }

/* Teléfonos (pantallas hasta 480px) */
@media (max-width: 480px) {
    .overlay-texto h1 {
      font-size: 2.5rem;
    }
  
    .overlay-texto p {
      font-size: 1rem;
    }
  
    .registro h1 {
      font-size: 1.5rem;
    }
  
    .registro p {
      font-size: 1rem;
    }
  
    .boton-registro {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  
    .logo {
      font-size: 1.5rem;
    }
  
    .mapa h2 {
      font-size: 1.5rem;
    }
  
    .marco-azul iframe {
      width: 100%;
      height: 250px;
    }
  
    .iconos a {
      font-size: 1.5rem;
    }
  }
  
  /* Tabletas (pantallas entre 481px y 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .overlay-texto h1 {
      font-size: 3rem;
    }
  
    .registro h1 {
      font-size: 2rem;
    }
  
    .boton-registro {
      font-size: 1.1rem;
      padding: 0.9rem 1.7rem;
    }
  
    .marco-azul iframe {
      width: 100%;
      height: 300px;
    }
  }
  
  /* Pantallas medianas (769px a 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .overlay-texto h1 {
      font-size: 3.5rem;
    }
  
    .registro h1 {
      font-size: 2.5rem;
    }
  
    .boton-registro {
      font-size: 1.2rem;
    }
  
    .marco-azul iframe {
      width: 100%;
      height: 350px;
    }
  }
  
