/* ══════════════════════════════════════════════
   servicio.css — Estilos de las páginas de servicio
   Depende de style.css (variables, navbar, footer,
   .container, .section-tag, .divider, .fade-up)
   ══════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────── */
.svc-hero {
  position: relative;
  padding: 11rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(123, 79, 212, .38), transparent 60%),
    radial-gradient(ellipse at 85% 100%, rgba(201, 168, 76, .16), transparent 55%),
    var(--bg-dark);
  overflow: hidden;
}
.svc-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .45), transparent);
}
.svc-hero-inner { max-width: 780px; }

.svc-breadcrumb {
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.75rem;
}
.svc-breadcrumb a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--gold-light); }
.svc-breadcrumb span { margin: 0 .5rem; opacity: .45; }

.svc-icon { font-size: 3rem; line-height: 1; margin-bottom: 1rem; }

.svc-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 600; /* Cormorant Garamond solo carga 300/400/600 (@import en style.css) */
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.svc-hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-lead {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2rem;
}

.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.25rem;
}
.svc-meta span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 999px;
  background: rgba(201, 168, 76, .08);
  font-size: .88rem;
  color: var(--gold-light);
}

.svc-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.svc-btn {
  display: inline-block;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.svc-btn:hover { transform: translateY(-2px); }
.svc-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 10px 28px rgba(74, 31, 168, .45);
}
.svc-btn-ghost {
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, .5);
}
.svc-btn-ghost:hover { background: rgba(201, 168, 76, .1); }

/* ── Cuerpo ──────────────────────────────────── */
.svc-section { padding: 5rem 0; }
.svc-section.alt { background: var(--bg-section); }

.svc-prose { max-width: 780px; }
.svc-prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}
.svc-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 2rem 0 .6rem;
}
.svc-prose p {
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.15rem;
}
.svc-prose > p:first-of-type { font-size: 1.06rem; }

.svc-list { list-style: none; margin: 1.5rem 0; }
.svc-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-dark);
}
.svc-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: .1rem;
  color: var(--gold);
  font-size: .9rem;
}

/* ── Pasos de la sesión ──────────────────────── */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.svc-step {
  padding: 1.9rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(74, 31, 168, .1);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(74, 31, 168, .06);
}
.svc-step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.svc-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: .5rem;
}
.svc-step p {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────── */
.svc-faq { max-width: 780px; margin-top: 2rem; }
.svc-faq details {
  border-bottom: 1px solid rgba(74, 31, 168, .14);
  padding: 1.3rem 0;
}
.svc-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .25s ease;
}
.svc-faq details[open] summary::after { transform: rotate(45deg); }
.svc-faq details p {
  margin-top: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── Otros servicios (enlazado interno) ──────── */
.svc-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.svc-related a {
  display: block;
  padding: 1.6rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(74, 31, 168, .12);
  border-radius: 16px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-related a:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, .5);
  box-shadow: 0 12px 30px rgba(74, 31, 168, .1);
}
.svc-related .ico { font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.svc-related strong {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: .35rem;
}
.svc-related em {
  font-style: normal;
  font-size: .85rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ── CTA final ───────────────────────────────── */
.svc-cta {
  padding: 5.5rem 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(123, 79, 212, .35), transparent 65%),
    var(--bg-dark);
}
.svc-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.svc-cta p {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .75);
}
.svc-cta .svc-actions { justify-content: center; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .svc-hero { padding: 9rem 0 3.5rem; }
  .svc-section { padding: 3.5rem 0; }
  .svc-cta { padding: 4rem 0; }
  .svc-actions .svc-btn { width: 100%; text-align: center; }
}
