@charset "UTF-8";
/* =========================================================
   SECCIÓN: HERO MAIN (CLASE ORIGINAL: .landing)
   Adaptado para usar Custom Properties (var(--)).
========================================================= */
.landing {
  position: relative;
  top: 0;
  height: 800px;
  width: 100vw;
  left: 0;
  /* Las flechas SVG están dentro de .hero en el HTML */
}
.landing .hero {
  position: absolute;
  top: 50vh;
  margin: 0 10vw;
  z-index: 200;
  color: var(--color-font-night);
}
.landing .hero h1 {
  font-family: var(--font-headline);
  letter-spacing: 1.5px;
  font-size: clamp(1rem, 2.8vw + 0.2rem, 2.5rem);
}
.landing .arrows {
  width: 60px;
  height: 72px;
  margin-top: 3%;
  margin-left: 25%;
  bottom: 20px;
}
.landing .arrows path {
  stroke: var(--color-font-night);
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 3s infinite;
}

/* ---------------------------------------------------------
   Selectores de contenido que estaban "flotando" en styles.scss
--------------------------------------------------------- */
.movil {
  display: none; /* Por defecto oculto en desktop */
}

/* Nota: .desk no necesita definición si es el valor por defecto */
/* Si el HTML define .desk, aseguramos que el CSS lo oculte en móvil */
.subheadline {
  font-family: var(--font-main);
  width: 70%;
  letter-spacing: 2px;
  font-size: clamp(0.8rem, 1.2vw + 0.2rem, 1.5rem);
  font-weight: 400;
  color: var(--color-night-font);
}

.typed {
  color: var(--color-type);
}

/* ---------------------------------------------------------
   Lógica de Animaciones Laterales (ANIMS) - Restaurada
   (Asumiendo que el HTML o JS las inyecta en el DOM)
--------------------------------------------------------- */
.anims, .anims1, .anims2 {
  position: absolute;
  top: 0;
  height: 100vh;
  left: 92vw;
  width: 10vw;
  overflow: hidden;
  /* Añadidos estilos de flex para centrado vertical si fuera necesario */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.anims .anim, .anims1 .anim, .anims2 .anim {
  height: 5%;
  width: 4%;
  margin-top: 10px;
  opacity: 0;
  filter: blur(1px); /* Agregado para consistencia */
}

.anims .anim {
  animation: moveDots 1.5s linear alternate infinite;
}

.anims1 .anim {
  filter: blur(1px); /* Confirmado */
  animation: moveDots 1.5s ease-in-out alternate infinite;
}

.anims2 .anim {
  animation: moveDots 3s ease-in-out alternate infinite;
}

/* ---------------------------------------------------------
   Animaciones Keyframes
--------------------------------------------------------- */
@keyframes moveDots {
  0% {
    transform: translateX(0);
    opacity: 0.2;
  }
  50% {
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.arrows path.a1 {
  animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
}

/* ---------------------------------------------------------
   Media Queries para .landing
--------------------------------------------------------- */
@media screen and (max-width: 900px) {
  .anims, .anims1, .anims2 {
    display: none;
  }
  .landing .hero {
    top: 60vh;
  }
  .subheadline {
    width: 100%;
  }
  .movil {
    display: block;
  }
  .desk {
    display: none;
  }
}
@media screen and (max-height: 650px) {
  .landing .hero {
    top: 40vh;
  }
}/*# sourceMappingURL=hero-main.css.map */