/* ==========================================================================
   FisioSalud — sitio estático (rediseño v4)
   Fisioterapia y kinesiología en Encarnación, Paraguay.
   CSS vanilla. Layout con media queries + clamp(); JS solo para comportamiento.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Superficies claras */
  --bone: #EAE8D1;        /* hueso cálido, fondo principal */
  --bone-2: #DEDBC0;      /* hueso un paso más profundo (marcos de foto) */
  --bone-review: #F1EFDF; /* superficie de la sección de reseñas */
  --card: #FBFAF0;        /* tarjetas de reseña */

  /* Ciruela (secciones oscuras / texto / botones / footer) */
  --plum: #3B1E36;
  --plum-deep: #2E1729;
  --plum-row: #38213A;
  --plum-soft: rgba(59, 30, 54, .66);
  --plum-line: rgba(59, 30, 54, .16);
  --plum-line-soft: rgba(59, 30, 54, .10);

  /* Verdes por rol */
  --olive: #4C6E16;       /* texto / enlaces / interacción SOBRE claro */
  --lime: #B2D63C;        /* decorativo SOLO sobre oscuro */
  --sage: #C4D3A2;        /* superficies suaves / offsets */

  /* Texto sobre oscuro */
  --cream: #EAE8D1;
  --cream-dim: rgba(234, 232, 209, .72);
  --cream-soft: rgba(234, 232, 209, .60);
  --cream-line: rgba(234, 232, 209, .16);

  /* Tipografía */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  /* Radios */
  --r-img: 24px;   /* imágenes grandes */
  --r-panel: 18px; /* paneles / acordeones */
  --r-btn: 12px;   /* botones */
  --r-hero: 10px;  /* foto del hero */

  /* Sombra única, direccional hacia abajo, tintada a ciruela */
  --shadow-soft: 0 22px 48px -34px rgba(59, 30, 54, .55);
  --shadow-lift: 0 10px 24px -14px rgba(59, 30, 54, .5);
  --shadow-dark: 0 30px 70px -42px rgba(0, 0, 0, .6);

  /* Layout */
  --maxw: 1240px;
  --maxw-hero: 1320px;      /* el hero respira un poco más ancho */
  --nav-height: 108px;      /* alto aprox. del header, para el cálculo del hero */
  --gutter: clamp(22px, 5vw, 96px);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--olive); text-decoration: none; }

h1, h2, h3 { margin: 0; font-family: var(--font-display); }

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   3. Utilidades compartidas
   -------------------------------------------------------------------------- */
.inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }

.section { padding: clamp(60px, 8vw, 100px) var(--gutter); }
.section--dark { background: var(--plum-deep); color: var(--cream); }

/* Eyebrow — Hanken uppercase, tracking amplio. Oliva sobre claro, lima sobre oscuro. */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0;
}
.eyebrow--onDark { color: var(--lime); }

/* Títulos de sección */
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--plum);
}
.h2--onDark { color: var(--cream); }

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--plum-soft);
  text-wrap: pretty;
}
.lead--onDark { color: var(--cream-dim); }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1;
  padding: 17px 28px;
  border: none;
  border-radius: var(--r-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn svg { flex: none; }

.btn-plum { background: var(--plum); color: var(--cream); }
.btn-plum:hover { background: var(--plum-deep); color: var(--cream); box-shadow: var(--shadow-lift); }

.btn-cream { background: var(--cream); color: var(--plum); }
.btn-cream:hover { background: #F3F1DE; color: var(--plum); box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .5); }

/* Enlace secundario con flecha + subrayado */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--olive);
  border-bottom: 1px solid rgba(76, 110, 22, .4);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.link-arrow svg { flex: none; transition: transform .22s ease; }
.link-arrow:hover { border-bottom-color: var(--olive); }
.link-arrow:hover svg { transform: translate(2px, -2px); }
.link-arrow--onDark { color: var(--lime); border-bottom-color: rgba(178, 214, 60, .4); }
.link-arrow--onDark:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* --------------------------------------------------------------------------
   4. Navegación
   -------------------------------------------------------------------------- */
.nav {
  position: relative;              /* ancla el dropdown mobile (top:100%) al nav */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px) var(--gutter);
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark { flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--plum);
  line-height: 1;
}
.brand__tag { display: block; font-size: 13px; color: var(--plum-soft); margin-top: 4px; line-height: 1; }

.nav__links { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 40px); }
.nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--olive); }
.nav__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }

/* Hamburguesa */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 2.6px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    background: var(--bone);
    border: 1px solid var(--plum-line);
    border-radius: var(--r-panel);
    box-shadow: var(--shadow-soft);
    z-index: 40;
    /* No se oculta contenido esencial: el menú es navegación duplicada de los anchors,
       y en desktop siempre está visible. */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease;
  }
  .nav[data-open="true"] .nav__links {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { width: 100%; padding: 12px 10px; font-size: 17px; }
  .nav__cta { padding: 12px 10px; }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  /* El header + hero ocupan aprox. el primer viewport. min-height (no fija)
     para que en pantallas bajas el contenido crezca y haya scroll sin recortes. */
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  padding: clamp(20px, 3vw, 44px) var(--gutter) clamp(40px, 5vw, 64px);
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw-hero);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(48px, 5.5vw, 100px);
}

.hero__left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 40px);
  padding-top: clamp(8px, 1.5vw, 18px);
}
.hero__lede { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(24px, 3vw, 32px); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--plum);
}
.hero__title span { display: block; }
.hero__title .accent { color: var(--olive); }

.hero__body {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  max-width: 30rem;
  color: var(--plum-soft);
  font-weight: 500;
  text-wrap: pretty;
}

.hero__right {
  flex: 1 1 52%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.hero__frame {
  position: relative;
  /* Marco vertical/editorial ~5:6: buena presencia en desktop pero recorta muy poco
     de la foto vertical 4:5. El alto manda; el ancho lo deriva el aspect-ratio. */
  height: clamp(540px, 66svh, 660px);
  aspect-ratio: 5 / 6;
  width: auto;
  max-width: 100%;
}
/* Bloque offset lima, abajo-derecha, detrás de la foto */
.hero__offset {
  position: absolute;
  z-index: 0;
  top: 26px; left: 26px; right: -22px; bottom: -22px;
  background: var(--lime);
  border-radius: var(--r-img);
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--r-hero);
  overflow: hidden;
  background: var(--bone-2);
  box-shadow: var(--shadow-soft);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }

@media (max-width: 860px) {
  :root { --nav-height: 88px; }
  /* Apilado: el contenido crece naturalmente, sin forzar el viewport ni recortar. */
  .hero { min-height: auto; display: block; padding-top: clamp(16px, 4vw, 28px); }
  .hero__inner { flex-direction: column; align-items: stretch; gap: clamp(40px, 8vw, 52px); }
  .hero__right { justify-content: center; }
  .hero__frame { width: 100%; max-width: 460px; height: auto; aspect-ratio: auto; align-self: center; margin: 0 auto; }
  .hero__photo { aspect-ratio: 4 / 5; }
  .hero__offset { top: 20px; left: 20px; right: -16px; bottom: -16px; }
}

/* --------------------------------------------------------------------------
   6. Primera consulta (claro) — foto izq (offset salvia) + timeline 3 pasos
   -------------------------------------------------------------------------- */
/* El contenido fluye tras el Hero: sin min-height ni centrado vertical.
   padding-top algo menor que el resto para ajustar el ritmo Hero→Primera consulta. */
.pc { padding-top: clamp(56px, 6vw, 84px); padding-bottom: clamp(72px, 7vw, 104px); }
.pc .h2 { font-size: clamp(32px, 5.2vw, 59px); }
.pc .lead { max-width: 52ch; color: rgba(59, 30, 54, .74); }

.pc__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 16px);
  max-width: 720px;
  margin-bottom: clamp(32px, 4.5vw, 52px);
}

.pc__cols {
  display: flex;
  /* La foto conserva su proporción 4:3 natural (sin estirarse ni recortar la
     interacción). El timeline se alinea al tope; la base queda razonablemente cerca. */
  align-items: flex-start;
  gap: clamp(36px, 4.5vw, 68px);
}
.pc__media { flex: 0 0 46%; display: flex; }

/* Marco horizontal 4:3, del mismo ratio que la foto → object-cover no recorta. */
.pc__frame { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.pc__offset {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate(16px, 16px);
  background: var(--sage);
  border-radius: var(--r-img);
}
.pc__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--bone-2);
  box-shadow: var(--shadow-soft);
}
.pc__photo picture { display: block; width: 100%; height: 100%; }
.pc__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

/* Timeline */
.pc__timeline {
  flex: 1 1 56%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 20px);
}
.pc__step { display: flex; gap: clamp(16px, 2vw, 24px); flex: 0 0 auto; }

/* Rail: badge + conector vertical */
.pc__rail {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.pc__badge {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Anillo del color de fondo para "cortar" la línea del conector detrás del badge */
  box-shadow: 0 0 0 6px var(--bone);
  position: relative;
  z-index: 1;
}
.pc__connector {
  flex: 1;
  min-height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--olive);
}
.pc__connector::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5px;                    /* línea un poco más visible */
  background: rgba(59, 30, 54, .30);
  border-radius: 2px;
}
.pc__connector svg { position: relative; }

.pc__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 4px 0 12px;
}
.pc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--plum);
}
.pc__text {
  font-size: clamp(15.5px, 1.3vw, 17px);
  line-height: 1.5;
  color: rgba(59, 30, 54, .8);   /* más contraste sobre el fondo claro */
  text-wrap: pretty;
}

/* Paso final: tarjeta ciruela */
.pc__card {
  background: var(--plum);
  border-radius: var(--r-panel);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.2vw, 28px);
}
.pc__title--onDark { color: var(--cream); }
.pc__text--onDark { color: var(--cream-dim); }

@media (max-width: 860px) {
  .pc__cols { flex-direction: column; gap: clamp(32px, 6vw, 40px); }
  .pc__media { flex: 1 1 auto; }
  .pc__timeline { flex: 1 1 auto; }
  .pc__step { flex: 0 0 auto; min-height: 0; }
}
@media (max-width: 420px) {
  .pc__step { gap: 14px; }
  .pc__badge { width: 46px; height: 46px; box-shadow: 0 0 0 5px var(--bone); }
}

/* --------------------------------------------------------------------------
   7. Objetivos (oscuro) — encabezado izq + 4 filas-enlace der
   -------------------------------------------------------------------------- */
.obj__inner {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 88px);
}
.obj__header {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 18px);
}
.obj__header .lead { max-width: 42ch; color: rgba(234, 232, 209, .82); }
.obj__right { flex: 1 1 62%; min-width: 0; }

.obj__list { list-style: none; margin: 0; padding: 0; }

/* Fila-enlace */
.obj__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.4vw, 28px);
  padding: clamp(22px, 2.4vw, 30px) 12px;
  border-top: 1px solid var(--cream-line);
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  transition: background .25s ease, border-radius .25s ease, border-color .25s ease;
}
.obj__list li:first-child .obj__row { border-top: none; }

.obj__row:hover,
.obj__row:focus-visible {
  background: rgba(56, 33, 58, .55);   /* relleno tonal leve, no tarjeta pesada */
  border-radius: 12px;
  border-top-color: transparent;
}
.obj__row:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}
/* Barra de acento lima (izq) que crece en hover/focus, geometría propia (cap redondeado) */
.obj__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--lime);
  border-radius: 3px;
  transition: height .28s ease;
}
.obj__row:hover .obj__accent,
.obj__row:focus-visible .obj__accent { height: 32px; }

.obj__label {
  flex: 0 0 auto;
  min-width: clamp(96px, 12vw, 150px);
  padding-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--lime);
}
.obj__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.obj__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: transform .25s ease;
}
.obj__row:hover .obj__title,
.obj__row:focus-visible .obj__title { transform: translateX(5px); }
.obj__desc {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(234, 232, 209, .82);   /* +contraste, sigue atenuada */
  text-wrap: pretty;
}
.obj__arrow {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  color: rgba(234, 232, 209, .66);   /* apenas más visible en normal */
  transition: transform .25s ease, color .25s ease;
}
.obj__row:hover .obj__arrow,
.obj__row:focus-visible .obj__arrow { color: var(--lime); transform: translateX(5px); }

/* Cierre */
.obj__closer {
  margin-top: clamp(22px, 2.6vw, 30px);
  padding: clamp(16px, 1.8vw, 20px) clamp(18px, 2.2vw, 24px);
  background: var(--plum-row);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 28px);
}
.obj__closer-text {
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.5;
  max-width: 48ch;
  color: var(--cream-dim);
  text-wrap: pretty;
}
.obj__closer .link-arrow { white-space: nowrap; flex: none; }

@media (max-width: 860px) {
  .obj__inner { flex-direction: column; align-items: flex-start; gap: clamp(32px, 6vw, 44px); }
  .obj__header { flex: 1 1 auto; }
  .obj__right { flex: 1 1 auto; width: 100%; }
  .obj__row {
    flex-direction: column;
    gap: 8px;
    padding: 22px 0;
  }
  .obj__row:hover { background: transparent; border-radius: 0; border-top-color: var(--cream-line); }
  .obj__list li:first-child .obj__row:hover { border-top-color: transparent; }
  .obj__row:hover .obj__title { transform: none; }
  .obj__accent { display: none; }
  .obj__label { min-width: 0; padding-top: 0; }
  .obj__arrow {
    position: absolute;
    top: 24px;
    right: 0;
    align-self: flex-start;
  }
  .obj__body { padding-right: 34px; }
  .obj__closer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --------------------------------------------------------------------------
   8. Servicios (claro) — foto interactiva izq + lista 6 servicios der
   -------------------------------------------------------------------------- */
.svc__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 16px);
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.svc__header .lead { max-width: 56ch; color: rgba(59, 30, 54, .76); }

.svc__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(440px, 1fr);
  align-items: stretch;
  gap: clamp(36px, 4vw, 56px);
}

/* Foto grande interactiva (capas con crossfade) */
.svc__media { min-width: 0; }
.svc__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--bone-2);
  box-shadow: var(--shadow-soft);
}
/* Crossfade 260ms; contenedor de alto fijo (aspect-ratio), sin flashes */
.svc__layer { position: absolute; inset: 0; opacity: 0; transition: opacity .26s ease; }
.svc__layer.is-active { opacity: 1; }
.svc__layer picture { display: block; width: 100%; height: 100%; }
.svc__layer img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

/* Columna editorial: detalle activo estable + selector tipográfico */
.svc__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc__detail { display: none; }
.svc__content[data-enhanced] .svc__detail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.svc__detail-title {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--plum);
  white-space: nowrap;
}
.svc__detail-desc {
  max-width: 39ch;
  min-height: 4.5em;
  margin-top: clamp(11px, 1.2vw, 15px);
  font-size: clamp(16px, 1.25vw, 17.5px);
  line-height: 1.5;
  color: rgba(59, 30, 54, .74);
  text-wrap: pretty;
}

.svc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.svc__content[data-enhanced] .svc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(52px, auto);
  gap: 2px clamp(16px, 1.8vw, 24px);
  margin-top: clamp(15px, 1.8vw, 22px);
  padding: 0;
}
.svc__item {
  min-width: 0;
}

.svc__head {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 8px 0 8px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: rgba(59, 30, 54, .68);
  transition: color .22s ease;
}
.svc__head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .18s ease;
}
.svc__head:hover,
.svc__head:focus-visible { color: rgba(59, 30, 54, .88); }
.svc__item.is-active .svc__head { color: var(--plum); }
.svc__item.is-active .svc__head::before { opacity: 1; }

.svc__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: inherit;
  white-space: nowrap;
}
.svc__item.is-active .svc__name { font-weight: 700; }

/* Panel de descripción (acordeón; abierto por defecto sin JS) */
.svc__panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .3s ease; }
.svc__content[data-enhanced] .svc__panel { display: none; }
.svc__list[data-enhanced] .svc__item:not(.is-active) .svc__panel { grid-template-rows: 0fr; }
.svc__panel-inner { overflow: hidden; min-height: 0; }
.svc__desc {
  margin: 0;
  padding: 2px 0 16px;
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.5;
  color: var(--plum-soft);
  text-wrap: pretty;
}

/* Foto inline (solo mobile) */
.svc__mphoto { display: none; }

@media (min-width: 961px) and (max-width: 1100px) {
  .svc__cols {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .96fr);
    gap: clamp(28px, 3vw, 34px);
  }
  .svc__detail-title { font-size: clamp(27px, 3vw, 31px); }
  .svc__detail-desc {
    max-width: 38ch;
    min-height: 4.35em;
    margin-top: 9px;
    font-size: 15.5px;
    line-height: 1.45;
  }
  .svc__content[data-enhanced] .svc__list {
    grid-auto-rows: minmax(46px, auto);
    gap: 0 16px;
    margin-top: 13px;
  }
  .svc__head { min-height: 46px; padding: 6px 0 6px 12px; }
  .svc__head::before { height: 20px; }
  .svc__name { font-size: 16.5px; }
}

@media (max-width: 960px) {
  .svc__cols { display: block; }
  .svc__media { display: none; }
  .svc__content { display: block; }
  .svc__content[data-enhanced] .svc__detail { display: none; }
  .svc__list,
  .svc__content[data-enhanced] .svc__list { display: block; padding: 0; }
  .svc__item { border-top: 1px solid var(--plum-line); }
  .svc__head {
    min-height: 0;
    padding: 17px 0;
    color: var(--plum);
  }
  .svc__head::before { content: none; }
  .svc__name { white-space: normal; text-wrap: balance; }
  .svc__item.is-active .svc__head { padding-bottom: 10px; }
  .svc__content[data-enhanced] .svc__panel { display: grid; }
  .svc__item.is-active .svc__desc { padding: 0 0 18px; color: rgba(59, 30, 54, .72); }
  /* Indicadores +/− solo en mobile (en desktop la selección es hover/focus) */
  .svc__head::after {
    content: "+";
    margin-left: auto;
    padding-left: 14px;
    align-self: center;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    color: var(--olive);
    transition: color .2s ease;
  }
  .svc__item.is-active .svc__head::after { content: "\2212"; color: var(--olive); }
  .svc__mphoto {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    margin: 4px 0 14px;
    background: var(--bone-2);
  }
  .svc__mphoto picture { display: block; width: 100%; height: 100%; }
  .svc__mphoto img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
}

/* --------------------------------------------------------------------------
   9. Equipo (oscuro) — díptico. Altura compacta (~-18%).
   -------------------------------------------------------------------------- */
.team { padding-top: clamp(52px, 6vw, 80px); padding-bottom: clamp(48px, 5.5vw, 72px); }

.team__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 88px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.team__header .h2 { flex: 0 0 auto; }
.team__intro { flex: 0 1 46ch; margin-top: 6px; color: rgba(234, 232, 209, .78); }

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
/* Compacto reduciendo el ANCHO del retrato (no la altura), conservando 3:4 vertical natural. */
.team__member { display: flex; flex-direction: column; width: min(100%, 440px); margin-inline: auto; }

.team__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-img);
  background: rgba(234, 232, 209, .08);
}
.team__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;   /* conserva rostro y más torso; ajuste por persona abajo */
  transition: filter .35s ease;
}
/* Ajuste fino por persona (igualar altura de ojos, conservar torso) */
.team__grid .team__member:nth-child(1) .team__portrait img { object-position: center 20%; } /* Jaco */
.team__grid .team__member:nth-child(2) .team__portrait img { object-position: center 18%; } /* Betania */
.team__member:hover .team__portrait img { filter: brightness(1.05); }
.team__scrim {
  position: absolute;
  inset: 0;
  /* Fundido concentrado en la franja más baja; el resto de la ropa queda limpio. */
  background: linear-gradient(to top,
    var(--plum-deep) 0%,
    rgba(46,23,41,.7) 5%,
    rgba(46,23,41,.12) 13%,
    transparent 20%,
    transparent 100%);
  pointer-events: none;
}

/* Nombre grande superpuesto al borde inferior del retrato */
.team__name {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  padding-left: 10px;
  pointer-events: none;
}
.team__role {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 10px;
  line-height: 1.3;
}
.team__first {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(37px, 4.6vw, 54px);
  letter-spacing: -0.03em;
  color: var(--cream);
}
.team__last {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(37px, 4.6vw, 54px);
  letter-spacing: -0.03em;
  color: var(--cream);
}
.team__bio {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 38ch;
  color: rgba(234, 232, 209, .74);
  margin: clamp(12px, 1.4vw, 16px) 0 0;
  padding-left: 10px;
  text-wrap: pretty;
}

@media (max-width: 820px) {
  .team__header { flex-direction: column; gap: 18px; margin-bottom: clamp(32px, 7vw, 44px); }
  .team__intro { flex: 1 1 auto; margin-top: 0; }
  .team__grid { grid-template-columns: 1fr; gap: clamp(40px, 8vw, 52px); }
  .team__name { margin-top: -26px; }
}

/* --------------------------------------------------------------------------
   10. Reseñas (claro) — encabezado centrado + 3 tarjetas + badge
   -------------------------------------------------------------------------- */
.rev { background: var(--bone-review); }

.rev__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(12px, 1.5vw, 16px);
  max-width: 56ch;
  margin: 0 auto clamp(34px, 4.5vw, 52px);
}
.rev__header .h2 { max-width: 26ch; text-wrap: balance; }
.rev__sub { color: var(--plum-soft); font-weight: 500; }

.rev__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 1.8vw, 24px);
  align-items: stretch;
}
.rev__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--plum-line-soft);
  border-radius: 15px;
  padding: clamp(24px, 2.4vw, 30px) clamp(22px, 2.2vw, 28px);
  /* Sombra más cerrada y discreta */
  box-shadow: 0 14px 30px -24px rgba(59, 30, 54, .45);
}

.rev__stars { display: flex; gap: 3px; margin-bottom: clamp(16px, 1.8vw, 22px); }
.rev__star { width: 19px; height: 19px; fill: var(--plum-line); }
.rev__star.is-on { fill: var(--olive); }

.rev__quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 18.5px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--plum);
  text-wrap: pretty;
}

.rev__person {
  margin-top: auto;                 /* fija el nombre abajo → alinea filas entre tarjetas */
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid var(--plum-line-soft);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rev__name { font-family: var(--font-body); font-weight: 600; font-size: 15.5px; color: var(--plum); }
.rev__meta { font-size: 13.5px; color: rgba(59, 30, 54, .74); }

/* Score editorial (no píldora) */
.rev__score-row { display: flex; justify-content: center; margin-top: clamp(18px, 2.6vw, 32px); }
.rev__score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: var(--font-body);
}
.rev__score-star { flex: none; width: 22px; height: 22px; fill: var(--olive); }
.rev__score-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--plum);
}
.rev__score-label { font-size: clamp(15px, 1.4vw, 17px); color: rgba(59, 30, 54, .74); }
.rev__score-sep { width: 1px; height: 20px; background: var(--plum-line); margin: 0 4px; }
.rev__score-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 16px);
  color: var(--olive);
  border-bottom: 1px solid rgba(76, 110, 22, .4);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.rev__score-cta svg { transition: transform .22s ease; }
.rev__score:hover .rev__score-cta { border-bottom-color: var(--olive); }
.rev__score:hover .rev__score-cta svg { transform: translate(2px, -2px); }

/* Breakpoints: 3 col (desktop amplio) / 2 col (860–1100) / 1 col (mobile) */
@media (max-width: 1100px) {
  .rev__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .rev__grid { grid-template-columns: 1fr; gap: 16px; }
  .rev__score { flex-wrap: wrap; justify-content: center; gap: 8px 10px; }
}

/* --------------------------------------------------------------------------
   11. Preguntas frecuentes (claro) — título izq (sticky) + acordeón der
   -------------------------------------------------------------------------- */
/* Menos aire entre Reseñas y FAQ (~-28% en el tope), sin compactar el contenido interno. */
.faq { padding-top: clamp(40px, 5vw, 64px); }

.faq__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 104px);
}
.faq__left {
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 18px);
  position: sticky;
  top: 56px;
}
.faq__intro { max-width: 34ch; color: var(--plum-soft); }
.faq__contact {
  margin-top: clamp(8px, 1.2vw, 14px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid var(--plum-line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.faq__contact-text {
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.5;
  max-width: 30ch;
  color: var(--plum);
  font-weight: 500;
  text-wrap: pretty;
}

.faq__list { flex: 1 1 66%; list-style: none; margin: 0; padding: 0; min-width: 0; }
.faq__item {
  border-bottom: 1px solid var(--plum-line);
  transition: background .2s ease;
}
.faq__item:first-child { border-top: 1px solid var(--plum-line); }
.faq__item:hover { background: rgba(59, 30, 54, .035); }
.faq__item.is-open { background: rgba(59, 30, 54, .03); }   /* fila activa: tonal muy sutil, sin tarjeta */

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: clamp(18px, 2vw, 26px) clamp(8px, 1.2vw, 16px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq__q-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--plum);
}

/* Icono +/− (dos barras; la vertical desaparece al abrir) */
.faq__icon { position: relative; flex: none; width: 26px; height: 26px; }
.faq__bar-h, .faq__bar-v { position: absolute; top: 50%; left: 50%; background: var(--olive); border-radius: 2px; }
.faq__bar-h { width: 17px; height: 2.6px; transform: translate(-50%, -50%); }
.faq__bar-v { width: 2.6px; height: 17px; transform: translate(-50%, -50%); transition: transform .28s ease, opacity .2s ease; }
.faq__item.is-open .faq__bar-v { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }

/* Respuesta (abierta por defecto sin JS; el acordeón la colapsa al mejorar).
   La transición se activa recién tras el primer frame (clase is-animatable),
   así el colapso inicial en carga limpia es instantáneo, no una animación de cierre. */
.faq__answer { display: grid; grid-template-rows: 1fr; }
.faq__list.is-animatable .faq__answer { transition: grid-template-rows .3s ease; }
.faq__list[data-enhanced] .faq__item:not(.is-open) .faq__answer { grid-template-rows: 0fr; }
.faq__answer-inner { overflow: hidden; min-height: 0; }
.faq__answer p {
  margin: 0;
  padding: 0 clamp(8px, 1.2vw, 16px) clamp(20px, 2.2vw, 28px);
  font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(59, 30, 54, .78);   /* +contraste, sigue secundaria a la pregunta */
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .faq__inner { flex-direction: column; gap: clamp(28px, 6vw, 40px); }
  .faq__left { position: static; flex: 1 1 auto; width: 100%; }
  .faq__intro { max-width: none; }
  .faq__list { flex: 1 1 auto; width: 100%; }
}

/* --------------------------------------------------------------------------
   12. Contacto (oscuro) + mapa
   -------------------------------------------------------------------------- */
.ct {
  background: var(--plum);
  color: var(--cream);
  padding: clamp(64px, 8vw, 104px) var(--gutter) clamp(44px, 5.2vw, 68px);
}
/* Dos columnas equilibradas: info + datos (izq) | mapa casi cuadrado (der). */
.ct__grid {
  display: flex;
  align-items: flex-start;
  gap: clamp(36px, 4.5vw, 72px);
}
.ct__left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.8vw, 20px);
}
.ct__left .h2 { max-width: 16ch; }
.ct__intro { max-width: 46ch; color: rgba(234, 232, 209, .78); }
.ct__left .btn { margin-top: clamp(4px, 1vw, 10px); }

.ct__rows { width: 100%; margin: clamp(8px, 1.4vw, 16px) 0 0; border-bottom: 1px solid var(--cream-line); }
.ct__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: clamp(16px, 1.8vw, 22px) 0;
  border-top: 1px solid var(--cream-line);
  align-items: start;
}
.ct__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(234, 232, 209, .68);   /* +contraste vs cream-soft (.60) */
  padding-top: 3px;
  line-height: 1.35;
}
.ct__value { margin: 0; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.5; color: var(--cream); text-wrap: pretty; }
.ct__value--muted { color: var(--cream-soft); }
.ct__link {
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--cream-line);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.ct__link:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* Mapa */
/* Columna derecha: tarjeta de ubicación casi cuadrada (no banda). Su tope se alinea
   con el de la columna izquierda; altura visual parecida. */
.ct__map {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.ct__map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.ct__map-loc { display: inline-flex; align-items: center; gap: 9px; font-size: clamp(14px, 1.2vw, 15px); color: var(--cream-soft); }
.ct__map-loc svg { flex: none; }
.ct__map-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: clamp(14.5px, 1.2vw, 15.5px); color: var(--lime); transition: gap .2s ease; }
.ct__map:hover .ct__map-cta { gap: 12px; }
.ct__map-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;                  /* casi cuadrado; = ratio del recorte, sin deformar ni crop extremo */
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--plum-deep);
  border: 1px solid var(--cream-line);
  box-shadow: var(--shadow-dark);
  transition: border-color .25s ease;
}
.ct__map:hover .ct__map-card { border-color: rgba(234, 232, 209, .3); }
.ct__map-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 860px) {
  /* Apilado: primero info + CTA, después el mapa a todo el ancho en 4:3. */
  .ct__grid { flex-direction: column; gap: clamp(32px, 7vw, 44px); }
  .ct__left { flex: 1 1 auto; width: 100%; }
  .ct__map { flex: 1 1 auto; width: 100%; }
  .ct__rows { width: 100%; }
  .ct__row { grid-template-columns: 1fr; gap: 5px; }
  .ct__map-card { aspect-ratio: 4 / 3; }
}

/* --------------------------------------------------------------------------
   13. Footer (oscuro, piso más profundo)
   -------------------------------------------------------------------------- */
.ft { background: var(--plum-deep); color: var(--cream); padding: clamp(38px, 4.3vw, 52px) var(--gutter) clamp(24px, 2.6vw, 30px); }
.ft__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 64px);
}
.ft__brand { display: flex; align-items: flex-start; gap: 15px; max-width: 320px; }
.ft__brand svg { flex: none; }
.ft__brand-text { display: flex; flex-direction: column; gap: 6px; }
.ft__name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--cream); }
.ft__tag { font-size: 14.5px; line-height: 1.5; color: var(--cream-soft); max-width: 28ch; }

.ft__cols { display: flex; gap: clamp(40px, 6vw, 72px); }
.ft__col { display: flex; flex-direction: column; gap: 11px; }
.ft__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0 0 3px;
}
.ft__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s ease;
}
.ft__link:hover { color: var(--lime); }

.ft__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 2.8vw, 32px);
  padding-top: clamp(16px, 1.8vw, 20px);
  padding-right: 78px;              /* reserva para el botón flotante de WhatsApp */
  border-top: 1px solid var(--cream-line);
  font-size: 13px;
  color: var(--cream-soft);
  letter-spacing: .02em;
}
.ft__credit { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

@media (max-width: 720px) {
  .ft__inner { flex-direction: column; gap: 32px; }
  .ft__cols { flex-direction: column; gap: 26px; }
}

/* --------------------------------------------------------------------------
   14. WhatsApp flotante (aparece al salir del hero)
   -------------------------------------------------------------------------- */
.wa {
  position: fixed;
  right: clamp(24px, 3vw, 28px);       /* ≥24px de margen seguro */
  bottom: clamp(24px, 3vw, 28px);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.wa[hidden] { display: none; }

.wa__btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: var(--lime);
  color: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .55);
  transition: background .2s ease, box-shadow .2s ease;
}
.wa__btn:hover { background: #BFE04E; box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .6); }  /* tonal, sin scale ni glow */
.wa__ic { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wa__ic--x { display: none; }
.wa[data-open="true"] .wa__ic--wa { display: none; }
.wa[data-open="true"] .wa__ic--x { display: block; }

.wa__panel {
  background: var(--plum-deep);
  border: 1px solid rgba(234, 232, 209, .12);
  border-radius: var(--r-panel);
  padding: 10px;
  min-width: 250px;
  max-width: calc(100vw - 48px);       /* nunca se sale del viewport en mobile */
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 30px 60px -18px rgba(19, 8, 17, .72);
}
.wa__panel[hidden] { display: none; }
.wa__panel-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0;
  padding: 8px 12px 6px;
}
.wa__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cream);
  transition: background .18s ease;
}
.wa__row:hover { background: rgba(234, 232, 209, .09); }
.wa__row-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa__row-text { flex: 1 1 auto; font-family: var(--font-body); font-weight: 600; font-size: 15.5px; color: var(--cream); }
.wa__row-arrow { color: var(--lime); font-size: 16px; line-height: 1; flex: none; }
@media (max-width: 560px) {
  .btn { width: 100%; }         /* CTA principal casi full-width en mobile */
  .hero__left .btn { width: 100%; }
}
