/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  overflow: hidden;
  background: var(--color-text);
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms ease;
  pointer-events: auto;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* cortina */
#preloader::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--color-bg);
  transition: height 600ms ease;
  z-index: 1;
  pointer-events: none;
}
#preloader.curtain::before {
  height: 100%;
}

/* frases normales */
.pl-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-things);
  font-size: clamp(26px, 6vw, 70px); /* se ajusta mejor */
  text-align: center;
  padding: 0 4vw;
  color: rgba(var(--color-bg-rgb), 0.7);
  transition: color 200ms linear;

  /* ✅ evita desbordamiento en móviles */
  white-space: normal;
  word-break: break-word;
  max-width: 90vw;
  line-height: 1.2;
  margin: 0 auto;
}

/* última frase */
#preloader.last .pl-text {
  color: rgba(var(--color-text-rgb), 0.7);
}

/* palabra OZZ */
.pl-text #pl-ozz {
  display: inline-block;
  font-size: clamp(28px, 9vw, 85px); /* responsive */
  font-style: italic;
  color: var(--color-bg);
  transition: color 200ms linear;
  line-height: 1;
}

/* OZZ en la última frase */
#preloader.last .pl-text #pl-ozz {
  color: var(--color-text);
}
