/* Reset general */
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------ */
/* ESTILOS GENERALES */
/* ------------------ */

body {
  padding-top: 0; /* Cambiar si header no ocupa espacio necesario */
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 12px;
  background: #0a0a0a;
  align-items: center;
  border-bottom: 2px solid #ddd;
}

/* ------------------ */
/* HEADER Y NAVEGACIÓN */
/* ------------------ */

header {
  padding: 15px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 6px rgba(245, 15, 53, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header, nav {
  position: relative;
  z-index: 100; /* por si hay conflictos */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  padding: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 60px;
  font-size: 16px;
}

header nav ul li a:hover {
  text-decoration-color: #5c1e5c;
}


/* ------------------ */
/* MENÚ FIJO */
/* ------------------ */

.menu-fixed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  background: linear-gradient(90deg, #90cbdb, #8e93d6, #2831a7, #072d6b);
  background-size: 300% 100%;
  animation: soundWave 5s infinite linear;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7000;
}

.menu-fixed ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.menu-fixed ul li a {
  text-decoration: none;
  color: #ebe2e2;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.menu-fixed ul li a:hover {
  background: #ffffff;
  color: #4e6b8f;
  transform: scale(1.1);
  font-size: 1.2em;
}

.menu-fixed ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.menu-fixed ul li:hover ul {
  display: block;
}

/* ------------------ */
/* MENÚ HAMBURGUESA */
/* ------------------ */

.menu-hamburguesa {
  
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0; /* Ajustá según la altura deseada */
    left: 10px; /* Ajustá según esté `.introtext` */
    z-index: 6000;
  }
  


.menu-hamburguesa .line {
  width: 100%;
  height: 3px;
  background-color: #f6eded;
  margin: 3px 0;
}

/* ------------------ */
/* MENÚ DESPLEGABLE */
/* ------------------ */

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  width: 50vw;
  background-color:  #1e1e2e;
  padding: 10px 0;
  z-index: 6100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  max-height: 300%;
  margin-left: 60px;
  border-radius: 10px;
}

.dropdown-menu.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  color: #ecf0f1;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #34495e;
}

/* ------------------ */
/* BOTÓN WHATSAPP */
/* ------------------ */

.btn-wsp {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #25D366;
  color: white;
  font-size: 1.6rem;  /* antes 1.5rem */
  padding: 6px;        /* antes 12px */
  border-radius: 40%;  /* más ovalado si querés redondez leve */
  z-index: 6000;
}


/* ------------------ */
/* MEDIA QUERIES */
/* ------------------ */

@media (max-width: 768px) {

  .body {
    padding-top: 60px;
  }

  .menu-fixed {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    background: linear-gradient(90deg, #90cbdb, #8e93d6, #2831a7, #072d6b);
    background-size: 300% 100%;
    animation: soundWave 5s infinite linear;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6500;
  }

  .menu-content {
    display: flex;
    align-items: left;
    width: 50%;
    justify-content: flex-start;
  }

  .menu-fixed ul {
    display: flex;
    flex-direction: row;
    align-items: left;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: auto;
  }

  .menu-fixed ul li {
    display: flex;
    margin: 0;
    padding: 0;
  }

  .menu-fixed ul li a {
    font-size: 12px;
    padding: 0px 0.5px;
    white-space: nowrap;
    text-align: left;
    color: #ebe2e2;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 80px;
    width: 80px;
    overflow: hidden;
  }

  .menu-fixed ul li a:active,
  .menu-fixed ul li a:focus {
    font-size: 10px;
    color: #00cfff;
    background-color: #ffffff20;
    transform: scale(1.1);
  }

  .menu-fixed ul,
  .menu-fixed ul li,
  .menu-fixed ul li a {
    margin: 0 !important;
    padding: 0 !important;
  }


  .menu-hamburguesa {
    position: left; /* o absolute si querés ubicarlo con top/left */
    top:40px;
    align-items: left;
    z-index: 7000;
  }

/* Dropdown */
.dropdown-menu {
  display: none;
  flex-direction: column !important;
  position: absolute ;
  top: 100px;
  width: 300px;
  background-color: #1e1e2e;
  padding: 20px 40px; /* 20 arriba y abajo, 40 a los lados */
left: 0;
  z-index: 6200;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  max-height: 100vh;
  border-radius: 0;
  transform: none;
}

.dropdown-menu a {
  width: 100%;
  display: block;
  padding: 40px;
  text-align: left;
  font-size: 20px;
  color: #ecf0f1;
  text-decoration: none;
  border-bottom: 1px solid #3d566e;
}


.dropdown-menu a:hover {
  background: #34495e;
}


  .dropdown-menu.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
  }



  .btn-wsp {
    bottom: 10px;
    right: 10px;
    font-size: 1.2rem;
    padding: 10px;
  }

  header {
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }

  .header-content {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .intro-text {
    margin-top: 60px;
  }
}

/* ========== BOTÓN PERSONALIZADO ========== */
.arrow-link {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #2980b9;
  border-radius: 5px;
  transition: background 0.3s ease;
}




  .intro-text h6 {
    background: #060c21;
    color: #f3eded;
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    font-size: 16px;
    position: relative;
    z-index: 80; 
    border: 1px solid rgb(7, 7, 7);
  }
  
/* Sección de noticias */
.news-section {
  margin: 20px 0;
  text-align: center;
}

.news-section iframe,
iframe {
  border: none;
  width: 100%;
  height: 600px;
  max-width: 100%;
}
.schedule-section {
  background-color: #060c21;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.schedule-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.live-badge {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 4px 8px;
  margin-left: 10px;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.days {
  display: flex;
  flex-direction: row; /* Alinea en fila */
  flex-wrap: nowrap;   /* No permite que se vayan abajo */
  justify-content: space-between; /* O 'center' si preferís */
  align-items: stretch;  /* Estira todos los .day a la misma altura */
  width: 100%;
  overflow-x: auto; /* Para que no se rompa en pantallas chicas */
}


.day {
  flex: 1;
  min-width: 0; 
  max-width: 16.66%; /* 100% dividido por 6 columnas */
  height: 300px;
  overflow-y: auto;
  margin: 5px;
  box-sizing: border-box;
  border: 1px solid #333;
  padding: 0.5rem;
}



.day .show {
  background-color: #1e1e2e;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  color: #fff;
}

.day .show.live {
  border-left: 4px solid red;
  position: relative;
}

.day .show.live::before {
  content: 'EN VIVO';
  position: absolute;
  top: -10px;
  right: -10px;
  background: red;
  color: white;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .schedule-section {
    padding: 0.5rem;
  }

  .schedule-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .days {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .day {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    font-size: 0.75rem;
  }

  .day .show {
    font-size: 0.7rem;
    padding: 0.35rem;
  }

  .day .show.live::before {
    font-size: 0.45rem;
    padding: 1px 3px;
    top: -5px;
    right: -5px;
  }

  .live-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    margin-left: 6px;
  }
}



    .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 500px; /* Mantén la altura fija del carrusel para que las imágenes no se encojan */
      margin: 20px auto;
      border: 2px solid #0a0909;
      border-radius: 10px;
      background-color: rgb(45, 39, 70);
    }

    .carousel .slide {
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      display: none; /* Ocultar todas las diapositivas */
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    
    .carousel .slide.active {
      display: flex; /* Mostrar solo la diapositiva activa */
    }
    .carousel img {
      width: 100%; /* Asegura que la imagen ocupe todo el ancho del contenedor */
      height: 100%; /* Asegura que la imagen ocupe toda la altura del contenedor */
      object-fit: contain; /* Mantiene las proporciones de la imagen y la recorta si es necesario */
      object-position: center; /* Centra la imagen dentro del contenedor */
    }
    
    
    .caption {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px;
      font-size: 16px;
      text-align: center;
      z-index: 2; /* Asegura que la descripción esté por encima de la imagen */
    }
    
    .buttons {
      position: absolute;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      z-index: 2; /* Los botones estarán por encima de la imagen */
    }
    
    .buttons button {
      background-color: #332b53;
      color: #f1eff3;
      font-weight: bold;
      border: none;
      padding: 10px;
      cursor: pointer;
      outline: none;
      transition: background-color 0.3s, transform 0.3s;
    }
    
    .buttons button:hover {
      animation: blink 1s infinite;
    }
    
    .buttons button:active {
      background-color: #007bff;
      color: #fff;
    }
    
.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px auto 100px; /* Agrega un margen inferior de 100px */
}

/* Estilo del cartel ON AIR */
.on-air-sign {
  margin-bottom: 0;
  margin-top: 100px;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid black; /* Borde fino y negro */
  position: relative;
  border-top: 10px; /* Ajusta según lo alto que quieras colocarlo */
   background-color: red;
  color: white;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Sombra para el borde */
  animation: blink 1s infinite; /* Animación de parpadeo */
  z-index: 6;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.title p {
  font-size: 8cap;
  font-weight: bold;
  margin-bottom: 1cm;
  color: #000;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.youtube-container {
  margin-bottom: 5px;
  margin-right: 80px;
  display: flex;
  text-align: center;
  flex-direction: flex-start;
  margin-left: 5px;
}
/* Estilo de los íconos de las apps */
.youtube-icon {
  color: #ee0e0e; /* Asegura que el color del texto sea rojo */
  font-size: 25px; /* Tamaño del ícono de YouTube */
  width: 120px; /* Tamaño del círculo */
  height: 120px; /* Tamaño del círculo */
  background: #f0ebeb; /* Fondo claro del círculo */
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6); /* Sombra */
  border-radius: 50%; /* Hace el círculo redondo */
  text-align: center;
  line-height: 120px; /* Centra el texto verticalmente */
  display: flex;
  align-items: center;
  justify-content: center; /* Centra el contenido dentro del círculo */
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 50px;
}

.youtube-icon i {
  margin-right: 8px; /* Espacio entre el ícono y el texto */
  font-size: 24px; /* Ajusta el tamaño del ícono de YouTube */
}

.youtube-icon a {
  padding: 20px 30px;
  font-size: 1.5rem;
  color: #ee0e0e; /* Asegura que el texto del enlace sea rojo */
  text-decoration: none; /* Elimina el subrayado del texto del enlace */
  display: flex;
  align-items: center; /* Alinea el ícono y el texto verticalmente */
}

.youtube-icon:hover {
  transform: scale(1.1); /* Agranda el círculo al pasar el mouse */
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.8); /* Aumenta la sombra en el hover */
}
.h5 {
  font-family: "Trebuchet MS";
  font-size: 14px;
  color: #fff;
  text-shadow: 10px 10px 18px rgb(12, 11, 12);
  animation: fadeInOut 4s infinite;
}

.app-icon {
  margin-top: 0px;
  margin-right: 40px; /* Ajusta el margen según el ícono */
  position: relative;
  background: #a8a7ac; /* Fondo azul para el ícono de las apps */
}

.app-container {
  /* Centra verticalmente en la ventana */
  flex: 1;
  margin-right: 40px;
  display: flex; /* Establece el contenedor como flex */
  flex-direction: column;
  align-items: flex-end; /* Centra los elementos horizontalmente */
  gap: 10px; /* Espacio entre las aplicaciones */
  margin-bottom: 20px;
}

/* Estilo de cada aplicación */

.app {
  background-color: #a8a7ac;
  border: 2px solid #000; /* Marco más ancho */
  padding: 12px; /* Ajusta el espacio interno */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: auto; /* Ajusta la altura automática según el contenido */
  width: auto; /* Ajusta el ancho automático según el contenido */
  animation: blink 3s infinite;
  margin-bottom: 10px;
}
/* Asegúrate de que las imágenes no superen el contenedor */
.app img {
  max-width: 100%; /* Asegura que las imágenes no excedan el ancho del contenedor */
  height: 40% !important; /* Mantiene la proporción de la imagen */
  display: block; /* Asegura que los íconos estén en línea */
  margin: 10px; /* Centra los íconos horizontalmente */
}

h4 {
  font-family: "Trebuchet MS";
}
/* Animación de fade in y fade out */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Estilo para la leyenda de "Bajar app" */
.fade-text {
  font-size: 24px;
  color: #fff;
  text-align: center;
  animation: fadeInOut 4s infinite;
  margin-bottom: 10px; /* Espacio entre la leyenda y las imágenes */
}
.hero {
  width: 100%; /* Ocupa el 100% del ancho */
  height: 50vh; /* Altura reducida del hero */
  background-color: #262658; /* Fondo para visibilidad */
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  margin-top: 0; /* Agrega un margen superior si es necesario para separarlo del reproductor */
  z-index: 1;
}

.hero-content {
  margin-top: 0;
  display: flex;
  flex-direction: column; /* Cambia a columna si deseas que se alineen verticalmente */
  background: #060c21;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  gap: 20px; /* Ajusta el espacio entre los elementos */
}

/* Estilo para el párrafo debajo del hero */
.radio-intro {
  width: 100%;
  text-align: center;
  background-color: #413d3d;
  color: #fff;
  margin-top: 50px;
  padding: 10px 0;
}

p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  text-shadow: 10px 10px 18px rgb(156, 138, 189);
  position: relative;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 5;
  }
  100% {
    opacity: 1;
  }
}

.hero h1,
.prefooter {
  font-size: 3rem;
  color: #fff;
  text-shadow: 10px 10px 18px rgb(12, 11, 12);
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  text-align: center;
  text-shadow: 4px 4px 6px rgb(233, 223, 233,33,65);
  animation: blink 1s infinite;
}

.btn-wsp {
  position: fixed;
  bottom: 20px; /* Ajusta la distancia desde el fondo */
  right: 50px; /* Ajusta la distancia desde el lado derecho */
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 990;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Quita el subrayado del enlace */
}

.btn-wsp i {
  color: #fff;
  font-size: 24px; /* Tamaño del ícono de WhatsApp */
}

.btn-wsp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.radio-player-container {
  flex-direction: column; /* Apila los elementos en pantallas pequeñas */
  width: 100%;
  position: relative;

  min-height: 100px; /* O cualquier valor que consideres adecuado */
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #90cbdb, #8e93d6, #2831a7, #072d6b);
  background-size: 300% 100%;
  animation: soundWave 5s infinite linear;
  margin-bottom: 0;
  margin-top: 0;
  justify-content: center; /* Asegura que los elementos estén distribuidos en el contenedor */
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  overflow: hidden; /* Evita cualquier desbordamiento */
  z-index: 3;
}
/* Animación de movimiento de fondo */
@keyframes soundWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.radio-player {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; /* Alinea los elementos verticalmente en el centro */
  background-color: #1d0c49;
  border-radius: 10px;
  padding: 10px 10px;
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  overflow: visible;
  position: relative; /* o absolute si es necesario */
  z-index: 2; /* Aumenta el valor si es necesario */
}

.light {
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  position: relative;
  animation: glow 1s infinite alternate;
  margin-bottom: 10px;
}

.light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px 5px red;
  }
  100% {
    box-shadow: none;
  }
}

.radio-controls {
  display: flex;
  align-items: center;
  width: 100%;
}

.control-btn {
  background: none;
  border: none;
  color: #131111;
  font-size: 24px;
  cursor: pointer;
  margin-right: 20px;
}

.timer {
  color: #ece3e3;
  font-family: monospace;
  margin-right: 20px;
  flex: 1;
}

.volume-slider {
  width: 100px;
  cursor: pointer;
}

#volumeIcon {
  margin-left: 10px;
  color: grey;
}

/* Ajuste para la posición del formulario de suscripción */

.subscription-container {
  position: relative;
  display: flex; /* Añadido para centrar el contenido */
  justify-content: center; /* Centra el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
  margin-top: 0;
  margin-bottom: 80px;
  flex-direction: column;
  width: 90%; /* Ancho reducido para darle un margen en pantallas grandes */
  max-width: 100%; /* Máximo ancho para el contenedor */
  background-color: #8e7d7d;
  padding: 30px; /* Aumentado padding */
  border-radius: 10px;
  text-align: center;
  color: rgb(29, 28, 28);
  box-sizing: border-box;
  overflow: hidden;
  margin-left: auto; /* Margen automático para centrar */
  margin-right: auto; /* Margen automático para centrar */
}

#subscription-form {
  width: 100%; /* Asegura que el formulario ocupe todo el ancho del contenedor */
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#subscription-form label {
  font-weight: bold;
}

#subscription-form input {
  width: calc(100% - 20px); /* Ajusta el ancho para dejar margen a los lados */
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#subscription-form button {
  width: calc(
    100% - 20px
  ); /* Asegura que el botón se alinee bien con los campos de entrada */
  padding: 4px;
  background-color: #484a4b;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

#subscription-form button:hover {
  background-color: #9e8493;
}

.contact-form {
  width: 100%;
  max-width: 600px; /* Limita el ancho máximo del formulario */
  margin: 0 auto; /* Centra el formulario horizontalmente */
  padding: 20px;
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  overflow: hidden; /* Evita cualquier desbordamiento */
  margin-bottom: 0px;
  font-size: 24px;
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c4bbc1;
  border-radius: 5px;
  font-size: 16px;
}

.input-group textarea {
  resize: none;
}

button:hover {
  background-color: #222324;
}
/* Estilo específico para esta sección */

h3 {
  color: rgb(175, 156, 156);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 4px 4px 6px rgb(240, 238, 240);
}
.gallery-container {
  width: 100vw;
  height: 60vh; /* Mantiene el 80% de la altura de la pantalla */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 100px;
  position: relative;
  background-color:#0a0a0a;
  background-size: 100% 100%;
  animation: soundWave 5s infinite linear;
  margin-top: 40px;
  margin-bottom: 40px;
  justify-content: space-between; /* Asegura que los elementos estén distribuidos en el contenedor */
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  overflow: hidden; /* Evita cualquier desbordamiento */
}
/* Animación de movimiento de fondo */
@keyframes soundWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gallery {
  display: flex;
  width: 100%; /* Ajusta para que todas las imágenes se mantengan en el mismo lugar */
  position: absolute;
 
}

.gallery img {
  width: 18%; /* Ajusta para que todas las imágenes ocupen un tercio del ancho */
  object-fit: cover;
  border: 5px solid #ccc;
  border-radius: 10px;
  margin: 0 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.2; /* Inicialmente ocultas */
  animation: blink 4s infinite; /* Cambia la duración según lo necesites */
}

@keyframes fade {
  0%,
  20% {
    visibility: visible; /* Visible al inicio */
  }
  25%,
  95% {
    visibility: hidden; /* Desaparece gradualmente */
  }
}
footer {
  position: fixed;
  left: 0;
  background-color: #413d3d;
  color: #fff;
  z-index: 10;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 2px 0;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center; /* Centrar contenido verticalmente */
  justify-content: flex-between;
  position: relative;
  width: 100%;
  padding: 2px;
  flex-wrap: wrap;
  gap: 2px;
}

footer a {
  color: #f1f0f5;
  text-shadow: 1px 1px 2px purple;
  text-decoration: none;
  margin: 0 3px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: purple;
}

/* Animación blink */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Iconos sociales */
.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons {
  display: flex;
  margin-right: 20px; /* Espacio entre las redes sociales y el Linktree */
}

.social-icons a {
  display: inline-block;
 
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background-color: #e2dddd;
  color: #413d3d;
  font-size: 14px;
  text-align: center;
  margin: 10px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons a img {
  width: 20px; /* Tamaño estándar para los íconos */
  height: 20px;
  object-fit: cover; /* Ajusta la imagen al tamaño del contenedor */
  border-radius: 50%; /* Para íconos redondos */
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1); /* Efecto de escala al pasar el mouse */
}

/* Estilo del botón de Linktree */
.linktree-container a img {
  width: 20px;
  height: 20px;
}
.linktree-button {
  display: inline-block;
  width: 20px; /* Ancho igual al de los iconos sociales */
  height: 20px; /* Altura igual al de los iconos sociales */
  border-radius: 50%;
  overflow: hidden; /* Asegura que la imagen no sobresalga del botón */
  margin: 2px;
  transition: transform 0.3s;
}

.linktree-button img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen dentro del contenedor */
}

/* Copyright */
.copyright {
  margin-top: 5px;
  font-size: 10px;
  color: #f1f0f5;
}

.copyright a {
  color: #f1f0f5;
  text-shadow: 1px 1px 2px purple;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: purple;
}
/* Media queries para pantallas móviles */

  .radio-intro {
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente */
    padding: 10px; /* Añade espacio alrededor */
  }

  .radio-intro div {
    text-align: center; /* Alinea el texto al centro */
  }

  radio-intro p {
    font-size: 6px; /* Ajusta el tamaño del texto en función del ancho de la pantalla */
    text-align: center;
  }

  .hero h1 {
    
    font-size: 2rem;
  }
  .footer-content p {
    margin: 5px 0;
    font-size: 6px; /* Tamaño de la fuente */
  }

  p {
    font-size: 12px;
    overflow: hidden;
    text-align: center;
  }

 

  /* WhatsApp Button */
  .btn-wsp {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .btn-wsp i {
    font-size: 20px;
  }

  /* Ajuste para iconos sociales */
  .social-icons {
    justify-content: center;
    gap: 10px;
  }
  h2 {
    font-size: 0.8rem;
  }
  /* Título ajustado para móviles */
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .youtube-section,
  .news-section {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  /* Ajuste de la galería en dispositivos móviles */
  .gallery-container {
    height: 25vh;
    padding: 10px;
  }

  .gallery {
    width: 100%; /* Mostrar una imagen a la vez */
    animation: blink 4s infinite; /* Cambia la duración según lo necesites */

    @keyframes fade {
      0%,
      20% {
        visibility: visible; /* Visible al inicio */
      }
      25%,
      95% {
        visibility: hidden; /* Desaparece gradualmente */
      }
    }

    .gallery img {
      width: 50%; /* Ocupa todo el ancho en móvil */
      margin: 0;
    }

    /* Footer en Dispositivos Móviles */
    footer {
      padding: 5px 0;
      text-align: center;
    }

    /* Ajuste del Contenedor del Footer */
    .footer-container {
      width: 100%;
      justify-content: center;
      padding: 3px;
      gap: 5px;
    }

    .footer-container p {
      margin-top: auto; /* Reducir margen en móvil */
    }

    /* Enlaces del Footer */
    footer a {
      margin: 0 5px;
    }

    /* Iconos Sociales */
    .social-icons {
      margin-right: 0;
    }
    .social-icons a {
      width: 25px;
      height: 25px;
      line-height: 25px;
      font-size: 16px;
      margin: 3px;
    }
    .social-container {

    }
    .linktree-button {
      width: 10px;
      height: 10px;
    }
  }


    .carousel img {

      max-height: 300px; /* Ajusta la altura máxima según sea necesario */

    }
    .carousel .caption {
      font-size: 8px; /* Tamaño de fuente más pequeño para pantallas pequeñas */
      padding: 5px; /* Ajusta el padding si es necesario */
    }
    @media (min-width: 1024px) {
      .gallery-container {
        height: 70vh; /* Más altura en pantallas grandes */
        padding: 90px; /* Más espacio interno */
      }
    
      .gallery img {
        width: 22%; /* Imágenes un poco más grandes si querés */
        opacity: 0.4; /* Más visibles en pantallas grandes */
      }
    }
    

