

/* =========================================================
   ANIMACIÓN HEADER MÚSICA
========================================================= */

.hero .hero-content .name {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeUpHero 1.2s ease-out forwards;
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .name {
  font-size: 4.5rem;
  letter-spacing: 0.4rem;
  margin: 0;
}

.hero-subtitle {
  margin-top: 18px;
  font-size: 2.1rem;
  letter-spacing: 0.3rem;
  opacity: 0.85;
  color: beige;
}


/* =========================================================
   BODY
========================================================= */

body {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 2.2rem;
    line-height: 2.5;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}
p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}


/* =========================================================
   FONDO GENERAL – SOLO MÚSICA
========================================================= */

.page-musica {
  min-height: 100vh;
  color: #fff;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("assets/imagenes/mic.JPG") center / cover no-repeat fixed;
}


/* =========================================================
   HERO / HEADER – MÚSICA (IGUAL A DOBLAJE)
========================================================= */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;              /* altura real */
  text-align: center;
}



.hero .hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

/* =========================================================
   BIO MÚSICA – TEXTO + FOTO
========================================================= */

.music-bio {
  max-width: 1200px;
  margin: 80px auto 60px;
  padding-left: 10px;
  padding-right: 20px;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: start;
}

.bio-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.bio-text p {
  margin-bottom: 14px;
}

/* FOTO – MISMO LOOK QUE CONTACTO + ENTRADA DESDE IZQUIERDA */
.bio-photo {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 20px;
  outline: 1px solid rgba(255,255,255,0.08);


  background: transparent;

  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInPhotoLeft 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeInPhotoLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* =========================================================
   GALERÍA DE IMÁGENES – MOSAICO
========================================================= */

.music-gallery {
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

/* Título alineado a la derecha */
.gallery-header {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.gallery-header h2 {
  font-size: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: #e0e0e0;
}

/* Grid de imágenes */
.gallery-grid {
  width: 100%;
  max-width: 1440px;   /* +20% de ancho */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;

  transition: transform 0.35s ease, opacity 0.35s ease;
}
.gallery-grid img:hover {
  transform: scale(1.06);
  opacity: 0.95;
}

/* =========================================================
   RESPONSIVE GALERÍA
========================================================= */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   RESPONSIVE BIO
========================================================= */

@media (max-width: 900px) {
  .music-bio {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    max-height: 420px;
  }
}

/* =========================================================
   TÍTULO VIDEOS
========================================================= */

.videos-header {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.videos-header h2 {
  font-size: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: #e0e0e0;
}

/* =========================================================
   VIDEOS MÚSICA – REPRODUCTOR + GRID
========================================================= */

.music-videos {
  width: 100%;
  max-width: 1200px;   /* igual que gallery */
  margin: 80px auto;
  padding: 0 20px;
}

.video-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;

  box-shadow:
    0 0 50px rgba(255, 255, 255, 0.10),
    0 0 18px rgba(0, 0, 0, 0.9);
}

.video-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* GRID THUMBNAILS */
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-thumbs .thumb {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.video-thumbs .thumb img {
  width: 100%;
  display: block;
}

.video-thumbs .thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.video-thumbs .thumb.active {
  opacity: 1;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .video-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   LÍNEA SEPARADORA DE SECCIÓN
========================================================= */

.section-divider {
  width: 900px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.814);
  margin: 0 auto 50px; /* centrada + separación del título */
}

/* =========================================================
   BOTÓN HOME (SVG)
========================================================= */

.home-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.home-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* =========================================================
   TARJETA DE CONTACTO
========================================================= */

.contact-musica {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0 60px;
}

.contact-card {
  background: rgb(59, 59, 59);
  border-radius: 22px;
  padding: 28px 36px;
  text-align: center;

  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 255, 255, 0.69);

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpHero 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.contact-text {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ddd;
  margin: 0;
  line-height: 1.6;
}

.contact-text strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}



/* =========================================================
   RESPONSIVE GENERAL
========================================================= */

@media (max-width: 768px) {
  .hero {
    height: 45vh;
  }

  .hero .name {
    font-size: 2rem;
    letter-spacing: 0.25rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

}
  .hero .hero-content .name {
    font-size: 42px;
    letter-spacing: 4px;
  }

  .contact-card {
    padding: 24px;
    margin: 0 20px;
  }


/* =========================================================
   REDES SOCIALES – MISMO SISTEMA QUE BIO (CORREGIDO)
========================================================= */

.music-social {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center; /* <--- ESTA ES LA CLAVE */
  justify-content: center;
}


/* TEXTO A LA IZQUIERDA – ALINEADO A LA DERECHA */
.social-text { 
	display: flex; 
	flex-direction: column; 
	justify-content: center; /* centra verticalmente */ 
	gap: 60px; 
	align-items: center; 
	text-align: center;
 }


.social-line {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 30px;
  color: #c1bebe;
}

.social-line i {
  font-size: 40px;
  
}

.social-line a {
  color: #c1bebe;
  text-decoration: none;
  transition: opacity 0.25s ease; opacity: 0.25s ease;
}

.social-line a:hover {
  transform: scale(1.06);
  opacity: 0.95;
}

/* IMAGEN A LA DERECHA – ALINEADA A LA IZQUIERDA */
.social-image {
  display: flex;
  justify-content: flex-start;
}

.social-image img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  min-height: 300px;
}

/* =========================================================
   RESPONSIVE (SOLO AQUÍ SE APILA)
========================================================= */

@media (max-width: 600px) {
  .music-bio,
  .music-social {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-text {
    align-items: center;
    text-align: center;
  }

  .social-image {
    justify-content: center;
  }
}
.music-social {
  display: grid !important;
  grid-template-columns: 1.3fr 0.7fr !important;
  position: relative;
  z-index: 1;
}

.social-text {
  position: relative;
  z-index: 2;
}

.social-image {
  position: relative;
  z-index: 1;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  color: #faf7f7;
  background: transparent;
}

.footer p {
  margin: -50px;
}

/* =========================================================
   CONTACTO – HOVER CORRECTO (ESCALA TODA LA TARJETA)
========================================================= */

.contact-link {
  text-decoration: none;
  display: inline-block;
}

/* El contenedor externo NO escala */
.contact-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* El contenedor interno contiene TODO el diseño visual */
.contact-inner {
  display: block;
  padding: 38px 36px;              /* ⬅️ movemos el padding aquí */
  border-radius: 22px;
  background: transparent;

  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform;
  cursor: pointer;
}

/* Hover REAL */
.contact-link:hover .contact-inner {
  transform: scale(1.06);
  opacity: 0.95;
}

/* =========================================================
   REDES SOCIALES – HOVER SUAVE (IGUAL A IMÁGENES)
========================================================= */

.social-line {
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform;
}

.social-line:hover {
  transform: scale(1.05);   /* MISMO valor que imágenes */
  opacity: 0.95;
}

/* ================================
   CONTACTO – ESTILO MODERNO
================================ */

.contact-section {
  width: 100%;
  background: tr;
  padding: 5rem 0;
  
}

.contact-inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 2rem;
  
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #edeaea;
}

.contact-subtitle {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-form {
  background: #807e7e;
  border-radius: 1.2rem;
  padding: 3rem;
    box-shadow:
		-7px -7px 20px rgba(150, 150, 150, 0.9),
		7px 7px 20px rgba(0,0,0,0.15);
  
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-field input,
.contact-field textarea {
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}

/* BOTONES */

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-primary {
  background: #111;
  color: #fff;
  border: 1px solid #ffffff;
  padding: 0.9rem 1.6rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #9e9c9c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ccc;
  padding: 0.9rem 1.6rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #9d9b9b;
  color: #918f8f;
}

/* RESPONSIVE */

@media (max-width: 736px) {
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-actions {
    flex-direction: column;
  }
}
/* ================================
   CONTACTO – REDES SOCIALES
================================ */

.contact-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  border-color: #111;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 736px) {
  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-social {
    margin-top: 1.5rem;
  }
}

/* =========================================================
   PANEL CENTRAL – MÚSICA (CONTENEDOR PRINCIPAL)
========================================================= */

.music-panel {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 80px 80px;

  border-radius: 28px;

  box-shadow:
    0 40px 80px rgba(0,0,0,0.6);

  position: relative;
}
/* =========================================================
   PANEL CENTRAL – CONTENIDO MÚSICA
========================================================= */

.music-panel {
  max-width: 1400px;
margin: -40px auto 20px;
  padding: 80px 80px;

  background: rgba(0,0,0,0.65); /* SOLO negro translúcido */

  border-radius: 10px;

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.457);

  position: relative;
}
/* =========================================================
   MÚSICA – MOBILE OVERRIDES (LIMPIO Y CONTROLADO)
========================================================= */
@media (max-width: 768px) {

  /* HERO */

  .hero {
    height: 40vh;       /* suficiente espacio real */
    min-height: 280px;  /* evita que colapse */
    display: flex;
    justify-content: center;
    align-items: center;
  }

.hero .hero-content .name {
  font-size: 3.5rem;
  letter-spacing: 0.4rem;
  margin-bottom: 0.8rem;
}

  /* PANEL PRINCIPAL */
  .music-panel {
    margin: 40px 26px;
    padding: 32px 20px;
    border-radius: 18px;
  }

  /* BIO */
  .music-bio {
    margin: 40px auto;
    padding: 0;
    gap: 24px;
  }

  .bio-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.2px;
  }

  .bio-photo {
    max-height: 280px;
    margin-top: 0;
  }

  /* SEPARADORES */
  .section-divider {
    width: 60%;
    height: 2px;
    margin: 30px auto;
  }

  /* GALERÍA */
  .gallery-header h2,
  .videos-header h2 {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
  }

  .gallery-grid {
    gap: 10px;
  }

  /* VIDEOS */
  .music-videos {
    margin: 40px auto;
  }

  .video-main {
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .video-thumbs {
    gap: 12px;
  }

  /* CONTACTO */
  .contact-title {
    font-size: 1.6rem;
    letter-spacing: 0.25rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact-field label {
    font-size: 0.7rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.75rem;
    padding: 0.75rem 1.2rem;
  }

  /* FOOTER */
  .footer {
    font-size: 0.75rem;
  }

  .footer p {
    margin: 0;
  }
}

/* =========================================
   MOBILE MENU – DIMENSION (OFICIAL) ---------------- SOLO EDITA A PARTIR DE AQUI ------------
========================================= */
@media (max-width: 768px) {

  /* BOTÓN HAMBURGUESA */
  .mobile-menu-btn {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 10001;

    width: 34px;
    height: 26px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    height: 1px;
    width: 28px;
    background: #ffffff;
    border-radius: 2px;
    display: block;
  }

  /* OVERLAY */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    z-index: 1100;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* PANEL */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;

    width: 35%;
    max-width: 280px;
    height: 100vh;

    padding: 80px 25px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);


    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 9999;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  /* BOTONES */
  .mobile-menu button {
    all: unset;
    width: 100%;
    padding: 12px 0;
    margin-bottom: 18px;

    text-align: center;
    border:none;

    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;

    cursor: pointer;
    transition: background 0.25s ease;
  }

  .mobile-menu button:hover {
    background: rgba(255,255,255,0.08);
  }

  /* CONTACTO */
  .mobile-menu .menu-contact {
    margin-top: 28px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.32em;
    position: relative;
    
  }

  .mobile-menu .menu-contact::before {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin: 0 auto 16px;
    
  }
}
/* =========================================
   MÚSICA – MOBILE: SUBIR BLOQUE PRINCIPAL
========================================= */
@media (max-width: 768px) {

  .music-panel {
    margin-top: 0px;   /* ⬅️ antes 40px o más */
    padding-top: 20px;  /* mantiene aire interno */
  }

}

/* =========================================
   MÚSICA – MOBILE: HERO MÁS COMPACTO
========================================= */
@media (max-width: 768px) {

  .hero {
    height: 10vh; /* ⬅️ antes 45–50vh */
  }

}
/* =========================================
   MÚSICA – MOBILE: TÍTULO
========================================= */
@media (max-width: 768px) {

  .hero .hero-content .name {
    font-size: 1.5rem;
    letter-spacing: 0.28rem;
    margin-bottom: 0;
  }

}
/* =========================================
   MÚSICA – MOBILE: MOSTRAR SOLO 2 PÁRRAFOS
========================================= */
@media (max-width: 768px) {

  .music-bio .bio-text p {
    display: none;
  }

  .music-bio .bio-text p:nth-child(1),
  .music-bio .bio-text p:nth-child(2) {
    display: block;
  }

}
/* =========================================
   MÚSICA – MOBILE: AJUSTE IMAGEN BIO
========================================= */
@media (max-width: 768px) {

  .music-bio .bio-photo {
    width: 50%;
    max-height: 420px;      /* ajusta si la quieres un poco más alta */
    overflow: hidden;
    border-radius: 14px;
  }

  .music-bio .bio-photo img {
    width: 100%
  }
}
/* =========================================
   MÚSICA – MOBILE: CENTRAR IMAGEN BIO
========================================= */
@media (max-width: 768px) {

  .music-bio .bio-photo {
    margin: 0 auto;              /* 👈 centra el contenedor */
    display: flex;               /* 👈 permite centrar contenido */
    justify-content: center;     /* 👈 centra horizontal */
  }

}
/* =========================================
   MÚSICA – MOBILE: CONTACTO COMPACTO
========================================= */
@media (max-width: 768px) {

  .contact-section {
    padding: 2.5rem 0; /* antes 5rem */
  }

  .contact-inner {
    max-width: 100%;
    padding: 0 1.2rem;
  }

  .contact-title {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    margin-bottom: 0.6rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.6rem;
  }

  .contact-field label {
    font-size: 0.65rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }

  .contact-actions {
    margin-top: 1.4rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.7rem;
    padding: 0.65rem 1.1rem;
  }

}
/* =========================================
   MÚSICA – MOBILE: CONTACTO EN COLUMNA
========================================= */
@media (max-width: 768px) {

  .music-social {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .social-image {
    order: 2;                 /* 👈 imagen abajo */
    justify-content: center;
  }

  .social-image img {
    max-width: 220px;         /* 👈 evita “línea aplastada” */
    min-height: unset;
    height: auto;
  }

}
/* =========================================
   MÚSICA – MOBILE: CENTRAR REDES SOCIALES
========================================= */
@media (max-width: 768px) {

  .contact-actions {
    align-items: center;
  }

  .contact-social {
    width: 100%;
    justify-content: center;   /* 👈 centra los iconos */
  }

}
/* =========================================
   HOME BUTTON – BANDA DIFUMINADA FULL WIDTH (MOBILE)
========================================= */
@media (max-width: 768px) {

  .home-btn {
    position: fixed;
    bottom: 30px;        /* 👈 usa el MISMO valor que ya tienes */
    left: 30px;
    z-index: 10001;
  }

  .home-btn::before {
    content: "";
    position: fixed;

    left: 0px;
    right: 320px;

    /* Altura de la banda */
    height: 64px;

    /* Posición: alineada con el botón */
    bottom: 22px;        /* 👈 ajusta fino si hace falta */

    background: rgba(103, 103, 103, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    z-index: -1;
  }
}
/* =========================================
   HOME BUTTON – BANDA DIFUMINADA FULL WIDTH (MOBILE)
========================================= */
@media (max-width: 768px) {

  .home-btn {
    position: fixed;
    top: 30px;        /* 👈 usa el MISMO valor que ya tienes */
    left: 30px;
    z-index: 10001;
  }

  .home-btn::before {
    content: "";
    position: fixed;

    left: 0px;
    right: 320px;

    /* Altura de la banda */
    height: 64px;

    /* Posición: alineada con el botón */
    top: 22px;        /* 👈 ajusta fino si hace falta */

    background: rgba(103, 103, 103, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    z-index: -1;
  }
}
/* =========================================
   MOBILE MENU – OCULTO EN DESKTOP (CRÍTICO)
========================================= */

.mobile-menu,
.mobile-menu-overlay,
.mobile-menu-btn {
  display: none;
}
@media (max-width: 768px) {

  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-btn {
    display: flex;
  }

}
.thank-you {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 99999;
}

.thank-you.active {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-box {
  max-width: 560px;
  width: calc(100% - 40px);
  background: rgba(20,20,20,0.85);
  padding: 40px 48px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.thank-you-box h2 {
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}

.thank-you-box p {
  opacity: 0.85;
  margin: 0;
}
@media (max-width: 768px) {

  .music-videos {
    padding-left: 0;
    padding-right: 0;
  }

  .video-main {
    margin-left: auto;
    margin-right: auto;
  }

}
