/* ==========================================================
   TaxisCastelldefels.es — servicios.css
   Estilos específicos: /servicios/
   Se carga DESPUÉS de styles.css (que aporta reset, variables,
   botones base, footer, container, secciones comunes).
   ========================================================== */

/* ── TIPOGRAFÍA ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }

/* ── LABEL / EYEBROW ────────────────────────────────────────── */
.sv-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.sv-label--light {
  color: var(--yellow-dark);
}
.sv-label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

/* Cabecera y menú móvil: gestionados de forma unificada en styles.css
   (no redefinir aquí para mantener consistencia en todas las páginas) */

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.sv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.sv-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.sv-breadcrumb a:hover { color: var(--yellow); }
.sv-breadcrumb span { color: var(--yellow); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────────── */
.sv-hero {
  position: relative;
  background: var(--black);
  padding: calc(78px + 3rem) 0 5rem;
  overflow: hidden;
}
.sv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.93) 30%, rgba(10,10,10,.55) 60%, rgba(10,10,10,.12) 100%);
  z-index: 1;
}
.sv-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
  opacity: 0.55;
}
.sv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 60ch;
}
.sv-hero-inner h1 em {
  font-style: normal;
  color: var(--yellow);
}
.sv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.sv-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
}
.sv-hero-pill svg { color: var(--yellow); flex-shrink: 0; }
.sv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}
.sv-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-light);
  margin-top: 1rem;
  max-width: 50ch;
  line-height: 1.65;
}

/* Botones base (reutilizables en servicios) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-cta);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,197,24,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn-outline-yellow:hover {
  background: var(--yellow-soft);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: var(--text-sm); }

/* ── INTRO STATS BAR ─────────────────────────────────────────── */
.sv-stats {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.sv-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sv-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sv-stat-n {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sv-stat-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
  line-height: 1.25;
}
.sv-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* ── CATÁLOGO SERVICIOS ──────────────────────────────────────── */
.sv-catalog {
  padding: var(--section-y) 0;
  background: var(--bg-light);
  color: var(--text-on-light);
}
.sv-catalog-header {
  max-width: 62ch;
  margin-bottom: 3rem;
}
.sv-catalog-lead {
  font-size: 1.05rem;
  color: var(--text-2-on-light);
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* Grid mixto: featured card grande + grid de cards */
.sv-catalog-grid {
  display: grid;
  gap: 1.5rem;
}
/* Featured card ocupa toda la anchura */
.sv-feat {
  background: rgba(14,14,18,0.94);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}
.sv-feat::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.sv-feat-n {
  position: absolute;
  bottom: -0.5rem; right: 1.5rem;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(245,197,24,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sv-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.sv-feat-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.sv-feat-desc {
  color: var(--gray-light);
  font-size: 0.975rem;
  line-height: 1.65;
  max-width: 50ch;
}
.sv-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.sv-feat-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-light);
}
.sv-feat-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  flex-shrink: 0;
}

/* Grid de cards regulares */
.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
/* Desktop: 3 columnas exactas → 9 tarjetas en cuadrícula 3×3 */
@media (min-width: 1024px) {
  .sv-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sv-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sv-card:hover {
  border-color: rgba(212,168,0,0.35);
  box-shadow: var(--shadow-on-light), 0 0 0 1px rgba(212,168,0,0.15);
  transform: translateY(-2px);
}
.sv-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212,168,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.1rem;
}
.sv-card-icon svg { color: var(--yellow-dark); }
.sv-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.sv-card-desc {
  font-size: 0.9rem;
  color: var(--text-2-on-light);
  line-height: 1.6;
  flex: 1;
}
.sv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.sv-card-link:hover { gap: 0.5rem; }
.sv-card-link svg { flex-shrink: 0; }

/* ── SECCIÓN CONDUCTORES LOCALES ─────────────────────────────── */
.sv-local {
  background: var(--dark);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.sv-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.sv-local-img-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sv-local-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.sv-local-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sv-local-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 50%);
}
.sv-local-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.sv-local-copy {}
.sv-local-copy h2 {
  margin-bottom: 1.25rem;
  color: var(--white);
}
.sv-local-copy p {
  color: var(--gray-light);
  font-size: var(--text-base);
  margin-bottom: 1.1rem;
}
.sv-local-items {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-local-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.sv-local-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow-soft);
  border: 1px solid rgba(245,197,24,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sv-local-item-icon svg { color: var(--yellow); }
.sv-local-item-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.sv-local-item-text strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.1rem;
}

/* ── DIFERENCIADORES ─────────────────────────────────────────── */
.sv-why {
  background: var(--bg-light-alt);
  color: var(--text-on-light);
  padding: var(--section-y) 0;
}
.sv-why-header {
  text-align: center;
  margin-bottom: 3rem;
}
.sv-why-header h2 { color: var(--text-on-light); }
.sv-why-header p {
  font-size: 1.05rem;
  color: var(--text-2-on-light);
  margin-top: 0.75rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.sv-why-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-on-light);
}
.sv-why-item:hover {
  border-color: rgba(212,168,0,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.sv-why-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,168,0,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-why-item-icon svg { color: var(--yellow-dark); }
.sv-why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-light);
}
.sv-why-item p {
  font-size: 0.9rem;
  color: var(--text-2-on-light);
  line-height: 1.6;
}

/* ── FRANJA MÉTODOS DE PAGO ──────────────────────────────────── */
.sv-payment-strip {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.sv-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .875rem;
}
.sv-payment-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2-on-light);
}
.sv-payment-note {
  font-size: .72rem;
  color: var(--text-2-on-light);
}
.sv-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-payment-methods li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-on-light);
  padding: .75rem 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}
.sv-payment-methods li svg {
  color: var(--green);
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .sv-payment-methods {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 599px) {
  .sv-payment-note { display: none; }
}

/* ── CÓMO FUNCIONA ───────────────────────────────────────────── */
.sv-how {
  background: var(--dark);
  padding: var(--section-y) 0;
}
.sv-how-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sv-how-header h2 { color: var(--white); }
.sv-how-header p {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-top: 0.75rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.sv-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Línea conectora entre pasos */
.sv-how-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(25% - 1px);
  right: calc(25% - 1px);
  height: 1px;
  background: linear-gradient(to right, var(--yellow-glow), var(--yellow-glow));
  pointer-events: none;
}
.sv-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}
.sv-how-step-num {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sv-how-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sv-how-step p {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── TESTIMONIOS ─────────────────────────────────────────────── */
.sv-reviews {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: var(--section-y) 0;
}
.sv-reviews-header {
  margin-bottom: 2.5rem;
}
.sv-reviews-header h2 { color: var(--text-on-light); }
.sv-reviews-header p {
  font-size: var(--text-base);
  color: var(--text-2-on-light);
  margin-top: 0.5rem;
}
.sv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.sv-review-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sv-review-stars {
  display: flex;
  gap: 0.2rem;
}
.sv-review-stars svg { color: var(--yellow-dark); }
.sv-review-text {
  font-size: 0.95rem;
  color: var(--text-on-light);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.sv-review-text::before { content: '"'; }
.sv-review-text::after  { content: '"'; }
.sv-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.sv-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,168,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.sv-review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-on-light);
}
.sv-review-context {
  font-size: 0.78rem;
  color: var(--text-2-on-light);
}

/* ── FAQ — usa estilos base de styles.css (.faq, .faq-item, etc.) ── */

/* ── CTA FINAL ───────────────────────────────────────────────── */
.sv-cta {
  background: var(--black);
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sv-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sv-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.sv-cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.sv-cta-inner p {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.sv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}
.sv-cta-tel {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 1.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.sv-cta-tel:hover { color: var(--yellow-dark); }
.sv-cta-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.sv-cta-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.sv-cta-pill svg { color: var(--green); }
.sv-cta-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.sv-cta-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.sv-cta-links a:hover { color: var(--yellow); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
/* ── DESKTOP ≥1024px: Hero con texto pegado a la izquierda ────────────────
   CAUSA RAÍZ del centrado: .sv-hero usa display:flex y .container sin
   width:100% se encoge al ancho de su contenido → margin:0 auto lo centra.
   Fix: forzar width:100% en el container dentro del hero.                 */
@media (min-width: 1024px) {
  .sv-hero {
    min-height: 58vh;
    display: flex;
    align-items: flex-start;
    padding-top: calc(78px + 0.5rem);
    padding-bottom: 4rem;
  }
  .sv-hero .container {
    width: 100%;           /* evita que el flex item se encoja */
  }
  .sv-hero-inner {
    max-width: 660px;      /* título más amplio, menos roturas de línea */
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .sv-hero-pills {
    justify-content: flex-start;
  }
  .sv-hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .sv-how-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .sv-how-grid::before { display: none; }
  .sv-local-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sv-local-img-wrap { aspect-ratio: 16/9; max-height: 420px; }
  .sv-feat { grid-template-columns: 1fr; }
  .sv-feat-cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .sv-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1rem;
    justify-items: start;
  }
  .sv-stat-sep { display: none; }
  /* Número más compacto en móvil */
  .sv-stat-n { font-size: 1.1rem; }
  /* Texto una sola línea: ocultar saltos de línea y reducir tamaño */
  .sv-stat-text { font-size: 0.72rem; }
  .sv-stat-text br { display: none; }
  /* 5º stat: ocupa las 2 columnas, centrado */
  .sv-stats-inner > .sv-stat:nth-child(9) {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }
  .sv-how-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .sv-why-grid { grid-template-columns: 1fr; }
  .sv-cta-tel { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .sv-hero { padding: 55px 0 3rem; }
  .sv-hero-pills { gap: 0.4rem; }
  .sv-hero-actions { flex-direction: column; }
  .sv-hero-actions .btn { width: 100%; justify-content: center; }
  .sv-feat { padding: 1.5rem; }
  .sv-feat-cta { flex-direction: column; width: 100%; }
  .sv-feat-cta .btn { width: 100%; justify-content: center; }
  .sv-reviews-grid { grid-template-columns: 1fr; }
  .sv-cta-actions { flex-direction: column; align-items: center; }
  .sv-cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .sv-cta-links { margin-top: 1.25rem; }
}

/* ── PARADAS DE TAXI — sv-local-stops ── */
.sv-local-stops {
  margin-top: 0;
}

.sv-local-stops-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.875rem;
}

.sv-local-stops-title svg {
  flex-shrink: 0;
  stroke: var(--yellow);
}

.sv-local-stops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sv-local-stop {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.sv-local-stop:hover {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.3);
}

@media (max-width: 480px) {
  .sv-local-stops-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Animación de entrada: sv-card y sv-why-item (igual que serv-strip-item) ── */
.sv-card,
.sv-why-item {
  opacity: 0;
  transform: translateY(16px);
}
.sv-card.is-visible,
.sv-why-item.is-visible {
  animation: stripFadeUp .45s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .sv-card,
  .sv-why-item { opacity: 1; transform: none; }
  .sv-card.is-visible,
  .sv-why-item.is-visible { animation: none; }
}

/* ── Móvil: imagen completa sin recorte ──────────────────── */
@media (max-width: 600px) {
  .sv-local-img-wrap { aspect-ratio: unset; max-height: unset; }
  .sv-local-img      { height: auto; object-fit: unset; }
}

.sv-local-stop strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.sv-local-stop span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.sv-local-stop-link {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 600;
  margin-top: 0.15rem;
}

/* ── RUTAS TURÍSTICAS / SERVICIOS PREMIUM ── */

.sv-premium {
  background: var(--dark);
  padding: var(--section-y) 0;
}

.sv-premium-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.sv-premium-header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sv-premium-lead {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* Grid 2×2 */
.sv-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Card base */
.sv-premium-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  border: 1.5px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  /* Scroll reveal: estado inicial */
  opacity: 0;
  transform: translateY(18px);
}

.sv-premium-card.is-visible {
  animation: premiumCardUp 0.45s ease forwards;
}

@keyframes premiumCardUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .sv-premium-card          { opacity: 1; transform: none; }
  .sv-premium-card.is-visible { animation: none; }
}

.sv-premium-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(245,197,24,0.18);
}

.sv-premium-card:hover .sv-premium-card-img {
  transform: scale(1.04);
}

/* Imagen de fondo */
.sv-premium-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  z-index: 0;
}

/* Overlay: degradado desde abajo */
.sv-premium-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.93) 0%,
    rgba(5,5,5,0.60) 45%,
    rgba(5,5,5,0.12) 100%
  );
  z-index: 1;
}

/* Cuerpo de la tarjeta */
.sv-premium-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: 1.75rem 1.5rem;
}

/* Badge de categoría */
.sv-premium-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  width: fit-content;
}

/* H3 de tarjeta */
.sv-premium-card-body h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

/* Descripción de tarjeta */
.sv-premium-card-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* CTA dentro de tarjeta */
.sv-premium-card-cta {
  align-self: flex-start;
}

/* Franja de confianza */
.sv-premium-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.sv-premium-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
}

.sv-premium-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .sv-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .sv-premium-card {
    min-height: 260px;
  }
  .sv-premium-card-body {
    padding: 1.25rem 1rem;
  }
  .sv-premium-trust {
    gap: 0.75rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .sv-premium-grid {
    grid-template-columns: 1fr;
  }
  .sv-premium-card {
    min-height: 260px;
  }
  .sv-premium-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
