/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

/* Navbar */
.navbar-top {
  background-color: #000000;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-marca {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-marca img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.logo-marca span {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e8dfc0;
  letter-spacing: 2px;
}

.logo-marca span .letra-q {
  color: #3aad63;
}

.badge-playlist {
  background-color: #3aad63;
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.info-nav {
  color: #b3b3b3;
  font-size: 0.85rem;
  font-weight: 600;
}

.info-nav i {
  color: #3aad63;
  margin-right: 4px;
}

/* Sección hero */
.seccion-hero {
  background: linear-gradient(180deg, #1a3a2a 0%, #121212 100%);
  padding: 50px 0 30px;
}

.etiqueta-playlist {
  background: rgba(58, 173, 99, 0.15);
  border: 1px solid rgba(58, 173, 99, 0.4);
  color: #3aad63;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.titulo-principal {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.titulo-principal .verde {
  color: #3aad63;
}

.subtitulo {
  color: #b3b3b3;
  font-size: 1rem;
  margin-bottom: 20px;
}

.info-extra {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  color: #b3b3b3;
  font-size: 0.85rem;
}

.info-extra i {
  color: #3aad63;
}

.btn-ver {
  background-color: #3aad63;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ver:hover {
  background-color: #2d8a4e;
  color: #ffffff;
}

.icono-deco {
  font-size: 7rem;
  color: #3aad63;
  opacity: 0.1;
}

/* Sección canciones */
.seccion-canciones {
  padding: 40px 0 60px;
}

.etiqueta-seccion {
  color: #3aad63;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.titulo-seccion {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Tarjeta de canción */
.tarjeta {
  background-color: #282828;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: background 0.3s, transform 0.2s;
}

.tarjeta:hover {
  background-color: #3e3e3e;
  transform: translateY(-4px);
}

.tarjeta-cabecera {
  padding: 12px 12px 5px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.numero {
  background: rgba(58, 173, 99, 0.15);
  color: #3aad63;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.nombre-cancion {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.artista {
  color: #3aad63;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0 12px 4px;
  display: block;
}

.descripcion {
  color: #b3b3b3;
  font-size: 0.78rem;
  padding: 0 12px 10px;
  line-height: 1.5;
}

/* Video de YouTube */
.contenedor-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.contenedor-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sello-video {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #3aad63;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  z-index: 2;
  pointer-events: none;
}

/* Footer */
.pie-pagina {
  background-color: #000000;
  border-top: 1px solid #333;
  padding: 30px 0 20px;
  text-align: center;
}

.pie-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #e8dfc0;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.pie-logo span {
  color: #3aad63;
}

.pie-frase {
  color: #b3b3b3;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.pie-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0 10px;
}

.pie-links a:hover {
  color: #ffffff;
}

.pie-copy {
  color: #555;
  font-size: 0.75rem;
  margin-top: 15px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
