/* ==========================================================================
   Castillo & Prieto Abogados
   Reglas portadas verbatim — origen: design/css/styles.css
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(180deg, #263238 0%, #2f3e46 100%); overflow: hidden;
}
.hero__foto {
  position: absolute; inset: 0;
  background-image: url('../../img/hero.png'); background-size: cover; background-position: center;
}
.hero__velo {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,50,56,0.82) 0%, rgba(47,62,70,0.78) 100%);
}
.hero__brillo {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 15%, rgba(108,159,186,0.26) 0%, transparent 55%);
}
.hero__inner {
  position: relative; max-width: var(--ancho); margin: 0 auto; padding: 84px 32px;
  width: 100%; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero__kicker .linea { width: 42px; height: 1px; background: var(--celeste); }
.hero__kicker .texto {
  font-size: 12px; letter-spacing: 0.32em; color: #a9c6d6;
  text-transform: uppercase; font-weight: 600;
}
.hero h1 {
  font-family: var(--heading-font); font-weight: 700;
  font-size: clamp(38px, 5.4vw, 66px); line-height: 1.08; color: #fff; margin: 0 0 24px;
}
.hero p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 500px; margin: 0; }
.hero__indice { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 48px; }
.hero__indice .rotulo {
  font-size: 11px; letter-spacing: 0.34em; color: rgba(255,255,255,0.45);
  text-transform: uppercase; margin-bottom: 22px;
}
.hero__indice nav { display: flex; flex-direction: column; }
.hero__indice a {
  cursor: pointer; display: flex; align-items: baseline; gap: 16px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.9); text-decoration: none;
}
.hero__indice a:hover, .hero__indice a.activo { color: var(--celeste); }
.hero__indice .num { font-size: 12px; color: var(--celeste); font-weight: 600; letter-spacing: 0.08em; }
.hero__indice .etiqueta {
  font-family: var(--heading-font); font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15; font-weight: 700;
}
@media (max-width: 760px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 52px 22px 60px; }
  .hero__indice { border-left: none; padding-left: 0; }
}
