/* =========================================================
   SERVICIOS · FIX LIMPIO
   3 arriba + 1 abajo full (desktop)
   No toca hero / mundo / experiencia
========================================================= */

.services-grid{
  display: grid !important;
  gap: 24px !important;
  align-items: stretch !important;
  justify-items: stretch !important;

  /* Por defecto (pantallas medias): 2 columnas */
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Desktop real: 3 columnas */
@media (min-width: 861px){
  .services-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* La tarjeta “wide” siempre ocupa toda la fila */
.services-grid > .service-card.service-card-wide{
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: 32px !important;
  justify-self: stretch !important;
}

/* Evitar límites antiguos en tarjetas */
.services-grid > .service-card{
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
/* ==========================
   SERVICES — THE LANE FINISH
   ========================== */

.service-card p{
  max-width: 62ch;
}

.service-card ul{
  margin-top: 14px;
  padding-left: 18px;
}

.service-card li{
  margin: 8px 0;
  color: rgba(0,0,0,.78);
}

/* Link editorial */
.service-link{ margin-top: 14px; }
.service-link a{
  font-size: 13px;
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
  padding-bottom: 2px;
  color: rgba(0,0,0,.70);
}
.service-link a:hover{
  border-bottom-color: rgba(0,0,0,.35);
}
/* Aire premium entre tarjetas */
.services-grid{
  row-gap: 28px;
}

/* Títulos de servicio: un punto más editorial */
.service-card h3{
  letter-spacing: .02em;
}

/* FORZAR LINK PREMIUM (evitar azul navegador) */
.services .service-link a,
.services .service-link a:visited{
  color: rgba(0,0,0,.70) !important;
}
.services .service-link a:hover{
  color: rgba(0,0,0,.88) !important;
  border-bottom-color: rgba(0,0,0,.35) !important;
}

/* Bullets más discretos (The Lane) */
.service-card li::marker{
  color: rgba(0,0,0,.28);
}
/* =========================================================
   THE LANE: coherencia en TODAS las tarjetas de servicio
   ========================================================= */

.services-grid > .service-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.04);
  padding: 26px 26px;
}

/* Ritmo interno */
.services-grid > .service-card h3{
  margin-top: 0;
}

.services-grid > .service-card p{
  margin-top: 10px;
}
/* =========================================================
   AJUSTE FINO: ALTURA Y RITMO EN LAS 3 TARJETAS SUPERIORES
   (solo desktop, sin tocar móvil)
   ========================================================= */
@media (min-width: 861px){
  /* Las 3 primeras tarjetas: misma base y distribución */
  .services-grid > .service-card:nth-child(-n+3){
    display: flex;
    flex-direction: column;
    min-height: 360px; /* ajuste óptico: iguala el “peso” */
  }

  /* Empuja listas y enlace hacia la base para equilibrar alturas */
  .services-grid > .service-card:nth-child(-n+3) ul{
    margin-top: auto;
  }

  .services-grid > .service-card:nth-child(-n+3) .service-link{
    margin-top: 14px;
  }
}
/* Nota editorial (Services) — sin repetir exclusividad */
.services-note{
  max-width: 74ch;
  margin: 18px 0 34px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.74);
}
/* CTA editorial — cierre de Servicios */
.services-cta{
  margin-top: 56px;
  text-align: center;
}

.services-cta p{
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}

.services-cta-link{
  font-size: 13px;
  letter-spacing: .08em;
  text-decoration: none;
  color: rgba(0,0,0,.78);
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
}

.services-cta-link:hover{
  color: rgba(0,0,0,.9);
  border-bottom-color: rgba(0,0,0,.45);
}
/* =========================================================
   RITMO EDITORIAL: separación CTA → bloque editorial siguiente
   ========================================================= */
.services-cta{
  margin-top: 64px;     /* ya existía, lo reafirmamos */
  margin-bottom: 72px;  /* aire antes del bloque “No se trata…” */
}

/* En pantallas grandes, un punto más de respiración */
@media (min-width: 861px){
  .services-cta{
    margin-bottom: 84px;
  }
}

