@charset "UTF-8";
/* =========================================================
   SECCIÓN: HERO MAIN (CLASE ORIGINAL: .landing)
   Adaptado para usar Custom Properties (var(--)).
========================================================= */
.landing::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.landing::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(circle, rgba(194, 255, 5, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

html[data-theme=light] .landing::before {
  background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, transparent 60%);
}

html[data-theme=light] .landing::after {
  background: radial-gradient(circle, rgba(0, 98, 255, 0.06) 0%, transparent 60%);
}

.hero-background {
  position: relative;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-decorations {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0.1;
}
[data-theme=light] .hero-decorations {
  opacity: 0.08;
}

.deco-line {
  height: 14px;
  background: var(--color-type);
  animation: slideIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}
[data-theme=light] .deco-line {
  background: #fff;
}
.deco-line:nth-child(1) {
  width: 60%;
  animation-delay: 0.2s;
}
.deco-line:nth-child(2) {
  width: 40%;
  margin-left: 10%;
  animation-delay: 0.4s;
}
.deco-line:nth-child(3) {
  width: 50%;
  margin-left: 5%;
  animation-delay: 0.6s;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.1;
  }
}
.landing {
  position: relative;
  height: 800px;
  width: 100vw;
  left: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-main) 100%);
}
html[data-theme=light] .landing {
  background: linear-gradient(160deg, #f4f9ff 0%, #dce8f8 50%, #e8f0fb 100%);
}
.landing .hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 900px;
  z-index: 200;
  color: var(--color-font-night);
}
html[data-theme=light] .landing .hero h1 {
  color: var(--color-topic);
}
.landing .hero h1 {
  font-family: var(--font-headline);
  letter-spacing: 1.5px;
  font-size: clamp(1.3rem, 2.8vw + 0.2rem, 2.5rem);
}
.landing .hero .hero-cta {
  margin-top: 50px;
}
.landing .hero .hero-cta .btn-primary {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.3rem);
}
.landing {
  /* Las flechas SVG están dentro de .hero en el HTML */
}
.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: 100%;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 2px;
  font-size: clamp(0.8rem, 1.2vw + 0.2rem, 1.5rem);
  font-weight: 400;
  color: var(--color-night-font);
}
html[data-theme=light] .subheadline {
  color: var(--text-sub);
}

.typed {
  font-size: 1.3em;
  font-weight: 800;
  color: var(--color-type);
}

html[data-theme=light] .typed {
  color: transparent;
  background: linear-gradient(135deg, #ff006e 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------
   LIGHT THEME — Hero adaptaciones
--------------------------------------------------------- */
html[data-theme=light] .landing {
  background: linear-gradient(160deg, #f4f9ff 0%, #dce8f8 50%, #c8daf0 100%) !important;
}

html[data-theme=light] .headline {
  color: var(--color-topic);
}

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