/* =========================================================
   servicios.css — Páginas de servicio fejesan (M2)
   Complementa assets/style.css (variables, botones, secciones).
   ========================================================= */

.sv-page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(60rem 22rem at 85% -10%, rgba(8, 117, 199, 0.08), transparent 60%),
    linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f0;
}

.sv-crumbs {
  font-size: 0.85rem;
  color: #5b6b63;
  margin-bottom: 1rem;
}
.sv-crumbs a { color: #364993; text-decoration: none; }
.sv-crumbs a:hover { text-decoration: underline; }

.sv-kicker {
  display: inline-block;
  background: rgba(8, 117, 199, 0.10);
  color: #364993;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.sv-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text-main, #112119);
  max-width: 60rem;
}
.sv-page-hero .sv-intro {
  font-size: 1.15rem;
  color: #3f5047;
  max-width: 52rem;
  line-height: 1.7;
}
.sv-hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }

.sv-section { padding: 3.5rem 0; }
.sv-section h2 { font-size: 1.6rem; margin: 0 0 0.4rem; }
.sv-section .sv-lead { color: #5b6b63; margin: 0 0 2rem; max-width: 46rem; }

.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
}
.sv-card {
  background: #ffffff;
  border: 1px solid #e4ebe7;
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 1px 2px rgba(17, 33, 25, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sv-card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(17, 33, 25, 0.08); }
.sv-card .sv-icon { font-size: 1.6rem; line-height: 1; }
.sv-card h3 { font-size: 1.05rem; margin: 0.7rem 0 0.4rem; }
.sv-card p { margin: 0; color: #5b6b63; font-size: 0.95rem; line-height: 1.55; }

.sv-deliver {
  columns: 2;
  column-gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sv-deliver li {
  break-inside: avoid;
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.75rem;
  color: #2f3d36;
}
.sv-deliver li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #364993;
  font-weight: 800;
}
@media (max-width: 640px) { .sv-deliver { columns: 1; } }

.sv-steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1rem; }
.sv-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
}
.sv-steps li::before {
  content: counter(step);
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  background: #0875c7; color: #ffffff; font-weight: 800; font-size: 1.1rem;
  border-radius: 10px;
}
.sv-steps h3 { margin: 0.1rem 0 0.25rem; font-size: 1.05rem; }
.sv-steps p { margin: 0; color: #5b6b63; }

.sv-faq details {
  background: #ffffff;
  border: 1px solid #e4ebe7;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}
.sv-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #1c2a23;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sv-faq summary::after { content: "＋"; color: #364993; font-weight: 800; }
.sv-faq details[open] summary::after { content: "－"; }
.sv-faq details p { margin: 0.8rem 0 0; color: #5b6b63; line-height: 1.6; }

.sv-cta {
  background: linear-gradient(120deg, #1e2a5a 0%, #364993 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: 2.6rem 2.2rem;
  margin: 3.5rem 0;
  text-align: center;
}
.sv-cta h2 { color: #ffffff; margin: 0 0 0.6rem; font-size: 1.8rem; }
.sv-cta p { color: rgba(255, 255, 255, 0.85); max-width: 44rem; margin: 0 auto 1.4rem; }
.sv-cta .btn-cta-primary { background: #ffffff; color: #364993; }
.sv-cta .btn-cta-primary:hover { background: #eafff3; }

/* ===== FEJESAN — Guía de marca: tipografía ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.015em; }