/* ESTILO */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: rgba(6, 14, 26, 1);
}

/* HERO ES EL HEADER */

.hero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 360px;
  overflow: hidden;
  z-index: 1000;
  /* nuemro de posicion del Header */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* SOLO BORDE INFERIOR DORADO */
  border-bottom: 3px solid rgba(212, 175, 55, 0.85);

  /* sombra suave hacia abajo */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

/* VIDEO */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 1px;
  background: rgba(2, 7, 12, 0.9);
  margin-top: -80px;

}

/* OVERLAY OSCURO */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 12, 0.75);
  z-index: 1;
}

/* LÍNEAS UNIFORMES (SIN ERRORES) */
.topo-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background-image: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 0px,
      transparent 1px,
      transparent 6px);

  opacity: 0.85;
  /* CLAVE: parejo */
}

/* TEXTO HERO */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 1rem;
  max-width: 1300px;
}

.hero-content h1 {
  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;

  /* sombra suave para legibilidad */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-content h2 {
  margin-top: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  /* dorado */
  color: #d4af37;
}

/* MAIN */
main {
  padding: 3rem 1.2rem;
  background-color: #1a0c3d;
}

/* ANIMACIÓN FADE UP (solo CSS) */

/* TITULO ANIMACION */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Animación SOLO cuando termine el intro */
body.app-ready .fade-up {
  animation: fadeUp 1.5s ease forwards;
}

/* Delays siguen funcionando igual */
.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.7s;
}

.delay-3 {
  animation-delay: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SUB-TITULO ANIMACION */

.arriba {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 20vh;
    min-height: 280px;

  }

  .text_line {
    margin-top: -50px;
  }

  .hero-content h1 {
    font-family: "Montserrat", "Poppins", Arial, sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;

    /* sombra suave para legibilidad */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  }

  .hero-content h2 {
    margin-top: 12px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;

    /* dorado */
    color: #d4af37;
  }

  .hero-logo {
    display: none;

  }

  main {
    padding: 2rem 1rem;
  }
}

/* HASTA AQUI EL HEADER */

/* REPRODUCTOR WEB */

.player-section {
  margin-top: -103px;
  /* más alto la posicion del Reproductor */
  position: relative;
  z-index: 2000;
  /* más alto que el header */

}

.player-card {
  width: min(920px, 100%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(6, 14, 26, 1);
  /* Fondo Reproductor */
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  padding: 14px 16px;

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);

  transition: transform 240ms ease, box-shadow 280ms ease, border-color 280ms ease;
  transform-origin: center;
  will-change: transform;
}

.player-card:hover {
  transform: scale(1.015);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55), 0 0 16px rgba(212, 175, 55, 0.22);
}

.player-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;

  border: 1px solid rgba(212, 175, 55, 0.55);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(2, 7, 12, 0.55));
  color: #d4af37;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 14px rgba(212, 175, 55, 0.18);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;

  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.player-btn:focus {
  outline: none;
}

.player-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.player-btn:hover {
  transform: scale(1.04);
  border-color: rgba(212, 175, 55, 0.80);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(212, 175, 55, 0.28);
}

.player-btn:active {
  transform: scale(0.98);
}

.player-btn.ghost {
  width: 42px;
  height: 42px;
  background: rgba(2, 7, 12, 0.45);
  color: #f2f6ff;
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: none;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.player-title {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2f6ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-status {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(234, 242, 255, 0.75);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-vol {
  width: 160px;
  accent-color: #d4af37;
}

/* EQ */
.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;

  height: 34px;
  width: 160px;
  opacity: 0.9;
}

.eq .bar {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  transition: height 420ms ease, opacity 420ms ease;
  opacity: 0.55;
}

.player-card.is-playing .eq .bar {
  opacity: 1;
  animation: eqMove 0.45s linear infinite alternate;
}

.player-card.is-playing .eq .bar:nth-child(2n) {
  animation-duration: .55s;
  animation-delay: .05s;
}

.player-card.is-playing .eq .bar:nth-child(3n) {
  animation-duration: .35s;
  animation-delay: .08s;
}

.player-card.is-playing .eq .bar:nth-child(4n) {
  animation-duration: .65s;
  animation-delay: .10s;
}

@keyframes eqMove {
  from {
    height: 6px;
  }

  to {
    height: 32px;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .player-card:hover {
    transform: none;
  }

  .player-section {
    margin-top: -1px;
    /* Aqui es para bajar o subir el Reproductor en celulares */

    padding: 0 12px 32px;
    /* ANCHO */
  }

  .player-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .player-card>button,

  .player-info {
    align-self: center;
    text-align: center;
  }

  #playBtn {
    width: 48px;
    height: 48px;
  }

  #playBtn svg {
    width: 18px;
    height: 18px;
  }

  .eq {
    width: 100%;
    height: 18px;
    gap: 4px;
    margin-top: 12px;
  }

  .eq .bar {
    width: 4px;
  }

  .player-controls {
    justify-content: center;
  }

  .player-btn.ghost {
    width: 36px;
    height: 36px;
  }

  .player-vol {
    width: 100%;
    max-width: 240px;
  }
}


/* ===== REDES SOCIALES ===== */

.social-section {
  padding: 10px 20px 36px;
  margin-top: 20px;
}

.social-row {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;

  color: #eaf2ff;
  text-decoration: none;

  background: rgba(6, 14, 26, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.55), 0 10px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.social-btn:hover {
  transform: scale(1.05);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.50), 0 14px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(212, 175, 55, 0.18);
}

.social-btn:active {
  transform: scale(0.98);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: #d4af37;
}

.social-btn span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* MÓVIL: solo iconos + svg grande */

@media (max-width: 768px) {
  .social-section {
    padding: 8px 12px 22px;
    margin-top: -5px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 16px;
    justify-content: center;
  }

  .social-btn span {
    display: none;
  }

  .social-btn svg {
    width: 30px;
    height: 30px;
  }
}

/* ===== AQUI TERMINA REDES SOCIALES ===== */


/* ===== Bloque 3 imágenes ===== */

.triple-images {
  padding: 0 20px 40px;
  /* aire abajo antes del parallax */
}

.triple-inner {
  width: min(1100px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35);

  transition: transform .3s ease, box-shadow .3s ease;

  opacity: 0;
  animation: fadeUp 0.9s ease forwards;

}

/* Zoom suave y pequeño */

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.05);
  /* 👈 zoom pequeño y elegante */
}

.img-box:hover {
  transform: scale(1.03);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(212, 175, 55, 0.22);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Altura elegante */
.triple-inner .img-box {
  aspect-ratio: 16 / 20;
}

/* ===== Responsive MOVIL ===== */

@media (max-width: 768px) {
  .triple-inner {
    grid-template-columns: 1fr;
  }

  .triple-images {
    padding: 0 12px 32px;
    margin-top: 10px;
  }
}


/* ===== AQUI TERMINA 3 IMAGENES ===== */


/* ===== AQUI EMPIEZA EL RECTANGULO CON LETRAS ===== */

.info-banner {
  padding: 4px 20px 16px;
  margin-top: 10px;
}


.info-banner-inner {
  width: min(400px, 100%);
  margin: 0 auto;

  text-align: center;

  background: rgba(6, 14, 26, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;

  padding: 18px 16px;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(212, 175, 55, 0.10);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Título */
.info-title {
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.22);
}



/* Móvil: más compacto */
@media (max-width: 768px) {
  .info-banner {
    padding: 14px 12px 22px;
    margin-top: -5px;
  }

  .info-banner-inner {
    border-radius: 16px;
    padding: 14px 12px;
  }


}

/* ===== AQUI TERMINA EL RECTANGULO CON LETRAS ===== */


/* ===== 3 RECTÁNGULOS (PANELS) ===== */

.triple-panels {
  padding: 18px 20px 28px;
  margin-top: 20px;
}

.triple-panels-inner {
  width: min(1400px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* Card */
.panel {

  background: rgba(6, 14, 26, 0.75);
  /* ✅ mismo fondo */
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);

  overflow: hidden;
}

/* Header */
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(2, 7, 12, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.panel-icon svg {
  width: 22px;
  height: 22px;
  fill: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.18));
}

.panel-titles h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2f6ff;
}

.panel-titles p {
  margin: 5px 0 0;
  font-size: 12px;
  color: rgba(234, 242, 255, 0.72);
}

/* Cuerpo */
.panel-body {
  padding: 12px 14px 14px;
}

/* Scroll para que “quepa” la programación */
.panel-scroll {
  max-height: 520px;
  /* ✅ cabe todo y no se desborda */
  overflow: auto;
  padding-right: 6px;
}

/* scrollbar bonito (Chrome/Edge) */
.panel-scroll::-webkit-scrollbar {
  width: 8px;
}

.panel-scroll::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.22);
  border-radius: 999px;
}

.panel-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

/* ===== PROGRAMACIÓN (compacta) ===== */
.sched-block {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 7, 12, 0.22);
  border-radius: 14px;
  padding: 10px 10px 8px;
  margin-bottom: 10px;

}

.sched-day {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
  margin-bottom: 8px;


}

.sched-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 6px 6px;
  border-radius: 10px;
}

.sched-row+.sched-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.time {
  font-size: 12px;
  color: rgba(234, 242, 255, 0.86);
  white-space: nowrap;
}

.show {
  font-size: 12px;
  color: rgba(234, 242, 255, 0.78);
  line-height: 1.25;
}

.sched-row.special {
  background: rgba(212, 175, 55, 0.08);
}

/* ===== SLIDER (fade) ===== */
.slider {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 7, 12, 0.22);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 700ms ease;
  transform: scale(1.02);
}

.slide.is-active {
  opacity: 1;
}


/* ===== FACEBOOK FANPAGE ===== */

.fb-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 7, 12, 0.22);
  height: 520px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .triple-panels-inner {
    grid-template-columns: 1fr;
  }

  .panel-scroll {
    max-height: 420px;

  }

  .triple-panels {
    padding: 0 12px 32px;
    grid-template-columns: 1fr;

  }

  .slider {
    height: 520px;
  }

.fb-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 7, 12, 0.22);
  height: 520px;
  
}



}

/* ===== FIN DE 3 RECTÁNGULOS (PANELS) ===== */


/* ==== INICIO PARALLAX CSS-ONLY full ancho ===== */

.parallax-section {
  height: 460px;
  margin-top: 5px;
  position: relative;
  /* ⬅️ ESTA ES LA CLAVE */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background-image:
    linear-gradient(rgba(2, 7, 12, 0.55), rgba(2, 7, 12, 0.85)),
    url("img/paradax.webp?v=4");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* parallax */
  background-attachment: fixed;
}

@media (max-width: 564px) {
  .parallax-section {
    height: 280px;
    background-attachment: scroll;
    /* iPhone friendly */
  }
}

/* ===== Texto centrado en parallax ===== */
.parallax-title {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  z-index: 2;
  /* encima de la imagen */
  pointer-events: none;
  /* no molesta al scroll */
}

.parallax-title h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  color: #ffffff;
  /* blanco puro */
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(0, 0, 0, 0.45);
}

/* + Auténtica dorado sutil */
.parallax-title h2 span {
  display: block;
  margin-top: 8px;

  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.25em;

  color: #d4af37;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.5);
}


/* ==== FIN PARALLAX CSS-ONLY full ancho ===== */



/* ===== INICIO MAPA ===== */

.map-section {
  margin-top: 40px;
  /* separación del contenido de arriba */
  padding: 1 20px 40px;


}

.map-inner {
  max-width: 1272px;
  margin: 0 auto;


  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  padding: 18px;

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.map-title {
  margin: 0 0 14px;
  text-align: center;

  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4af37;
}

/* iframe del mapa */
.map-inner iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
}

/* MÓVIL */
@media (max-width: 768px) {
  .map-inner iframe {
    height: 260px;

  }

  .map-section {
    padding: 0 12px 32px;
    grid-template-columns: 1fr;
  }

}

/* ===== FIN MAPA ===== */


/* ===== FOOTER ===== */

.site-footer {
  position: relative;
  background: #02070c;

  /* Tamaño Alto o Bajo del Footer */
  padding: 65px 16px;

  text-align: center;
}

/* BORDE SUPERIOR DORADO (siempre arriba y visible) */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: rgba(212, 175, 55, 0.85);
  z-index: 2;
  /* 🔥 clave para que no se pierda */
}

/* TEXTO (por encima de todo) */
.site-footer p {
  position: relative;
  z-index: 3;
  /* 🔥 para que no lo tape nada */
  margin: 0;

  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 0.8rem;
  /* 🔥 Tamaño de la letra */
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.35em;

  color: rgba(255, 255, 255, 0.9);
}

.footer-extra p {
  position: relative;
  z-index: 3;
  /* 🔥 para que no lo tape nada */
  margin: 0;

  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  font-size: 0.8rem;
  /* 🔥 Tamaño de la letra */
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.35em;

  color: rgba(255, 255, 255, 0.9);
}



/* MÓVIL */
@media (max-width: 768px) {

  .site-footer {
    position: relative;
    background: #02070c;

    /* Tamaño Alto o Bajo del Footer */
    padding: 80px 16px;
    text-align: center;

  }

  .site-footer p {
    position: relative;
    z-index: 3;
    /* 🔥 para que no lo tape nada */
    margin: 0;

    font-family: "Montserrat", "Poppins", Arial, sans-serif;
    font-size: 0.6rem;
    /* 🔥 Tamaño de la letra */
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.35em;

    color: rgba(255, 255, 255, 0.9);

  }

  .footer-extra p {
    position: relative;
    z-index: 3;
    /* 🔥 para que no lo tape nada */
    margin: 0;

    font-family: "Montserrat", "Poppins", Arial, sans-serif;
    font-size: 0.6rem;
    /* 🔥 Tamaño de la letra */
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.35em;

    color: rgba(255, 255, 255, 0.9);
  }

}


/* EFECTO CORAZON CON LATIDOS */

.corazon {
  display: inline-block;
}

/* el que anima es el inner */
.corazon__latido {
  display: inline-block;
  transform-origin: center;
  will-change: transform, filter, box-shadow;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

/* brillo (mejor con filter para imágenes) */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.05);
    filter:
      brightness(1.1) drop-shadow(0 0 14px rgba(212, 175, 55, 0.45)) drop-shadow(0 0 26px rgba(212, 175, 55, 0.30));
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

/* Reveal: oculto abajo */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Solo cuando la app esté lista, permitimos que .is-visible se vea */
body.app-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* EFECTO SCROLL FADE+ARRIBA */

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Opcional: delays */
.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.30s;
}

.reveal.delay-3 {
  transition-delay: 0.45s;
}


/* ==== EFECTO DE INTRO PARA CARGAR PAGINA ======*/

/* Hace que la pagina no se mueva cuando termina el intro*/
html {
  scrollbar-gutter: stable;
}

/* Evita scroll mientras carga */
body.is-loading {
  overflow: hidden;
}

/* Loader full screen */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 altura real sin empujes */
  height: 100dvh;

  /* IMPORTANTE: solo padding lateral */
  padding-left: 16px;
  padding-right: 16px;

  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(212, 175, 55, 0.10), transparent 60%),
    rgba(2, 7, 12, 0.98);
}

/* Caja */
.intro-box {
  width: min(520px, 92vw);
  border-radius: 22px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 22, 0.65);
  backdrop-filter: blur(10px);
  padding: clamp(18px, 4vw, 26px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* Marca */
.intro-brand {
  text-align: center;
  margin-bottom: 18px;
}

.intro-title {
  display: block;
  font-size: clamp(1.25rem, 4.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.intro-sub {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.85rem, 3vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
}

/* Barra */
.intro-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

/* Relleno dorado */
.intro-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.95));
  position: relative;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

/* Circulito en la punta */
.intro-knob {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.98);
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.55),
    0 0 22px rgba(212, 175, 55, 0.25);
}

/* % */
.intro-meta {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.intro-percent {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
  font-size: 0.9rem;
}

/* Animación de salida */
.intro-loader.is-done {
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 450ms ease, transform 450ms ease;
  pointer-events: none;
}

@media (max-width: 768px) {
  .intro-loader {
    align-items: center;
    padding-top: 0;
  }
}