  .seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

  /* ---------- VARIABLES DE COLOR ---------- */
    :root {
      --bg-main: #050509;
      --bg-elevated: #0b0b11;
      --gold: #f5c14b;
      --gold-soft: rgba(245, 193, 75, 0.2);
      --silver: #cfd3dd;
      --text-main: #f7f7f8;
      --text-muted: #9a9daa;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --mouse-x: 0.5;
      --mouse-y: 0.5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      max-width: 1300px;
      margin: 0 auto;
      padding: 24px 20px 80px;
      position: relative;
      flex: 1;
    }

    html,
body {
  max-width: 100%;
  overflow-x: hidden;
}



    /* ---------- HERO ---------- */
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 32px;
      align-items: stretch;
      margin-bottom: 64px;
      position: relative;
    }

    @media (max-width: 840px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }

    .hero-left {
      padding-right: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 22px;
      white-space: normal;
  overflow-wrap: break-word;
    }

    .hero-pill {
      color: var(--text-main);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: radial-gradient(circle at 0% 0%, rgba(245, 193, 75, 0.24), transparent 45%),
        rgba(5, 5, 10, 0.253);
      backdrop-filter: blur(16px);
    }

    .hero-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 10px rgba(245, 193, 75, 0.9);
    }

    .cursor {
  display: inline-block;
  width: 6px;
  height: 52px;
  background: var(--gold);
  margin-left: 6px;
  animation: blink 0.6s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-title {
  position: relative;
  display: inline-block;
  font-family: "Racing Sans One", sans-serif;
  color: white;
  font-size: 45px;
  width: 1040px;
  bottom: 2rem;
  margin-top: 20px;
}

/* --------- CAPA ESCRITA (typing) --------- */
.typing-layer {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  
  animation: typing 3s steps(40, end) forwards;
  position: relative;
  z-index: 3;
}

/* --------- CAPA GLOW (NO typing) --------- */
.glow-layer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  white-space: nowrap;
  color: transparent; /* dejamos que solo se vea el glow */
  z-index: 1;
}

/* Glow dorado */
.gold-glow {
  background: linear-gradient(90deg, var(--gold), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  filter: blur(4px) brightness(2);
  opacity: 0.7;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { filter: blur(3px) brightness(1.5); }
  50% { filter: blur(5px) brightness(2.4); }
  100% { filter: blur(3px) brightness(1.5); }
}

/* Texto base con degradado */
.gold-base {
  background: linear-gradient(90deg, var(--gold), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Cursor */


@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Typing keyframes */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

    .hero-sub {
      width: 440px;
      color: white;
      font-size: 18px;
      line-height: 1.6;
    }

    /* Texto con animación tipo “reveal” */
    .reveal {
      overflow: hidden;
    }

    .reveal span {
      display: inline-block;
      transform: translateY(110%);
      opacity: 0;
      animation: revealUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .reveal span:nth-child(1) { animation-delay: 0.05s; }
    .reveal span:nth-child(2) { animation-delay: 0.15s; }
    .reveal span:nth-child(3) { animation-delay: 0.25s; }
    .reveal span:nth-child(4) { animation-delay: 0.35s; }
    .reveal span:nth-child(5) { animation-delay: 0.45s; }
    .reveal span:nth-child(6) { animation-delay: 0.55s; }
    .reveal span:nth-child(7) { animation-delay: 0.65s; }
    .reveal span:nth-child(8) { animation-delay: 0.75s; }

    @keyframes revealUp {
      to {
        transform: translateY(0%);
        opacity: 1;
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 12px;
    }

    .btn-primary,
    .btn-ghost {
      font-size: 13px;
      padding: 11px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .btn-primary {
      background: linear-gradient(120deg, var(--gold), var(--silver));
      color: #050509;
      box-shadow: 0 0 30px rgba(245, 193, 75, 0.45);
      font-weight: 600;
      transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 40px rgba(245, 193, 75, 0.7);
    }

    .btn-ghost {
      border-color: var(--border-subtle);
      background: rgba(10, 10, 18, 0.95);
      color: var(--silver);
    }

    .btn-ghost span.icon {
      font-size: 16px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 50px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    .hero-meta strong {
      color: var(--silver);
      font-weight: 500;
    }

    /* ---------- HERO RIGHT / IMAGEN ATREVIDA ---------- */
    .hero-right {
      position: relative;
      min-height: 320px;
      display: flex;
      align-items: stretch;
      margin-top: 15rem;
    }

    .hero-card {
      position: relative;
      flex: 1;
      border-radius: 26px;
      background: radial-gradient(circle at 0 0, rgba(245, 193, 75, 0.25), transparent 65%),
        radial-gradient(circle at 100% 100%, rgba(207, 211, 221, 0.16), transparent 60%),
        rgba(0, 0, 0, 0.137);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-subtle);
      padding: 20px 18px;
      overflow: visible; /* clave para que salga la imagen */
      box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.03);
        height: 400px;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .hero-card-tag {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: rgba(12, 12, 20, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-card-tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: red;
    }
    .hero-card-tag-dot2 {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: green;
      left: 0;
    }

    .hero-main-image-wrap {
      position: relative;
      margin-top: 10px;
      height: 310px;
      border-radius: 22px;
      overflow: hidden;
    }

    /* Imagen principal que sale del contenedor */
    .hero-main-image {
      position: absolute;
      inset: -16% -12%;
      background-image: url("/assets/img/1.png");
      background-size: cover;
      background-position: center;
      filter: saturate(0.9) contrast(1.1);
      transform: translateY(6px);
      transition: transform 0.4s ease-out;
    }

    .hero-card:hover .hero-main-image {
      transform: translateY(0);
    }

    .hero-chip {
      position: absolute;
      right: -10%;
      top: 12%;
      background: linear-gradient(135deg, var(--gold), var(--silver));
      color: #050509;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
    }

    @media (max-width: 840px) {
      .hero-chip {
        right: auto;
        left: 55%;
        top: 4%;
      }
    }

    .hero-chip span.spark {
      font-size: 16px;
    }

    .hero-status-card {
      position: absolute;
      left: -10%;
      bottom: 4%;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(5, 5, 10, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(18px);
      font-size: 11px;
      min-width: 170px;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
    }

    @media (max-width: 840px) {
      .hero-status-card {
        left: 4%;
        bottom: -8%;
      }
    }

    .hero-status-label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .hero-status-value {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

    .hero-status-value span.badge {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(245, 193, 75, 0.6);
      color: var(--gold);
    }

.separacion1 {
  height: 6rem;
}
