/* =========================
   GENERAL
========================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

.valores-list {
  text-align: left;     /* Alinea todo a la izquierda */
  padding-left: 0;      /* Elimina margen interno extra */
  margin: 20px 0 0 0;   /* Separación desde el título */
  line-height: 1.6;
  list-style: disc inside; /* Los bullets se alinean con el texto */
}

.site-name {
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
  margin-left: 10px;
  flex-shrink: 0;
  justify-content: space-around;
}

h2 {
  font-size: 2em;
  color: #8e44ad;
  text-align: center;
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: #8e44ad;
}

a:hover {
  color: #f4c95d;
}

/* =========================
   HEADER
========================= */
header {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  height: 60px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: #ffffff;
  font-weight: bold;
}

.menu li a:hover {
  color: #8e44ad;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 70vh;
  background-image: url('https://scontent.fmex19-1.fna.fbcdn.net/v/t39.30808-6/535352029_3206072339559479_6304028711853098094_n.jpg?...');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(219, 218, 217, 0.813);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.5em;
  color: hsl(0, 0%, 100%);
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  color: hsl(0, 0%, 100%);
  margin-bottom: 20px;
}

/* =========================
   PLAYER
========================= */
.player-box {
  position: relative;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 20px;
  max-width: 400px;
  margin: auto;
}

.player-box h3 {
  color: #8e44ad;
  margin-bottom: 10px;
}

audio {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 10px auto;
  pointer-events: auto;
  opacity: 1;
}

.buttons {
  margin-top: 15px;
}

.btn-purple, .btn-gold {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  color: white;
  margin: 5px;
  text-decoration: none;
}

.btn-purple {
  background-color: #8e44ad;
}

.btn-purple:hover {
  background-color: #732d91;
}

.btn-gold {
  background-color: #f4c95d;
}

.btn-gold:hover {
  background-color: #e0b84f;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  border-top: 4px solid #8e44ad; /* línea divisoria */
}

/* Fondo específico por sección */
#hero-section {
  background-color: #f2f2f2; /* gris claro */
}

#player-section {
  background-color: #e6e6fa; /* lavanda suave */
}

#staff-section {
  background-color: #f5f5dc; /* beige claro */
}

#program-section {
  background-color: #f0f8ff; /* azul muy pálido */
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
  color: #8e44ad;
  margin-bottom: 10px;
}

.card p {
  color: #333;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  color: #ffffff;
}

.social a:hover {
  color: #8e44ad;
}

.visitas {
  margin-top: 10px;
  color: #cccccc;
}

/* =========================
   STAFF
========================= */
.staff-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.staff-card {
  background: linear-gradient(135deg, #f4c95d, #8e44ad);
  border-radius: 20px;
  overflow: hidden;
  width: 250px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  color: #fff;
}

.staff-card:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.staff-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #fff;
}

.staff-info {
  padding: 15px;
}

.staff-info h3 {
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 8px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.staff-info h4 {
  font-size: 1em;
  margin-bottom: 10px;
  color: #f4c95d;
  font-weight: normal;
}

/* =========================
   MODALS STAFF
========================= */
.staff-modal, .program-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.staff-modal-content, .program-modal-content {
  background: linear-gradient(135deg, #f4c95d, #8e44ad);
  color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 15px;
  max-width: 500px;
  text-align: left;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #f4c95d;
}

/* =========================
   PROGRAMACIÓN
========================= */
.program-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.program-card {
  width: 280px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #8e44ad;
}

.program-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Modals de programas con colores que combinen */
#modal1 .program-modal-content {
 background: linear-gradient(135deg, #000000, #0a5e3a); /* negro a verde */
  color: #ffffff;
}

#modal2 .program-modal-content {
  background: linear-gradient(135deg, #8b1f7f, #f4c95d); /* rosa metalizado degradado */
}

#modal3 .program-modal-content {
  background: linear-gradient(135deg, #000000, #ff4500, #ff0000); /* negro naranja rojo degradado */
}

/* Nuevo programa CyA */
#modalCyA .program-modal-content {
  background: linear-gradient(135deg, #db0808, hsl(223, 81%, 50%), hwb(52 48% 5%));
}

/* Modal En Concierto Con: negro, azul y amarillo metálico */
#modalECN .program-modal-content {
  background: linear-gradient(135deg, #000000, #1e90ff, #f4c95d);
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  .hero-content h2 {
    font-size: 2.2em;
  }
  .hero-content p {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 768px) {
  /* Header y menú */
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* Hero */
  .hero {
    height: 50vh;
  }
  .hero-content h2 {
    font-size: 1.8em;
  }
  .hero-content p {
    font-size: 1em;
  }

  /* Cards de staff y programas */
  .staff-card, .program-card, .card {
    width: 90%; /* Se adaptan al ancho del móvil */
    margin: auto;
  }

  /* Player */
  .player-box {
    max-width: 95%;
    padding: 15px;
  }

  /* Footer redes sociales */
  .social {
    flex-direction: column;
    gap: 10px;
  }

  /* Valores list */
  .valores-list {
    padding-left: 10px;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 40vh;
  }
  .hero-content h2 {
    font-size: 1.5em;
  }
  .hero-content p {
    font-size: 0.95em;
  }
  .btn-purple, .btn-gold {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}
