


/* --------------------------------------
   RESET Y CONFIGURACIÓN BÁSICA
----------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: auto;
  display: block;
 /* border-radius: 12px; */
}

/* --------------------------------------
   CONTENEDOR GENERAL
----------------------------------------- */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px 64px;
}

/* --------------------------------------
   HEADER
----------------------------------------- */
header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}



.logo-placeholder {
  width: 120px;
  height: 36px;
  background: #ff00bb;
  border-radius: 8px;
  flex-shrink: 0;
}



.img-logo {
    height: 4em;
    margin: 0.5em;
   /* background-color: #edeae6; */
    padding: 0.5rem;
    border-radius: 0.5rem;
 
}


.menu-button {
  background: none;
  border: none;
  color: #ff00bb;
  font-size: 32px;
  cursor: pointer;
  display: block;
}

/* --------------------------------------
  MENÚ HAMBURGUESA
----------------------------------------- */
nav {
    position: relative;
}

.menu-btn,
.menu-fondo {
    border-radius: 0.5em;
    padding: 1em;
    width: 3.5em;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 1.5em;
    right: 1em;
    z-index: 9000;
}

.menu-fondo {
    background:  #ff00bb;
    z-index: 8000;
}



.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: #ffffff;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}



nav ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0.25em;
    top: calc(100% + 4rem);
    z-index: 9999;
    transition: all .5s ease;
      list-style: none; /* 🔥 Esto quita los puntos */
  margin: 0;
  padding: 0;
}



nav ul li a {
    display: block;
    color: #ffffff;
    margin-block-end: .5em;
    width: min(40vw, 15rem);
    text-align: center;
    padding: 1em 0.5em 1em 2em;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #ffffff;
    transition: all .3s;
}


/* Presentacion del menú cuando está abierto */
header.menu-abierto nav ul {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.5em);
    background-color: #000000; /* Color de fondo para el menú desplegado */
    padding: 1em;
    border-radius: 0.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Estilos para las líneas del botón cuando se convierte en X */
.menu-btn.cerrar .btn-linea:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.cerrar .btn-linea:nth-child(2) {
    opacity: 0;
}

.menu-btn.cerrar .btn-linea:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------
   HERO / PORTADA VIDEO
----------------------------------------- */

.hero {
  position: relative;
  height: 500px;           /* ✅ Altura fija deseada */
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  background-color: #000;  /* fallback en caso que la imagen falle */
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero .video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}


/* --------------------------------------
   TÍTULO PRINCIPAL E INTRO
----------------------------------------- */
.main-title-section {
  text-align: center;
  padding: 48px 0 32px;
}
.main-title-section h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.main-title-section p {
  font-weight: 400;
  font-size: 1.125rem;
  color: #444;
  max-width: 420px;
  margin: auto;
  margin-bottom: 32px;
}

/* --------------------------------------
   BOTONES
----------------------------------------- */
.btn-primary,
.btn-pink {
  background-color: #ff00bb;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-pink:hover,
.btn-pink:focus {
  background-color: #e1009a;
  outline: none;
}

/* --------------------------------------
   TÍTULOS DE SECCIONES
----------------------------------------- */
.section-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ff00bb;
  border-left: 4px solid #ff00bb;
  padding-left: 12px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-title a {
  color: #ff00bb;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.section-title a .material-icons {
  font-size: 20px;
  margin-left: 4px;
}

/* --------------------------------------
   TARJETAS DE LANZAMIENTOS
----------------------------------------- */
.latest-release-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.latest-release-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 480px; /* antes era 360px */
  height: 300px; /* ✅ nuevo: fuerza altura mayor */
  background: #f5f5f5;
}
.latest-release-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.release-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 12px 20px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.release-info .album {
  font-style: italic;
  font-weight: 400;
}


/* --------------------------------------
   DOTS SLIDESHOW
----------------------------------------- */
.dots-container {
  text-align: center;
  margin-top: 12px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ff00bb;
  opacity: 0.5;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
}

/* --------------------------------------
   TARJETAS DE ARTISTAS - SCROLLEABLES Y CUADRADAS
----------------------------------------- */
.artists-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.artist-card {
  flex: 0 0 auto;
 /* width: 240px; */
  height: 170px;
  border-radius: 20px;
  background-color: #f5f5f5;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  transition: transform 0.3s ease;
}




.artist-home {
  flex: 0 0 auto;
  width: 215px;
  height: 230px;
  border-radius: 20px;
  background-color: #f5f5f5;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  transition: transform 0.3s ease;
}

.artist-home img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}



.artist-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.artist-name {
  background: white;
   padding: 12px 8px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  background-color: #f5f5f5; /* vuelve el fondo gris claro */
  border-radius: 0 0 20px 20px;
}

.artist-card:hover,
.artist-card:focus {
  transform: translateY(-4px);
}


/* --------------------------------------
   TARJETAS DE NOTICIAS
----------------------------------------- */
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.news-card {
  background-color: #000; /* 🔥 negro para toda la card */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 0, 187, 0.15);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  color: white;
}
.news-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.news-content {
  padding: 12px 20px 20px;
  color: #ffffff;
  background-color: #000000;
}
.news-tag {
  background-color: #ff00bb;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin: 6px 0px 4px 0px;
}
.news-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 12px 0px 8px 0px;
}
.news-description {
  font-weight: 100;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ffffff;
}
.read-more {
  color: #ff00bb;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  cursor: pointer;
  text-decoration: underline;
  
}
.read-more:hover,
.read-more:focus {
  text-decoration: underline;
  outline: none;
}



/* --------------------------------------
   FOOTER
----------------------------------------- */

.footer {
  background-color: #000;
  color: #fff;
  padding: 48px 24px 0;
  font-family: 'Inter', sans-serif;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  max-width: 160px;
  height: auto;
}

.footer-description {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 380px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  background-color: #ff00bb;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: #e1009a;
}

/* LINKS EN 2 COLUMNAS */
.footer-links-2col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 8px 32px;
}

.footer-links-2col li a {
  color: #ff00bb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
}

.footer-links-2col li a:hover {
  color: white;
}

.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* LEGAL */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 24px 0;
  font-size: 0.75rem;
  color: #888;
  text-align: center;
}

.footer-bottom a {
  color: #ff00bb;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* --------------------------------------
   PÁGINA NOTICIAS
----------------------------------------- */

.contenido {
  padding: 0;
  font-family: sans-serif;
}

.noticia-principal {
  position: relative;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 15%, transparent 95%);
  z-index: 1;
}


.imagen-principal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.texto-principal {
  position: absolute;
  bottom: 3.3rem;
  left: 2.3rem;
  padding-right: 1rem;
  z-index: 2;
  color: white;
}


.texto-principal h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.texto-principal p {
  margin: 0.5rem 0rem 2rem 0rem;
}

.boton-principal {
  display: inline-block;
  background-color: #ff00b7;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* Noticias secundarias */
.noticias-secundarias {
  padding: 2rem 1rem 1rem 1rem;
}

.noticia {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.noticia img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.texto h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1rem 0rem 1rem 0rem;
  color: #ff00b7;
}

.autor {
  font-size: 0.9rem;
  color: #555;
}
















/* --------------------------------------
   PÁGINA NOTICIA TAYLOR
----------------------------------------- */

.nota {
  padding: 1.5rem 1rem;
  font-family: sans-serif;
}

.etiquetas {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tag {
  color: #f0f0f0;
  background: #000000;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.titulo {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}

.bajada {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.fecha {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 1rem;
}

.descripcion-foto {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  font-style: italic;
  text-align: center;
}


.imagen-nota {
  width: 100%;
  margin: 1.5rem 0 0.5rem 0;
  border-radius: 12px;
  
}

.texto-nota p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.compartir {
  text-align: center;
  margin: 2rem 0;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.redes img {
  width: 24px;
  height: 24px;
}

.recomendaciones {
  margin-bottom: 2.5rem;
}

.recomendaciones h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.recomendaciones ul {
  list-style: none;
  padding: 0;
}

.recomendaciones li {
  color: #f0f0f0;
  background: #000000;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 200px;
}

.comentarios h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.comentario {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.8rem;
}

.contenido .nombre {
  font-weight: bold;
  margin: 0;
}

.contenido .tiempo {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

.contenido .mensaje {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.4;
}


.mostrar-mas {
  display: block;
  margin: 1rem auto;
  background: #ff00b7;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.nuevo-comentario {
  display: flex;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  
}

.nuevo-comentario button img {
  width: 24px;
  height: 24px;
}

.nuevo-comentario input {
  flex: 1;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.nuevo-comentario button {
  background: #ff00b7;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
}


.spotify {
  position: relative;
  padding-bottom: 56.25%;
  height: 400px;
  overflow: hidden;
 /* border-radius: 20px; */
  margin-bottom: 2rem;
}

.spotify iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
   /* border-radius: 20px; */
}





/* --------------------------------------
   PÁGINA SOBRE NOSOTROS
----------------------------------------- */

.hero-portada {
  position: relative;
  height: 65vh;
  overflow: hidden;
}

.hero-portada .portada {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-portada .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.hero-texto {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  color: white;
  z-index: 2;
}

.hero-texto h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.sobre-proyecto {
  padding: 1rem;
}

.sobre-proyecto h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.imagenes-proyecto {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.imagenes-proyecto img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}

.equipo {
  padding: 1rem;
}

.equipo h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.miembro {
  display: flex;
  flex-direction: column;
  background: #000;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  height: 100%; /* << OBLIGA a ocupar todo el alto del grid */
}

.equipo .miembro {
  margin-bottom: 1.5rem;
}

.miembro img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9; /* << Fuerza relación uniforme */
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1; /* << Hace que crezca a lo alto */
  padding: 0.8rem 1rem;
}

.info h3 {
  margin: 0.3rem 0;
  font-size: 1.1rem;
}

.info p {
  flex-grow: 1; /* << Empuja el link hacia abajo */
}

.info a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ff00b7;
  font-weight: bold;
  text-decoration: none;
}

.proyecto-contenido {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}








/* --------------------------------------
   FILTRO DE BÚSQUEDA DESPLEGABLE: DE ARTISTAS NACIONALES E INTERNACIONALES
----------------------------------------- */

.search-container {
  max-width: 500px;
  margin: 48px auto;
  padding: 0 24px;
}

.filter-toggle button {
  background-color: #ff00bb;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.filter-toggle button:hover {
  background-color: #e1009a;
}

.filter-toggle .arrow {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.filter-toggle button[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

/* Estilo de los filtros */
.filters {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.filters.active {
  display: flex;
}

.filters label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: block;
}

.filters select {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  background-color: #f1f1f1;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ff00bb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  color: #000;
}

/* Ocultar el botón "Buscar" por defecto */
#btnSearch {
  display: none;
}

/* Mostrarlo solo cuando los filtros están activos (form desplegado) */
.filters.active #btnSearch {
  display: inline-block;
  margin-top: 1rem;
}





/* --------------------------------------
   GRILLA DE ARTISTAS NACIONALES EN 2 COLUMNAS CON MÁRGENES
----------------------------------------- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 por fila */
  gap: 24px; /* separación entre cards */
  padding: 24px; /* margen interior */
      border-bottom: 1px solid #ccc;
}





/* --------------------------------------
   CARDS ARTISTAS NACIONALES E INTERNACIONALES
----------------------------------------- */

.msf-edicion .artist-card {
  border-radius: 20px;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.msf-edicion .artist-card:hover {
  box-shadow: 0 8px 20px rgba(255, 0, 187, 0.35); /* sombra rosa */
  transform: translateY(-4px);
}

.msf-edicion .artist-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.msf-edicion .artist-name {
  background-color: rgb(135, 214, 235); /* ✅ Fondo celeste */
  padding: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.msf-edicion .artist-name .arrow {
  font-size: 1.5rem;
  color: #ff00bb;
  line-height: 1;
}

/* Estado inicial: flecha hacia abajo (rotada 90°) */
#btnFilterToggle .arrow {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  color: white;
}

/* Cuando se expande: flecha hacia arriba (270°) */
#btnFilterToggle[aria-expanded="true"] .arrow {
  transform: rotate(270deg);
}


.fondointer {
  background-color: #000;
}




/* --------------------------------------
   CARDS ARTISTAS INTERNACIONALES
----------------------------------------- */

.msf-edicion .artist-inter {
 /* border-radius: 20px; */
  background: rgb(0, 0, 0);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.msf-edicion .artist-inter:hover {
  box-shadow: 0 8px 20px rgba(255, 0, 187, 0.35); /* sombra rosa */
  transform: translateY(-4px);
}

.msf-edicion .artist-inter img {
  width: 100%;
  height: 300px; /* 🔧 Subí de 240px a 300px */
  object-fit: cover;
  object-position: top center; /* ✅ Asegura que se vea bien la cara */
  display: block;
}

.msf-edicion .artist-inter {
  background-color: #ff00b7;
  padding: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.msf-edicion .artist-inter .arrow {
  font-size: 1.5rem;
  color: #ff00bb;
  line-height: 1;
}



/* --------------------------------------
   CARDS ARTISTAS NACIONALES - FUNCIONAL Y VISUAL OK
----------------------------------------- */

.artist-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background-color: white; /* ← punto y coma agregado */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.artist-card:hover {
  box-shadow: 0 8px 20px rgba(255, 0, 187, 0.35);
  transform: translateY(-4px);
}

.artist-card img {
  width: 100%;
  height: 300px;
  object-fit: cover; /* ✅ rellena sin deformar */
  object-position: top center; /* ✅ asegura que se vea la parte superior (cara) */
  display: block;
}

/* Nombre de artista */
.artist-name {
  background-color: rgb(238, 238, 238);
  color: #ff00bb;
  padding: 16px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  min-height: 60px;
}

.artist-link {
  text-decoration: none;
  color: inherit;
}








/* --------------------------------------
  CARDS ULTIMOS LANZAMIENTOS
----------------------------------------- */
.releases-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  padding: 48px 30px;
}

.release-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
 /*  align-items: flex-start;
  justify-content: flex-start;
  background-color: white;
  border-radius: 16px;
 padding: 16px;
  height: 100%;
  box-sizing: border-box; */
}

.release-card:last-child {
  border-bottom: none;
}

.release-card img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.release-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff00bb;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.release-text p {
  font-size: 1rem;
  color: #d34aa6;
  margin-top: 6px;
  font-weight: 400;
}

.release-text .arrow {
  font-size: 1.3rem;
  color: #ff00bb;
  margin-left: 8px;
}






/* --------------------------------------
  DISEÑO DETALLE UNIVERSIDAD
----------------------------------------- */
.song-detail {
  padding: 0rem 2rem 1.5rem;
  max-width: 720px;
  margin: auto;
  font-family: 'Inter', sans-serif;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
 /* border-radius: 20px; */
  margin-bottom: 2rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
   /* border-radius: 20px; */
}

.song-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.song-info p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.platforms h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.platform-icons {
  display: flex;
  gap: 16px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.platform-icons a img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000000;
  padding: 10px;
  transition: transform 0.2s ease;
}

.platform-icons a img:hover {
  transform: scale(1.1);
}

.other-section {
  margin-top: 2rem;
}

.other-section h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}










/* --------------------------------------
  PERFIL
----------------------------------------- */


.card-perfil {
  background-color: #000;
  border-radius: 20px;
  padding: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.foto-perfil {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 0.8rem;
}

.info-perfil h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-perfil p {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}



/* --------------------------------------
  Botón ver más
----------------------------------------- */

.vermas a {
 
color: #ff00b7;
text-decoration: underline;

}




/* --------------------------------------
LALI DISCOGRAFÍA 
----------------------------------------- */

/* Contenedor general del video + presentación */
.hero-completo {
  background-color: #000;
  padding-bottom: 24px;
}
.video-wrapper {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* disco */
.lali-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  padding: 0px 30px;
}


/* Presentación con nombre + corazón */
.presentacion-lali {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  padding: 24px;
}
.presentacion-lali h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.heart-icon {
  background: none;
  border: none;
  color: #ff00bb;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heart-icon .material-icons {
  font-size: 32px;
  transition: color 0.2s ease;
}

/* Filtros de navegación con outline + hover + click */
.filter-toggle {
  display: flex;
  flex-direction: column; /* Mobile: uno abajo del otro */
  gap: 12px;
  align-items: center;
  margin: 24px auto;
}

.filter-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #ff00bb;
  border-radius: 999px;
  background: transparent;
  color: #ff00bb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: #ff00bb;
  color: white;
}
.filter-btn.active {
  background-color: #ff00bb;
  color: white;
}

/* Título de sección (alineado a la izquierda) */
.discografia-titulo {
  padding: 24px;
  margin-top: 10px;
}
.discografia-titulo h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}
.discografia-titulo hr {
  width: 100%;
  height: 2px;
  background-color: #000;
  border: none;
  margin: 0px 0px 24px 0px;
}


/* LISTADO ACORDEoN DE CANCIONES */
.song-detail {
  padding: 2rem 1.5rem;
  max-width: 720px;
  margin: auto;
  font-family: 'Inter', sans-serif;
}

.song-lali {
  padding: 1rem 1.5rem;
  max-width: 720px;
  margin: auto;
  font-family: 'Inter', sans-serif;
}

.track-item {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-left: 3px solid #ff00bb;
  background: transparent;
  font-weight: 700;
  transition: background 0.3s ease, border-radius 0.3s ease;
  display: flex;
  flex-direction: column;
}

.track-item.open {
  background-color: #ff00bb;
  color: #ffffff;
  border-radius: 8px;
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-item .arrow {
  font-size: 1.5rem;
  color: #ff00bb;
  transition: transform 0.3s ease, color 0.3s ease;
}

.track-item.open .arrow {
  transform: rotate(180deg);
  color: white;
}

.track-body {
  display: none;
  margin-top: 10px;
}

.track-item.open .track-body {
  display: block;
}

.track-detail {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 8px;
}

.spotify-embed iframe {
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 12px;
  margin-top: 4px;
}

/* cards de artistas */
.latest-release-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  padding: 24px;
  justify-content: center;
}

.single-card {
  background-color: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1; /* cuadrada */
  box-shadow: 0 0 12px rgba(255, 0, 187, 0.2);
  transition: transform 0.3s ease;
}

.single-card:hover {
  transform: translateY(-6px);
}

.single-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.single-info span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ff00bb;
  text-transform: none;
}


/* --------------------------------------
   BIOGRAFÍA LALI
----------------------------------------- */

.parrafolali {
  margin: 1.2rem 0 1.5rem 0;
  line-height: 1.6;
}

.bio-foto {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.bio-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 24px 0;
}

.bio-doble-fotos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
 
}

.bio-doble-fotos img {
  width: 100%;
  max-width: 48%;
  border-radius: 14px;
  height: auto;
}

.spotify {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  min-height: 352px;
  margin: 32px 0;
}

.spotify iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


.spacing-lali {
  margin-block: 64px;
  padding: 0px 24px 0px 24px;
}


.lali-titulo {
  
  margin-top: 10px;
}
.lali-titulo-titulo h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}
.lali-titulo-titulo hr {
  width: 100%;
  height: 2px;
  background-color: #000;
  border: none;
  margin: 0px 0px 24px 0px;
}





/* Frase destacada dentro del bloque negro */
.cards-dark-flat {
  background-color: #000;
  padding: 40px 24px;
  margin-top: 24px;
  border-radius: 0;
}

.cards-dark-flat h2 {
  color: #ffffff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto;
}

.cards-dark-flat h2 em {
  font-style: italic;
  font-weight: 400;
}

.bio-img-full {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;         
  margin-top: 0;           
}










/* --------------------------------------
   PREMIOS LALI
----------------------------------------- */

.parrafopremios {
  margin: 24px;
  line-height: 1.6;
}

.recognitions-list .star {
  color: #ffc107; /* amarillo como en la imagen */
  font-size: 1.5rem;
  line-height: 1;
  user-select: none;
  margin-top: 2px;
}

.card {
  margin: 24px;
}

.card img {
  border-radius: 16px;
}

.cards-negro-bg h2 {
  color: white;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 0;
}

.recognitions-list {
  margin-top: 16px;
  margin-bottom: 40px;
}


.cards-negro-bg.card {
  padding: 24px;
  background-color: #000;
 
  color: white;
}

.cards-negro-bg.card img {
  border-radius: 12px;
  margin-bottom: 16px;
}


/* edicion para Distinciones estatales y culturales y destacados */

.recognitions-list {
  margin: 32px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Espacio entre ítems */
}

.recognitions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.recognitions-list .star {
  color: #ffc107;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.recognitions-list .text {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}

.recognitions-list {
  margin: 32px 24px; /* igual al padding lateral usado en .container */
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recognitions-wrapper {
  padding: 0 24px;
}






.musica-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.musica-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  padding: 24px;
  justify-content: center;
}

























/* --------------------------------------
   PARA QUE NO HAYA ESPACIO EN BLANCO A LOS COSTADOS
----------------------------------------- */

body {
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
}








/* --------------------------------------
   @media - TABLET (768px)
----------------------------------------- */

@media (min-width: 768px) {
  .news-container {
    justify-content: flex-start;
  }

  .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 60px 64px; 
  }
}

/* --------------------------------------
   FOOTER
----------------------------------------- */

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-column {
    flex: 1;
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }
}

body {
  position: relative;
}

@media (min-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------
 HOME - ÚLTIMOS LANZAMIENTOS 
 ----------------------------------------- */

 @media (min-width: 768px) and (max-width: 1199px) {
  .latest-release-container {
    display: block !important;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 24px; 
  }

  .latest-release-card {
    display: none;
    width: 100%; 
    max-width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
  }

  .latest-release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dots-container {
    display: block;
    margin-top: 16px;
  }
}

/* --------------------------------------
  HOME - ÚLTIMAS NOTICIAS
----------------------------------------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .news-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 0 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .news-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
  }
}







/* --------------------------------------
  PÁGINA - SOBRE NOSOTROS
----------------------------------------- */
@media (min-width: 768px) {
  .hero-portada {
    height: 80vh;
  }

  .hero-texto {
    bottom: 2rem;
    left: 2rem;
    right: auto;
    max-width: 60%;
  }

  .hero-texto h1 {
    font-size: 3.5rem;
  }

  .imagenes-proyecto {
    flex-direction: row;
    justify-content: center;
  }

  .equipo h2 {
    grid-column: 1 / -1;
  }
  

  .equipo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    /* padding: 2rem; */
    align-items: stretch;
  }
  
  .miembro {
    margin-bottom: 0;
  }
}
  




/* --------------------------------------
  PÁGINA - ÚLTIMOS LANZAMIENTOS
----------------------------------------- */
@media (min-width: 768px) {
  .releases-list {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 48px 32px;
    padding: 48px 64px;
  }
}





/* --------------------------------------
  PÁGINA - NOTICIAS
----------------------------------------- */
@media (min-width: 768px) {
  .noticias-secundarias {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 48px 32px;
    padding: 48px 64px;

  }
}




/* --------------------------------------
  NOTICIA TAYLOR
----------------------------------------- */
@media (min-width: 768px) {
  .nota {
    padding: 2rem 3rem;
  }

  .titulo {
    font-size: 2rem;
  }

  .bajada, .texto-nota p {
    font-size: 1.1rem;
  }

  .fecha {
    font-size: 0.9rem;
  }

  .recomendaciones ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .comentario {
    gap: 1rem;
  }

  .imagen-nota {
    max-width: 90%;
    margin: 2rem auto;
    display: block;
  }

  .spotify {
    height: 500px;
  }
}






/* --------------------------------------
  PÁGINA - PERFIL
----------------------------------------- */
/* TABLET - A partir de 768px */
@media (min-width: 768px) {
  .card-perfil {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    text-align: left;
  }

  .foto-perfil {
    width: 250px;
    max-width: 100%;
    margin-bottom: 0;
  }

  .info-perfil h2 {
    font-size: 1.5rem;
  }

  .info-perfil p {
    font-size: 1rem;
    text-align: left;
  }

  .artists-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /*justify-content: center; */
  }

  .artist-home {
    width: 150px;
  }

  .artist-home img {
    width: 100%;
    /* border-radius: 12px; */
  }

  .artist-name {
    text-align: center;
    font-weight: bold;
   /* margin-top: 0.5rem; */
    font-size: 0.95rem;
  }
}




/* --------------------------------------
  PÁGINA - nacionales
----------------------------------------- */
@media (min-width: 768px) {

.artist-card {
height: 250px;
}

.artists-grid {
padding: 10px 75px 75px 75px;
}

.texto-principal {
    position: absolute;
    bottom: 3.3rem;
    left: 75px;
    right: 1rem;
    z-index: 2;
    color: white;
}

}



/* --------------------------------------
  Lali 1
----------------------------------------- */

@media (min-width: 768px) {

.spacing-lali {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.discografia-titulo{
   max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem 2rem;
}

.parrafopremios {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 0.5rem 2rem;
}

.card {
 max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 0.5rem 2rem;
}

.recognitions-wrapper{
   max-width: 960px;
    margin: 0 auto;
    padding: 0rem 2rem 0rem 2rem;
}

.recognitions-list {
    margin: 10px 24px 20px 24px;
}


}





















/* --------------------------------------
   @media - DESKTOP (1200px)
----------------------------------------- */

/* --------------------------------------
  HOME
----------------------------------------- */
@media (min-width: 1200px) {
  nav ul {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: static;
    background: none;
  }

  nav ul li a {
   display: inline;
    color: #ffffff;
    margin-block-end: .5em;
    width: min(40vw, 15rem);
    text-align: center;
    padding: 15px 25px 15px 25px;
    text-decoration: none;
  }

  .menu-btn {
    display: none;
  }
  .noticia-principal {
    position: relative;
    width: 100%;
    height: 90vh; 
    overflow: hidden;
  }
  .imagen-principal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }  
  .news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }  
  header nav ul li a:hover {
    background-color: #ffffff;
    color: #ff00bb;
    font-weight: bold;
  }
  header nav ul li {
    list-style: none;
  }  



}


/* --------------------------------------
   HOME - ÚLTIMOS LANZAMIENTOS
----------------------------------------- */
@media (min-width: 1200px) {
  .latest-release-container {
    display: block;
    width: 100%;
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 24px; 
  }

  .latest-release-card {
    width: 100%;
    max-width: 100%;
    height: 550px; 
    aspect-ratio: auto; 
    border-radius: 16px; 
    overflow: hidden;
  }

  .latest-release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}



/* --------------------------------------
   HOME - CARDS ARTISTAS
----------------------------------------- */

@media (min-width: 1200px) {
.artist-home {
    flex: 0 0 auto;
    width: 215px;
    height: 230px;
   /* border-radius: 20px; */
    background-color: #f5f5f5;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    transition: transform 0.3s ease; 
}



}






/* --------------------------------------
  PÁGINA - SOBRE NOSOTROS
----------------------------------------- */
@media (min-width: 1200px) {
  .hero-texto {
    left: 3rem;
    bottom: 3rem;
    max-width: 50%;
  }

  .hero-texto h1 {
    font-size: 4rem;
    margin-left: 100px;
  }

  .info h3 {
    font-size: 1.25rem;
  }


  .sobre-proyecto {
    margin: 7px 130px;
  }

  .proyecto-contenido {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }

  .imagenes-proyecto {
    width: 45%;
    height: auto;
  }

  .imagenes-proyecto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }

  .texto-proyecto {
    width: 55%;
    display: flex;
    align-items: center;
  }

  .texto-proyecto p {
    line-height: 1.6;
  }
  
  .equipo {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px; 
    margin: 7px 130px;     
  }
}








/* --------------------------------------
  PÁGINA - ÚLTIMOS LANZAMIENTOS
----------------------------------------- */
@media (min-width: 1200px) {
  .releases-list {
    grid-template-columns: repeat(4, 1fr); /* 4 columnas para desktop */
    gap: 48px;
  }
}







/* --------------------------------------
  PÁGINA - UNIVERSIDAD
----------------------------------------- */
@media (min-width: 1200px) {
  .song-detail {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }

  .song-info {
    flex: 1;
  }

  .platforms {
    flex: 1;
  }

  .platform-icons {
    justify-content: flex-start;
  }
}







/* --------------------------------------
  PÁGINA - NOTICIAS
----------------------------------------- */
@media screen and (min-width: 1200px) {
  .noticias-secundarias {
    max-width: 1200px;
    margin: 0 auto;
     padding: 48px 157px;
    margin-top: 64px;
  }

  .noticias-secundarias article {
    max-width: 900px;
    margin: 0 auto 48px auto;
  }
}



/* --------------------------------------
  NOTICIA TAYLOR
----------------------------------------- */
@media (min-width: 1200px) {
  .nota {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
  }

  .texto-nota {
   /* columns: 2; */
    column-gap: 3rem;
  }

  .texto-nota img {
    column-span: all;
    display: block;
    margin: 2rem auto;
  }

  .descripcion-foto {
    font-size: 1rem;
    margin-top: auto;
  }

  .spotify {
    height: 480px;
  }

  .recomendaciones ul {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comentario {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}













/* --------------------------------------
  PÁGINA - PERFIL
----------------------------------------- */
/* DESKTOP - A partir de 1200px */
@media (min-width: 1200px) {
  .card-perfil {
    max-width: 900px;
    margin: 2rem auto;
  }

 /* .artists-scroll {
    max-width: 1000px;
    margin: 0 auto 3rem auto;
  } */
}




/* --------------------------------------
  PÁGINA - nacionales
----------------------------------------- */
@media (min-width: 1200px) {

.artist-card {
height: 250px;
}

.artists-grid {
padding: 10px 75px 75px 75px;
}

.texto-principal {
    position: absolute;
    bottom: 3.3rem;
    left: 75px;
    right: 1rem;
    z-index: 2;
    color: white;
}

}



/* --------------------------------------
  Lali paginas
----------------------------------------- */

@media (min-width: 1200px) {

.spacing-lali {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.parrafopremios {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 0.5rem 2rem;
}



.discografia-titulo{
   max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem 2rem;
}

.parrafopremios {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 0.5rem 2rem;
}

.card {
 max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 0.5rem 2rem;
}

.recognitions-wrapper{
   max-width: 960px;
    margin: 0 auto;
    padding: 0rem 2rem 0rem 2rem;
}

.recognitions-list {
    margin: 10px 24px 20px 24px;
}

.release-card:last-child {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
}


.song-lali {
 max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.musica-container {
   display: grid;
   max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

   

}