/* ===== Solo para cableado-estructurado — tono sobrio/formal, distinto al de fibra óptica ===== */

.hero-formal {
  background: var(--azul-noche);
  color: var(--texto-claro);
  padding: 76px 0 64px;
  border-bottom: 3px solid var(--azul-brillante);
}

.hero-formal .contenedor {
  max-width: 820px;
}

.hero-formal .etiqueta-hero {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto-suave);
  border: 1px solid var(--borde);
  border-radius: 4px;
}

.hero-formal h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.hero-formal p {
  color: var(--texto-suave);
  max-width: 640px;
  font-size: 1rem;
  margin-bottom: 26px;
}

.hero-formal .boton {
  border-radius: 4px;
  font-weight: 600;
}

.hero-formal .boton-linea {
  border-radius: 4px;
  border-color: var(--borde);
  color: var(--texto-suave) !important;
}

/* ---- Imagen sobria bajo el hero: ligero desaturado, sin sombras vistosas ---- */
.imagen-formal {
  padding: 0 0 60px;
}

.imagen-formal img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  filter: grayscale(.15) contrast(1.02);
}

/* ---- Introducción, dos columnas de texto plano ---- */
.intro-formal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.intro-formal p {
  color: #475569;
  margin-bottom: 14px;
}

.intro-formal h2 {
  color: var(--azul-noche);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

/* ---- Lista de servicios formal (en vez de tarjetas con hover) ---- */
.lista-servicios {
  border-top: 1px solid #e2e8f0;
}

.servicio-formal {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e2e8f0;
}

.servicio-formal .numero {
  color: var(--azul-brillante);
  font-weight: 700;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.servicio-formal h3 {
  color: var(--azul-noche);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.servicio-formal p {
  color: #64748b;
  font-size: .94rem;
}

/* ---- Cita normativa ---- */
.cita-normativa {
  margin: 8px 0 0;
  padding: 24px 28px;
  background: #f1f5f9;
  border-left: 3px solid var(--azul-brillante);
  color: var(--azul-noche);
  font-size: .98rem;
}

.cita-normativa strong {
  display: block;
  margin-bottom: 4px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #64748b;
}

/* ---- Línea de tiempo formal (en vez de grid con círculos grandes) ---- */
.linea-tiempo {
  border-left: 2px solid #e2e8f0;
  padding-left: 0;
  margin-left: 6px;
}

.paso-formal {
  position: relative;
  padding: 0 0 30px 30px;
}

.paso-formal::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--azul-brillante);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--azul-brillante);
}

.paso-formal:last-child {
  padding-bottom: 0;
}

.paso-formal h3 {
  color: var(--azul-noche);
  font-size: 1rem;
  margin-bottom: 4px;
}

.paso-formal p {
  color: #64748b;
  font-size: .92rem;
}

/* ---- CTA sobrio, sin degradado ---- */
.cta-sobria {
  padding: 48px 0;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.cta-sobria h2 {
  color: var(--azul-noche);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-sobria p {
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 22px;
}

.cta-sobria .boton {
  border-radius: 4px;
}

@media (max-width:768px) {
  .intro-formal {
    grid-template-columns: 1fr;
  }

  .servicio-formal {
    grid-template-columns: 40px 1fr;
  }
}