/* Fondo estilo "modo singularidad": azul profundo cinematográfico */
body.voces-page {
  background: radial-gradient(
      circle at center,
      rgba(60, 90, 130, 0.18) 0%,
      rgb(8, 12, 20) 80%
    );
  color: #e5dfd1;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}


/* ===== TÍTULO E INTRO ===== */

.titulo-voces {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 46px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #f2e9d6;
}

.intro-voces {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #e2d8c7;
}


/* ===== CARRUSEL ===== */

.carrusel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 28px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
}

.carrusel::-webkit-scrollbar {
  height: 8px;
}

.carrusel::-webkit-scrollbar-thumb {
  background: rgba(217, 193, 142, 0.45);
  border-radius: 8px;
}


/* ===== CARDS ===== */

.card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 210px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 22px rgba(217, 193, 142, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(240, 220, 180, 0.35);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #f4ead8;
}


/* ===== MODALES (POP-UP) ===== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(20, 25, 35, 0.95);
  width: 90%;
  max-width: 520px;
  margin: 80px auto;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 35px rgba(255, 230, 180, 0.25);
  animation: pop 0.35s ease forwards;
}

@keyframes pop {
  from { transform: scale(0.75); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.modal-content img {
  width: 75%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h2 {
  font-family: "Playfair Display", serif;
  color: #f6e6c9;
  margin-bottom: 8px;
}

.modal-content p {
  color: #e6dccc;
  line-height: 1.6;
  font-size: 17px;
}


/* ===== BOTÓN CERRAR ===== */

.cerrar {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 34px;
  text-decoration: none;
  color: #f6e6c9;
  transition: 0.2s;
}

.cerrar:hover {
  color: white;
}
