@charset "UTF-8";
/* ==========================================================================
   Lucía Marín · Psicología — Sistema de diseño
   Paleta original conservada. Índigo #586592 extraído del isotipo de marca.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Marca */
  --indigo:        #586592;   /* azul del isotipo · texto AA sobre crema (4.82) */
  --indigo-surface:#4A5580;   /* fondo de secciones oscuras · texto claro AA */
  --indigo-dark:   #3F4A6E;
  --indigo-deep:   #2B3350;
  --lavender:      #8186AB;   /* titulares originales */
  --lavender-soft: #A8ACC6;
  --lavender-tint: #E7E5EE;
  --rose:          #DE718B;   /* botones originales */
  --rose-deep:     #AE425E;   /* estado hover / texto pequeño accesible (4.76) */
  --rose-soft:     #EBAEBA;   /* rosa claro original */
  --rose-light:    #F2C6CE;   /* rosa claro sobre fondos oscuros (4.74) */
  --rose-tint:     #F7E6EA;

  /* Texto sobre superficies oscuras */
  --on-dark:       #E8EAF1;
  --on-dark-soft:  #CBCFE0;

  /* Neutros */
  --cream:         #EFECE5;   /* fondo original */
  --cream-light:   #F7F5F1;
  --cream-dark:    #E4E0D6;
  --white:         #FFFFFF;
  --ink:           #2B2F3D;   /* texto principal (11.3:1) */
  --ink-soft:      #545A70;   /* texto secundario (5.4:1) */
  --line:          #DFDACF;

  /* Semánticos */
  --bg:            var(--cream);
  --surface:       var(--white);
  --text:          var(--ink);
  --text-muted:    var(--ink-soft);
  --heading:       var(--indigo);
  --accent:        var(--rose);

  /* Tipografía */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.18rem, 1.11rem + 0.34vw, 1.38rem);
  --step-2:  clamp(1.4rem, 1.28rem + 0.6vw, 1.76rem);
  --step-3:  clamp(1.68rem, 1.47rem + 1.02vw, 2.25rem);
  --step-4:  clamp(2rem, 1.66rem + 1.68vw, 2.9rem);
  --step-5:  clamp(2.4rem, 1.83rem + 2.8vw, 3.9rem);
  --step-6:  clamp(2.8rem, 1.85rem + 4.7vw, 5.2rem);

  /* Espaciado */
  --sp-2xs: 0.375rem;
  --sp-xs:  0.625rem;
  --sp-s:   1rem;
  --sp-m:   1.5rem;
  --sp-l:   2.25rem;
  --sp-xl:  3.5rem;
  --sp-2xl: 5rem;
  --sp-3xl: clamp(4.5rem, 3rem + 7vw, 8.5rem);

  /* Formas */
  --radius-s:  8px;
  --radius-m:  14px;
  --radius-l:  24px;
  --radius-xl: 36px;
  --arch: 999px 999px 24px 24px / 380px 380px 24px 24px;

  --shadow-s:  0 1px 2px rgba(43, 47, 61, .05), 0 2px 8px rgba(43, 47, 61, .04);
  --shadow-m:  0 2px 6px rgba(43, 47, 61, .05), 0 12px 32px rgba(43, 47, 61, .07);
  --shadow-l:  0 4px 12px rgba(43, 47, 61, .06), 0 28px 60px rgba(43, 47, 61, .11);

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --header-h: 68px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --bar-h: 0px;            /* alto de la barra de acción móvil */

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 700px)  { :root { --header-h: 74px; } }
@media (min-width: 1060px) { :root { --header-h: 78px; } }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;   /* no rompe position:sticky; hidden queda de reserva */
  -webkit-tap-highlight-color: rgba(88, 101, 146, .12);
  padding-bottom: var(--bar-h);
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--indigo); text-decoration-thickness: 1px; text-underline-offset: .22em; }
ul, ol { padding: 0; list-style: none; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2.5px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--rose-soft); color: var(--ink); }

/* ---------- 3. Tipografía ------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -.018em;
  text-wrap: balance;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }
p + p { margin-top: 1.05em; }
strong, b { font-weight: 600; color: var(--indigo-dark); }
em { font-style: italic; }

.display { font-size: var(--step-6); line-height: 1.03; letter-spacing: -.028em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--sp-s);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--center::before { display: none; }

.lead {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--ink-soft);
  font-weight: 400;
}

.muted { color: var(--ink-soft); }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 48ch; }
.mx-auto { margin-inline: auto; }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 700px) { .wrap { width: min(100% - 4rem, var(--wrap)); } }

.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--sp-3xl); position: relative; }
.section--tight { padding-block: var(--sp-2xl); }
.section--cream-light { background: var(--cream-light); }
.section--white { background: var(--white); }
.section--indigo {
  background: var(--indigo-surface);
  color: var(--on-dark);
}
.section--indigo h2, .section--indigo h3, .section--indigo h4 { color: var(--white); }
.section--indigo .eyebrow { color: var(--rose-light); }
.section--indigo .lead, .section--indigo .muted { color: var(--on-dark); }
.section--indigo strong { color: var(--white); }
.section--indigo a { color: var(--rose-light); }
.section--indigo .card, .section--indigo .form-card { color: var(--ink); }
.section--indigo .card h3, .section--indigo .form-card h3 { color: var(--indigo); }

.section-head { margin-bottom: var(--sp-xl); }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head p { margin-top: var(--sp-s); }

.grid { display: grid; gap: var(--sp-m); }
.stack > * + * { margin-top: var(--sp-s); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--flip > :first-child { order: 2; }
}

/* ---------- 5. Botones --------------------------------------------------- */
.btn {
  --btn-bg: var(--rose);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .92em 1.85em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: var(--shadow-s);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .22s var(--ease);
  will-change: transform;
}
.btn:hover { --btn-bg: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }

.btn--indigo { --btn-bg: var(--indigo); }
.btn--indigo:hover { --btn-bg: var(--indigo-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--indigo);
  box-shadow: inset 0 0 0 1.5px var(--lavender-soft);
}
.btn--ghost:hover {
  --btn-bg: var(--indigo);
  --btn-fg: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--indigo);
}

.btn--on-dark { --btn-bg: var(--white); --btn-fg: var(--indigo); }
.btn--on-dark:hover { --btn-bg: var(--cream); --btn-fg: var(--indigo-deep); }

.btn--sm { padding: .68em 1.35em; font-size: var(--step--1); }
.btn--lg { padding: 1.05em 2.3em; font-size: var(--step-1); }

.btn .icon { width: 1.1em; height: 1.1em; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--rose-deep);
  text-decoration: none;
}
.link-arrow::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow:hover { text-decoration: underline; }

/* ---------- 6. Cabecera -------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  padding: .8em 1.4em;
  background: var(--indigo);
  color: var(--white);
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 236, 229, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(43, 47, 61, .05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-m);
  min-height: var(--header-h);
}

.header__logo { flex: none; display: block; }
.header__logo img { width: 190px; }
@media (max-width: 480px) { .header__logo img { width: 152px; } }

/* Navegación */
.nav { display: none; }
@media (min-width: 1060px) { .nav { display: block; } }

.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: .65em .82em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  border-radius: var(--radius-s);
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover, .nav__item:focus-within > .nav__link { color: var(--rose-deep); background: rgba(255, 255, 255, .6); }
.nav__link[aria-current="page"] { color: var(--rose-deep); }
.nav__link .caret { width: .55em; transition: transform .25s var(--ease); }
.nav__item:hover .caret, .nav__item:focus-within .caret { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  translate: -50% 0;
  min-width: 268px;
  padding: .55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover > .nav__panel,
.nav__item:focus-within > .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__panel a {
  display: block;
  padding: .62em .85em;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--radius-s);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__panel a:hover { background: var(--cream); color: var(--indigo); }

.header__actions { display: flex; align-items: center; gap: .6rem; }
.header__phone { display: none; }
@media (min-width: 1180px) { .header__phone { display: inline-flex; } }

/* Botón hamburguesa */
.burger {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-s);
  flex: none;
}
@media (min-width: 1060px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 19px; height: 1.8px;
  background: var(--indigo);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* Menú móvil */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--cream);
  padding: var(--sp-m) 0 var(--sp-2xl);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1060px) { .mobile-nav { display: none; } }

.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05em .25em;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose);
  transition: transform .28s var(--ease);
}
.mobile-nav details[open] summary::after { transform: rotate(45deg); }
.mobile-nav__sub { padding: 0 0 1rem .25em; }
.mobile-nav__sub a {
  display: block;
  padding: .55em 0;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.mobile-nav__sub a:hover { color: var(--rose-deep); }
.mobile-nav > .wrap > a.mobile-nav__top {
  display: block;
  padding: 1.05em .25em;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__cta { margin-top: var(--sp-l); display: grid; gap: .75rem; }

body.nav-open { overflow: hidden; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(3.5rem, 2rem + 6vw, 7rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.06fr .94fr; }
}

.hero__title { margin-bottom: var(--sp-m); }
.hero__title .accent {
  color: var(--rose-deep);
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}
.hero__text { max-width: 34ch; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-s);
  margin-top: var(--sp-l);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem 1.5rem;
  margin-top: var(--sp-l);
  padding-top: var(--sp-m);
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .5em; }
.hero__meta svg { width: 15px; height: 15px; color: var(--rose); flex: none; }

/* Retrato con arco */
.portrait {
  position: relative;
  isolation: isolate;
  max-width: 460px;
  margin-inline: auto;
}
.portrait__frame {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  background: linear-gradient(170deg, #C9A8CE 0%, #B394C4 55%, #9C86BC 100%);
  box-shadow: var(--shadow-l);
}
.portrait__frame img { width: 100%; }
.portrait::before {
  content: "";
  position: absolute;
  inset: -14px -14px 34px -14px;
  border: 1.5px solid var(--rose-soft);
  border-radius: var(--arch);
  z-index: -1;
  opacity: .75;
}

.portrait__badge {
  position: absolute;
  right: -12px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  max-width: 236px;
}
.portrait__badge img { width: 34px; flex: none; }
.portrait__badge p {
  font-size: .72rem;
  line-height: 1.35;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.portrait__badge b { display: block; color: var(--indigo); font-weight: 700; font-size: .78rem; }
@media (max-width: 520px) { .portrait__badge { right: 0; scale: .9; transform-origin: right bottom; } }

/* Manchas decorativas */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .38;
  pointer-events: none;
  z-index: -1;
}
.blob--rose  { width: 460px; height: 460px; background: var(--rose-soft); }
.blob--lav   { width: 520px; height: 520px; background: var(--lavender-soft); }

/* ---------- 8. Barra de confianza --------------------------------------- */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--cream-light);
  padding-block: var(--sp-m);
}
.trustbar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-m) var(--sp-l);
  align-items: center;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--ink-soft);
}
.trustbar__item b { display: block; color: var(--indigo); font-weight: 700; font-size: 1.02rem; font-family: var(--font-display); }
.trustbar__icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-deep);
}
.trustbar__icon svg { width: 19px; height: 19px; }

/* ---------- 9. Tarjetas -------------------------------------------------- */
.cards {
  display: grid;
  gap: var(--sp-m);
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-l) var(--sp-m) var(--sp-m);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover, .card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
  border-color: transparent;
}
.card:hover::after, .card:focus-visible::after { transform: scaleX(1); }

.card__illu {
  width: 92px; height: 92px;
  object-fit: contain;
  margin-bottom: var(--sp-s);
}
.card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.card p { font-size: .94rem; color: var(--ink-soft); line-height: 1.62; }
.card .link-arrow { margin-top: auto; padding-top: var(--sp-m); }

/* Tarjeta con número */
.numbered { counter-reset: n; }
.numbered .card::before {
  counter-increment: n;
  content: "0" counter(n);
  position: absolute;
  top: var(--sp-m); right: var(--sp-m);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--lavender);
  opacity: .28;
}

/* Bloque de ayuda (3 columnas) */
.help-item {
  padding: var(--sp-l) 0;
  border-top: 1px solid var(--line);
}
.help-item h3 {
  font-size: var(--step-2);
  margin-bottom: var(--sp-s);
}
.help-item p { color: var(--ink-soft); }
@media (min-width: 860px) {
  .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 var(--sp-l); }
  .help-item { border-top: 1px solid var(--line); }
}

/* ---------- 10. Cita ----------------------------------------------------- */
.quote {
  position: relative;
  text-align: center;
  padding-inline: var(--sp-m);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--indigo);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  text-wrap: balance;
}
.section--indigo .quote blockquote { color: var(--white); }
.quote cite {
  display: block;
  margin-top: var(--sp-m);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.section--indigo .quote cite { color: var(--rose-light); }
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: .6;
  color: var(--rose-soft);
  opacity: .55;
  display: block;
  margin-bottom: .35rem;
}

/* Cita a pantalla completa con fotografía de fondo */
.quote-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  background-image: url("../img/quote-montana.jpg");
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(43, 51, 80, .26) 0%, rgba(43, 51, 80, .58) 100%),
    linear-gradient(180deg, rgba(74, 85, 128, .44) 0%, rgba(43, 51, 80, .56) 100%);
}
.quote-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  z-index: -1;
  background: linear-gradient(to top, var(--cream), transparent);
  opacity: .35;
}
.quote-hero .quote blockquote {
  color: var(--white);
  text-shadow: 0 1px 22px rgba(30, 34, 52, .55), 0 1px 3px rgba(30, 34, 52, .35);
}
.quote-hero .quote cite { color: var(--rose-light); }
.quote-hero .quote__mark { color: var(--rose-light); opacity: .8; }

/* Botánicas decorativas sobre fondos oscuros */
.botanicals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.botanicals img {
  position: absolute;
  filter: saturate(.55) brightness(1.35);
}
.botanicals .b1 { top: -46px; left: -58px; width: clamp(190px, 22vw, 320px); opacity: .16; rotate: -18deg; }
.botanicals .b2 { bottom: -70px; right: -46px; width: clamp(210px, 25vw, 360px); opacity: .13; rotate: 12deg; }
.botanicals .b3 { top: 42%; right: 12%; width: clamp(120px, 13vw, 190px); opacity: .10; rotate: 150deg; }
.botanicals .b4 { bottom: 8%; left: 14%; width: clamp(100px, 11vw, 155px); opacity: .09; rotate: -8deg; }
@media (max-width: 860px) {
  .botanicals .b3, .botanicals .b4 { display: none; }
}
.section--indigo > .wrap, .section--indigo > .wrap-narrow { position: relative; z-index: 1; }

/* Separador botánico entre secciones */
.divider {
  display: block;
  padding-block: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  text-align: center;
}
.divider img {
  width: min(100%, 760px);
  margin-inline: auto;
  opacity: .85;
}
.divider--fade img {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

/* ---------- 11. Acordeón ------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }

.accordion__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-m);
  width: 100%;
  padding: 1.35em 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  line-height: 1.3;
  color: var(--indigo);
  transition: color .2s var(--ease);
}
.accordion__btn:hover { color: var(--rose-deep); }

.accordion__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  margin-top: .12em;
  border-radius: 50%;
  background: var(--rose-tint);
  transition: background-color .25s var(--ease), transform .35s var(--ease);
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% 50%;
  width: 12px; height: 1.8px;
  translate: -50% -50%;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.accordion__icon::after { transform: rotate(90deg); }
.accordion__btn[aria-expanded="true"] .accordion__icon { background: var(--rose); }
.accordion__btn[aria-expanded="true"] .accordion__icon::before,
.accordion__btn[aria-expanded="true"] .accordion__icon::after { background: var(--white); }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: rotate(0deg); opacity: 0; }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.accordion__panel[data-open] { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel .inner {
  padding-bottom: 1.65em;
  max-width: 68ch;
  color: var(--ink-soft);
}

/* ---------- 12. Técnicas ------------------------------------------------- */
.technique {
  display: grid;
  gap: var(--sp-m);
  padding: var(--sp-l) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
@media (min-width: 860px) { .technique { grid-template-columns: 270px 1fr; gap: var(--sp-xl); } }
.technique:last-child { border-bottom: 0; }
.technique__label { position: relative; }
.technique__label h3 { font-size: var(--step-2); }
.technique__tag {
  display: inline-block;
  margin-top: .7rem;
  padding: .3em .85em;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  background: var(--rose-soft);
  border-radius: 999px;
}

/* ---------- 13. Sobre mí ------------------------------------------------- */
.creds { display: grid; gap: .1rem; }
.creds li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: .9rem;
  align-items: start;
  padding: .78em 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.creds li:last-child { border-bottom: 0; }
.creds svg { width: 19px; height: 19px; margin-top: .22em; color: var(--rose); flex: none; }

.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-l);
  margin-top: var(--sp-l);
  padding-top: var(--sp-l);
  border-top: 1px solid var(--line);
}
.logos-row img { height: 46px; width: auto; opacity: .9; }
.logos-row img.tall { height: 62px; }

/* ---------- 14. Testimonios ---------------------------------------------- */
.testimonials {
  display: grid;
  gap: var(--sp-m);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (min-width: 1000px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  display: flex;
  flex-direction: column;
  padding: var(--sp-l) var(--sp-m);
  background: var(--white);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}
.testimonial__stars { display: flex; gap: .18rem; margin-bottom: var(--sp-s); color: var(--rose); }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial p {
  font-size: .95rem;
  line-height: 1.68;
  color: var(--ink);
  font-style: italic;
}
.testimonial footer {
  margin-top: auto;
  padding-top: var(--sp-m);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--lavender);
}

/* ---------- 15. Formulario ----------------------------------------------- */
.form-card {
  padding: clamp(1.75rem, 1rem + 3vw, 2.9rem);
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  border: 1px solid var(--line);
}
.field { margin-bottom: var(--sp-s); }
.field label {
  display: block;
  margin-bottom: .45em;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--indigo);
}
.field .req { color: var(--rose-deep); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .82em 1em;
  background: var(--cream-light);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9A9689; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--lavender);
  box-shadow: 0 0 0 3.5px rgba(129, 134, 171, .16);
}
.field textarea { min-height: 138px; resize: vertical; }
.field-row { display: grid; gap: var(--sp-s); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  margin: var(--sp-m) 0;
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.consent input { width: 19px; height: 19px; margin-top: .18em; accent-color: var(--rose); }

.contact-list { display: grid; gap: var(--sp-m); }
.contact-list li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: start; }
.contact-list__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: var(--shadow-s);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list dt {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: .18em;
}
.contact-list dd { font-size: 1.03rem; color: var(--indigo); font-weight: 600; }
.contact-list dd a { color: inherit; text-decoration: none; }
.contact-list dd a:hover { color: var(--rose-deep); text-decoration: underline; }
.contact-list dd small { display: block; font-weight: 400; font-size: .84rem; color: var(--ink-soft); margin-top: .18em; }

.map {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  line-height: 0;
}
.map iframe { width: 100%; height: 330px; border: 0; filter: saturate(.82); }

/* ---------- 16. CTA final ------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--indigo-surface) 0%, var(--indigo-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 1.5rem + 5vw, 4.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .eyebrow { color: var(--rose-light); }
.cta-band p { color: var(--on-dark); margin-top: var(--sp-s); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-s); justify-content: center; margin-top: var(--sp-l); }
.cta-band .ilu {
  position: absolute;
  width: 260px;
  opacity: .14;
  pointer-events: none;
}
.cta-band .ilu--l { left: -60px; bottom: -50px; rotate: -12deg; }
.cta-band .ilu--r { right: -60px; top: -60px; rotate: 160deg; }

/* ---------- 17. Blog ----------------------------------------------------- */
.posts { display: grid; gap: var(--sp-l); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--lavender-tint); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: scale .5s var(--ease); }
.post-card:hover .post-card__media img { scale: 1.04; }
.post-card__body { padding: var(--sp-m); display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: .55rem;
}
.post-card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.post-card p { font-size: .92rem; color: var(--ink-soft); }
.post-card .link-arrow { margin-top: auto; padding-top: var(--sp-m); }

/* Artículo */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-3); margin-top: 2.2em; margin-bottom: .55em; }
.prose h3 { font-size: var(--step-2); margin-top: 1.9em; margin-bottom: .5em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.15em; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.5em; margin-bottom: .5em; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: .25em; top: .72em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
}
.prose ol { list-style: decimal; padding-left: 1.4em; }
.prose ol li { margin-bottom: .5em; padding-left: .3em; }
.prose blockquote {
  margin: 1.8em 0;
  padding: 1.2em 1.6em;
  border-left: 3px solid var(--rose);
  background: var(--cream-light);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--indigo);
}
.prose a { color: var(--rose-deep); font-weight: 600; }

/* Páginas legales */
.legal { max-width: 78ch; }
.legal h2 { font-size: var(--step-2); margin-top: 2.1em; margin-bottom: .6em; }
.legal h3 { font-size: var(--step-1); margin-top: 1.7em; margin-bottom: .5em; }
.legal p, .legal ul { margin-bottom: 1.1em; font-size: .97rem; color: var(--ink-soft); }
.legal ul li { position: relative; padding-left: 1.4em; margin-bottom: .55em; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: .2em; top: .68em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-soft);
}

/* Migas */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: var(--sp-m);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose-deep); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: .5em; color: var(--lavender-soft); }
.breadcrumb ol, .breadcrumb { list-style: none; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb [aria-current] { color: var(--indigo); font-weight: 600; }

/* Cabecera de página interna */
.page-hero {
  position: relative;
  padding-block: clamp(2.5rem, 2rem + 4vw, 4.5rem) clamp(2.5rem, 2rem + 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .ilu {
  position: absolute;
  right: -30px; top: 50%;
  translate: 0 -50%;
  width: clamp(180px, 22vw, 300px);
  opacity: .5;
  pointer-events: none;
}
@media (max-width: 820px) { .page-hero .ilu { opacity: .18; right: -70px; } }

/* ---------- 18. Pie ------------------------------------------------------ */
.footer {
  background: var(--indigo-surface);
  color: var(--on-dark);
  padding-block: var(--sp-2xl) var(--sp-m);
  font-size: .9rem;
}
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.footer__grid {
  display: grid;
  gap: var(--sp-xl) var(--sp-l);
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.footer__brand img { width: 200px; margin-bottom: var(--sp-s); }
.footer h4 {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: var(--sp-s);
}
.footer__links li { margin-bottom: .55em; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-m);
  padding-block: var(--sp-l);
}
.footer__badges img { height: 56px; width: auto; }
.footer__badges img.wide { height: 40px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-s) var(--sp-m);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-m);
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .78rem;
  color: var(--on-dark-soft);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .5rem 1.35rem; }
.footer__kit { font-size: .72rem; line-height: 1.5; color: var(--on-dark-soft); max-width: 640px; margin-top: var(--sp-s); }

/* ---------- 19. Utilidades y accesibilidad ------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.to-top {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  box-shadow: var(--shadow-m);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--indigo-dark); }
.to-top svg { width: 18px; height: 18px; }

/* Botón flotante de WhatsApp/teléfono en móvil */
.fab-call {
  position: fixed;
  left: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .8em 1.3em;
  background: var(--rose);
  color: var(--white);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-l);
}
@media (min-width: 900px) { .fab-call { display: none; } }
.fab-call svg { width: 16px; height: 16px; }

/* ---------- 20. Cookies -------------------------------------------------- */
.cookie {
  position: fixed;
  z-index: 300;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(1.25rem, 1rem + 1.4vw, 1.85rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.cookie.is-open { opacity: 1; visibility: visible; transform: none; }
.cookie h2 {
  font-size: var(--step-1);
  margin-bottom: .5rem;
}
.cookie p { font-size: .88rem; line-height: 1.6; color: var(--ink-soft); }
.cookie a { color: var(--rose-deep); font-weight: 600; }
.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}
.cookie__actions .btn { flex: 1 1 auto; min-width: 150px; }
.cookie__detail {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.cookie__detail summary {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo);
  cursor: pointer;
  list-style: none;
}
.cookie__detail summary::-webkit-details-marker { display: none; }
.cookie__detail summary::after { content: " ▾"; color: var(--rose); }
.cookie__detail[open] summary::after { content: " ▴"; }
.cookie__detail table {
  width: 100%;
  margin-top: .9rem;
  border-collapse: collapse;
  font-size: .78rem;
}
.cookie__detail th, .cookie__detail td {
  text-align: left;
  padding: .5em .4em;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cookie__detail th { color: var(--indigo); font-weight: 600; }
.cookie__detail td { color: var(--ink-soft); }

/* Contenido de terceros bloqueado hasta el consentimiento */
.consent-block {
  display: grid;
  place-content: center;
  gap: .9rem;
  justify-items: center;
  min-height: 330px;
  padding: var(--sp-m);
  text-align: center;
  background: var(--lavender-tint);
  color: var(--ink-soft);
}
.consent-block p { font-size: .86rem; max-width: 40ch; }

/* ---------- 21. Barra de acción móvil ------------------------------------ */
.actionbar {
  position: fixed;
  z-index: 95;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: .55rem;
  padding: .6rem calc(.75rem + var(--safe-l)) calc(.6rem + var(--safe-b)) calc(.75rem + var(--safe-r));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(43, 47, 61, .07);
  transform: translateY(110%);
  transition: transform .38s var(--ease);
}
.actionbar.is-visible { transform: none; }
.actionbar .btn {
  flex: 1;
  padding: .82em 1rem;
  font-size: .92rem;
  min-height: 48px;
}

@media (max-width: 899px) {
  .actionbar { display: flex; }
  body.has-actionbar { --bar-h: 68px; }
}

/* ---------- 22. Ajustes de tableta y móvil ------------------------------- */
@media (max-width: 1059px) {
  .header__inner { gap: .75rem; }
}

@media (max-width: 899px) {
  :root { --sp-3xl: clamp(3.25rem, 2.2rem + 6vw, 5rem); }

  /* Áreas táctiles cómodas en todos los enlaces de listas */
  .footer__links a,
  .footer__legal a,
  .breadcrumb a { display: inline-block; padding-block: .3em; }

  .mobile-nav summary,
  .mobile-nav__top { min-height: 52px; align-items: center; }
  .mobile-nav__sub a { min-height: 46px; display: flex; align-items: center; }

  /* Hero */
  .hero { padding-block: 2.25rem 3rem; }
  .hero__grid { gap: 2.25rem; }
  .hero__cta { gap: .65rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__meta { gap: .5rem 1rem; margin-top: 1.5rem; padding-top: 1.25rem; }
  .portrait { max-width: 340px; }
  .portrait__badge { right: -4px; bottom: 16px; max-width: 210px; padding: .65rem .85rem; }
  .portrait__badge img { width: 28px; }
  .portrait__badge p { font-size: .68rem; }
  .portrait__badge b { font-size: .74rem; }

  /* Secciones */
  .section-head { margin-bottom: 2rem; }
  .cards { gap: .9rem; }
  .card { padding: 1.5rem 1.25rem 1.25rem; }
  .card__illu { width: 72px; height: 72px; }
  .card .link-arrow { padding-top: 1.1rem; }

  .help-item { padding: 1.5rem 0; }

  .quote-hero { padding-block: 3.5rem; background-position: 50% 45%; }
  .quote blockquote { font-size: var(--step-2); }
  .quote__mark { font-size: 3.25rem; }

  .accordion__btn { font-size: 1.02rem; padding: 1.15em 0; gap: 1rem; }
  .accordion__icon { width: 28px; height: 28px; }

  .creds li { grid-template-columns: 22px 1fr; gap: .7rem; font-size: .92rem; }
  .logos-row { gap: 1.5rem; }
  .logos-row img { height: 38px; }
  .logos-row img.tall { height: 52px; }

  .cta-band { border-radius: var(--radius-l); }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .cta-band .ilu { width: 170px; opacity: .1; }

  .form-card { padding: 1.4rem 1.15rem; }
  .contact-list li { grid-template-columns: 40px 1fr; gap: .8rem; }
  .contact-list__icon { width: 40px; height: 40px; }
  .map iframe, .consent-block { height: 260px; min-height: 260px; }

  .footer { padding-block: 2.75rem 1rem; }
  .footer__grid { gap: 2rem 1.5rem; padding-bottom: 2rem; }
  .footer__badges { gap: 1.25rem; padding-block: 1.5rem; }
  .footer__badges img { height: 44px; }
  .footer__badges img.wide { height: 32px; }
  .footer__bottom { padding-bottom: .5rem; }

  .page-hero { padding-block: 1.75rem 2rem; }
  .breadcrumb { margin-bottom: .75rem; }

  /* El botón «volver arriba» estorba junto a la barra de acción */
  .to-top { display: none; }
  .fab-call { display: none; }
}

/* Testimonios deslizables en móvil */
@media (max-width: 767px) {
  .testimonials {
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    padding-bottom: 1rem;
    margin-inline: calc(50% - 50vw);
    padding-inline: max(1.25rem, calc(50vw - 50%));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials::-webkit-scrollbar { display: none; }
  .testimonial { scroll-snap-align: start; }
  .swipe-hint { display: block; }
}
.swipe-hint {
  display: none;
  margin-top: .5rem;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lavender);
}

/* Móvil estrecho */
@media (max-width: 560px) {
  .wrap, .wrap-narrow { width: min(100% - 2rem, var(--wrap)); }
  .trustbar__list { gap: .9rem; }
  .trustbar__item { gap: .7rem; }
  .trustbar__icon { width: 34px; height: 34px; }
  .trustbar__icon svg { width: 16px; height: 16px; }
  .divider { padding-block: 1rem; }
  .divider img { width: 88%; }
  .cookie__actions .btn { flex: 1 1 100%; min-width: 0; }
  .footer__legal { gap: .1rem 1.1rem; }
  .prose blockquote { padding: 1em 1.1em; }
  .split { gap: 1.75rem; }
}

/* Cookies en móvil */
@media (max-width: 899px) {
  .cookie {
    left: .6rem; right: .6rem;
    bottom: calc(.6rem + var(--safe-b));
    padding: 1.15rem 1.1rem;
    max-height: calc(100dvh - var(--header-h) - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .cookie p { font-size: .84rem; }
  .cookie__detail { overflow-x: auto; }
  .cookie__detail table { min-width: 420px; }
  .cookie.is-open ~ .actionbar { transform: translateY(110%); }
}

/* Sin hover: nada de efectos que se queden «pegados» al tocar */
@media (hover: none) {
  .card:hover, .post-card:hover, .btn:hover { transform: none; }
  .card:hover { box-shadow: var(--shadow-s); }
  .post-card:hover .post-card__media img { scale: 1; }
  .link-arrow:hover::after { transform: none; }
}

/* Animación de entrada */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .to-top, .fab-call, .mobile-nav, .map { display: none !important; }
  body { background: #fff; color: #000; }
}
