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

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

body {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* =========================================================
   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: start;
  align-items: start;
}

.hero .hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: 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;
  bottom: 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: 50vh;
  }

  .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: #090606;
  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: none;
  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: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #555;
  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: #111;
  color: #111;
}

/* 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: #111;
  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: 80px auto;
  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: 80px auto;
  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;
}
