/* ================================
   HIDROFONT — Servicios CSS
   Estilo Outfit moderno
================================ */

.servicio-detalle {
  padding: 5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.servicio-detalle:last-of-type { border-bottom: none; }

.servicio-alt { background: #f8fafc; }

.servicio-con {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.servicio-detalle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.servicio-detalle-reverse {
  direction: rtl;
}

.servicio-detalle-reverse > * { direction: ltr; }

.servicio-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.servicio-lbl::before {
  content: '';
  width: 18px;
  height: 2px;
  background: #3b82f6;
  border-radius: 2px;
  display: block;
}

.servicio-detalle-texto h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0d1f33;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.servicio-detalle-texto h2 .hl { color: #3b82f6; }

.servicio-detalle-texto p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.servicio-chk {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.25rem 0 2rem;
}

.servicio-chk li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1e293b;
  font-size: 14px;
  line-height: 1.5;
}

.servicio-chk-ico {
  width: 20px;
  height: 20px;
  background: #1e3a5f;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-servicio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e3a5f;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: opacity .15s;
}
.btn-servicio:hover { opacity: .88; }

.servicio-visual {
  background: #020c18;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.servicio-alt .servicio-visual {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.servicio-ico-grande {
  font-size: 64px;
  line-height: 1;
}

.servicio-visual-txt {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  max-width: 260px;
}

.servicio-alt .servicio-visual-txt { color: #64748b; }

.servicio-visual-badge {
  display: inline-block;
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.25);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.servicio-alt .servicio-visual-badge {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .servicio-detalle-inner { grid-template-columns: 1fr; gap: 2rem; }
  .servicio-detalle-reverse { direction: ltr; }
}