

/* --------------------------------------
   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: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  
}

.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;
}



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: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.artist-card {
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  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-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: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 0, 187, 0.15);
  max-width: 360px;
  display: flex;
  flex-direction: column;
}
.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: #000000;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}


.footer-logo {
  width: 150px;
  height: 48px;
  background: #ff00bb;
  border-radius: 32px;
}
.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-label {
  color: #ff00bb;
  font-weight: 700;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icon-button {
  background: #ff00bb;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.social-icon-button:hover,
.social-icon-button:focus {
  background: #e1009a;
  outline: none;
}

/* --------------------------------------
   RESPONSIVE
----------------------------------------- */
@media (max-width: 767px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-title-section h1 {
    font-size: 2rem;
  }
  .btn-primary, .btn-pink {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .latest-release-card {
    max-width: 100%;
    margin: auto;
  }
  .news-container {
    flex-direction: column;
    align-items: center;
  }
}

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

/* --------------------------------------
   ESPACIADO ENTRE SECCIONES
----------------------------------------- */
.spacing-xl {
  margin-block: 96px; /* aire arriba y abajo */
}

.spacing-lg {
  margin-block: 64px;
}

.spacing-md {
  margin-block: 48px;
}

/* --------------------------------------
   GRILLA DE CARDS CON FONDO OSCURO
----------------------------------------- */
.cards-dark-bg {
  background-color: #000;
  padding: 40px 24px;
  border-radius: 20px;
  margin-top: 24px;
}

.cards-dark-bg .artist-name {
  color: #fff;
}


















/* --------------------------------------
   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;
  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 {
  background: #eee;
  padding: 0.2rem 0.6rem;
  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: 0rem;
  margin-bottom: 0.3rem;
  font-style: italic;
}


.imagen-nota {
  width: 100%;
  margin: 1.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 {
  background: #f0f0f0;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
}

.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;
}








/* --------------------------------------
   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;
}

.equipo {
  padding: 1rem;
}

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

.miembro {
  background: #000;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.miembro img {
  width: 100%;
  display: block;
}

.info {
  padding: 0.8rem 1rem;
}

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

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










/* --------------------------------------
   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 */
}





/* --------------------------------------
   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: white;
  padding: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ff00bb;
  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);
}






/* --------------------------------------
  CARDS ULTIMOS LANZAMIENTOS
----------------------------------------- */
.releases-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px;
  max-width: 600px;
  margin: auto;
}

.release-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
}

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

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

.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: 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: 2rem;
  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: #ff00bb;
  padding: 10px;
  transition: transform 0.2s ease;
}

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

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

.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;
}
