/* Fondo como biografía */
body.musica-page {
  background: url("omg/fondomusica.webp") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Merriweather', Georgia, serif;
  margin: 0;
  color: #fff;
  padding-top: 100px;
}

/* Contenedor general */
.musica-container {
  padding: 100px 20px 40px;
  text-align: center;
}

/* Título principal */
.discografia-title {
  font-family: 'Merriweather', serif; /* tipografía elegante */
  font-size: 52px; /* un poco más grande */
  font-weight: 700; /* más grueso */
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff; /* blanco puro */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* sombra para destacar */
  letter-spacing: 1px; /* ligero espacio entre letras */
}

/* Grid de sencillos */
.grid-sencillos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cada sencillo */
.sencillo {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-align: center;
}

.sencillo img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 10px;
}

/* Título de cada sencillo */
.sencillo h2 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  margin: 8px 0;
}

/* Botón escuchar */
.btn-listen {
  background: #ff9800;
  color: black;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-listen:hover {
  background: #e68900;
}
