/* Estilo para la barra de navegación con un degradado de colores */
.color-navbar{
    background: linear-gradient(to right, #CE2528, #E77B32, #FAC038);
} 

/* Estilo botones de provincias */
.provincias {
  padding: 20px 0;
}

.provincia-btn {
  background-color: #d93025;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  /* Sombra degradada */
  box-shadow: 0 4px 8px rgba(217, 48, 37, 0.4), 
              0 2px 4px rgba(217, 48, 37, 0.3);
}

.provincia-btn:hover {
  background-color: #b1221d;
  transform: scale(1.05);
  /* Sombra más intensa al hover */
  box-shadow: 0 6px 12px rgba(217, 48, 37, 0.5), 
              0 3px 6px rgba(217, 48, 37, 0.4);
}

/* Menú desplegable */
.provincia-menu {
  display: none;
  background-color: white;
  border: 2px solid #d93025;
  border-radius: 4px;
  padding: 10px;
  margin-top: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease;
}

.provincia-menu.active {
  display: block;
}

.provincia-menu p {
  color: #d93025;
  margin: 0;
}

.provincia-menu small {
  color: #666;
}

/* Animación de apertura */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Estilo para reproductor-player */
.reproductor-player {
    border-radius: 25px;
    overflow: hidden;
    border: none;
    /* Forzar el redondeo con clip-path como respaldo */
    clip-path: inset(0 round 25px);
}

/* Corregir superposición en móviles */
.reproductor-radio {
  position: relative;
  margin-bottom: 30px;
}

.reproductor-tv {
  position: relative;
  clear: both;
  margin-top: 30px;
}

/* Ajustes para móviles */
@media (max-width: 991px) {
  .reproductor-radio .row {
    min-height: auto !important;
    max-height: none !important;
  }
  
  .reproductor-radio .col-md-12 {
    margin-bottom: 20px;
  }
  
  .reproductor-radio img {
    height: auto !important;
    max-height: 300px;
    object-fit: contain;
  }
  
  .reproductor-radio iframe {
    min-height: 250px !important;
  }
  
  .reproductor-tv {
    margin-top: 40px;
  }
}

/* Asegurar que las imágenes no se deformen */
.anuncia-con-nosotros,
.app-play-store {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
}




/* letras reproductor */
.reproductor-tv h2 {
  font-size: 3.0rem; /* Tamaño del título */
  color: #333;
}

.reproductor-tv p {
  font-size: 2.0rem; /* Tamaño del subtítulo */
  color: #666;
}

/* En móviles, hacer el título más pequeño */
@media (max-width: 768px) {
  .reproductor-tv h2 {
    font-size: 1.25rem;
  }
  
  .reproductor-tv p {
    font-size: 0.85rem;
  }
}






/* Footer styles */
footer {
  background-color: #000 !important;
}

footer .nav-link {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

footer .nav-link:hover {
  color: #dc3545 !important;
}

footer .social-icons a {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

footer .social-icons a:hover {
  transform: translateY(-5px);
  background-color: #dc3545 !important;
  color: white !important;
}

footer h5 {
  color: white;
  border-bottom: 2px solid #dc3545;
  display: inline-block;
  padding-bottom: 5px;
}

footer ul li a:hover {
  color: #dc3545 !important;
}

/* Responsive */
@media (max-width: 768px) {
  footer .nav {
    flex-direction: column;
    text-align: center;
  }
  
  footer .nav-link {
    padding: 0.5rem 0;
  }
  
  footer h5 {
    text-align: center;
    display: block;
  }
  
  footer ul {
    text-align: center;
  }
}
