/* ============================================================
   Intro component: eyebrow label + heading + lead paragraph.
   ============================================================ */

.intro {
  background: var(--bg);
  padding: 7.5rem var(--pad-x);
  border-top: 1px solid rgba(20, 20, 20, 0.06);
}
.intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.intro__label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.intro__title {
  font-size: var(--fz-h1);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 20ch;
  margin-bottom: 3rem;
}
.intro__title b {
  color: var(--blue);
}
.intro__lead {
  font-size: var(--fz-lead);
  line-height: 1.4;
  max-width: 60ch;
  color: #2a2a2a;
  font-weight: 400;
}
.intro__lead strong {
  font-weight: 700;
  color: var(--black);
}

/* Wide variant (publicitario): slightly wider title/lead for its longer copy. */
.intro--wide .intro__title {
  max-width: 22ch;
}
.intro--wide .intro__lead {
  max-width: 62ch;
}

@media (max-width: 640px) {
  .intro {
    padding: 4.5rem var(--pad-x);
  }
  .intro__title {
    margin-bottom: 2rem;
  }
  /* Tighter gap between intro and the section right after it on
     publicitario (circuitos) — matches the source. */
  .intro--wide {
    padding-bottom: 4rem;
  }
}
