/* ============================================================
   CLINICAL PLUS — service.css
   Estilos para páginas individuales de servicio
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: .75rem 0; font-size: .82rem; }
.breadcrumb__list { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.breadcrumb__list a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--text); font-weight: 500; }

/* ── SERVICE HERO ── */
.svc-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
  padding: 4rem 0;
}
.svc-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.svc-hero__body { color: #fff; }
.svc-hero__tag {
  display: inline-block; background: rgba(255,255,255,.15); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.25);
}
.svc-hero__title { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3rem); font-weight: 600; line-height: 1.15; margin-bottom: 1rem; }
.svc-hero__desc { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.75rem; max-width: 480px; }
.svc-hero__badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.svc-hero__badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500;
  padding: .4rem .9rem; border-radius: 50px;
}
.svc-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.svc-hero__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.svc-hero__img img { width: 100%; height: 380px; object-fit: cover; }
.svc-hero__deco {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}

/* ── WHY SECTION ── */
.svc-why { padding: 4.5rem 0; background: var(--bg-soft); }
.svc-why__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.5rem; }
.svc-why__card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  border: 1px solid var(--border); text-align: center;
  transition: all var(--transition);
}
.svc-why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.svc-why__icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.75rem;
}
.svc-why__card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.svc-why__card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── PROCEDURES ── */
.svc-procedures { padding: 4.5rem 0; }
.svc-procedures__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }
.proc-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-soft); border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--border); transition: all var(--transition);
}
.proc-card:hover { border-color: var(--accent); background: #fff; }
.proc-card__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.proc-card__title { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
.proc-card__desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ── HOW IT WORKS ── */
.svc-steps { padding: 4.5rem 0; background: var(--bg-soft); }
.svc-steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.svc-step { text-align: center; }
.svc-step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 16px rgba(79,70,229,.3);
}
.svc-step__title { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; }
.svc-step__desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── COVERAGE ZONES ── */
.svc-coverage { padding: 4rem 0; }
.svc-coverage__grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.zone-pill {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  color: var(--text); padding: .6rem 1.25rem; border-radius: 50px;
  font-size: .875rem; font-weight: 500; transition: all var(--transition);
}
.zone-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-lt); }
.zone-pill svg { color: var(--primary); }

/* ── CTA BANNER ── */
.svc-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
  padding: 4rem 0; text-align: center; color: #fff;
}
.svc-cta__title { font-family: var(--font-serif); font-size: clamp(1.5rem,3.5vw,2.25rem); font-weight: 600; margin-bottom: 1rem; }
.svc-cta__desc { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.svc-cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── RELATED SERVICES ── */
.svc-related { padding: 4.5rem 0; background: var(--bg-soft); }
.svc-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.related-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: all var(--transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.related-card__cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: .35rem; display: block; }
.related-card__title { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.related-card__link { font-size: .85rem; font-weight: 600; color: var(--primary); margin-top: auto; display: block; }
.related-card__link:hover { text-decoration: underline; }

/* ── FAQ SERVICE ── */
.svc-faq { padding: 4.5rem 0; }
.svc-faq .faq__grid { grid-template-columns: 1fr; max-width: 760px; }

/* ── KEYWORDS HIDDEN (SEO) ── */
.seo-content { font-size: .875rem; color: var(--text-muted); line-height: 1.8; padding: 3rem 0; border-top: 1px solid var(--border); }
.seo-content h2 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 .5rem; color: var(--text); }
.seo-content p { margin-bottom: .75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__img { order: -1; }
  .svc-hero__img img { height: 240px; }
  .svc-hero { padding: 2.5rem 0; }
  .svc-hero__deco { display: none; }
  .svc-steps__list { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .svc-steps__list { grid-template-columns: 1fr; }
  .svc-hero__actions { flex-direction: column; }
  .svc-hero__actions .btn { width: 100%; justify-content: center; }
}
