/* =============================================================
   Raíz · Centro de Psicología — styles.css
   Rediseño v3: Minimalismo MODERNO (wellness app) — sans Manrope,
   off-white cálido, acento salvia calmado, tarjetas redondeadas
   flotantes con sombras ultra-suaves, botones píldora, mucho aire.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f5f5f2;   /* off-white cálido suave */
  --surface:   #ffffff;
  --surface-2: #eef0ec;   /* relleno tenue */
  --ink:       #181a19;   /* casi negro suave */
  --ink-soft:  #565b57;
  --ink-mute:  #939893;
  --line:      rgba(24, 26, 25, 0.08);

  --accent:      #5f8d75;   /* salvia calmada (marca) */
  --accent-deep: #4a7560;
  --accent-dark: #2f4f40;   /* salvia muy oscura (footer/contraste) */
  --accent-pale: #e9f1ec;   /* fondo suave */
  --accent-soft: #d4e3d9;

  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1160px;
  --radius:    22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --pad-section: clamp(4.5rem, 11vw, 8rem);

  --shadow:       0 1px 2px rgba(24,26,25,.04), 0 14px 34px -18px rgba(24,26,25,.16);
  --shadow-hover: 0 2px 6px rgba(24,26,25,.05), 0 28px 56px -22px rgba(24,26,25,.24);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: clip; overscroll-behavior-y: none;
  letter-spacing: -0.005em;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.08; font-weight: 700; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--ink); color: #fff; z-index: 9999; border-radius: 100px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* Kicker */
.kicker { font-size: .8rem; font-weight: 600; letter-spacing: .01em; color: var(--accent-deep); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .55rem; }
.kicker-num { font-family: var(--mono); font-size: .72rem; color: var(--accent); background: var(--accent-pale); padding: .2rem .5rem; border-radius: 100px; font-weight: 500; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; position: relative; }
.eyebrow-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--accent); animation: pulse 2.6s var(--ease-out) infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(2); opacity: 0; } }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* =============================================================
   3. Typography
   ============================================================= */
.section-title { font-size: clamp(1.95rem, 4.6vw, 3.1rem); font-weight: 700; color: var(--ink); letter-spacing: -0.035em; }
.section-title em { font-style: normal; color: var(--accent); }
.section-head { max-width: 40rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; max-width: 38rem; }

/* =============================================================
   4. Buttons (píldora moderna)
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 100px; font-weight: 600; font-size: .96rem;
  transition: background-color .25s var(--ease-out), color .25s, border-color .25s, transform .15s var(--ease-out), box-shadow .25s;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px -6px rgba(95,141,117,.6); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(95,141,117,.7); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost:active { transform: scale(.98); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* =============================================================
   5. NAV
   ============================================================= */
.nav { position: fixed; top: 0; inset-inline: 0; z-index: 100; padding: 1rem 0; transition: background-color .35s, backdrop-filter .35s, box-shadow .35s, padding .35s; }
.nav.is-scrolled { background: rgba(245,245,242,.78); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); box-shadow: 0 1px 0 var(--line); padding: .6rem 0; }
.nav-inner { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand-mark { width: 32px; height: 32px; color: var(--accent); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { font-weight: 800; font-size: 1.32rem; line-height: .9; letter-spacing: -0.03em; }
.brand-sub { display: block; font-family: var(--mono); font-weight: 400; font-size: .54rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }
.nav-links { display: none; gap: 1.9rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .94rem; font-weight: 500; color: var(--ink-soft); padding: .2rem 0; transition: color .25s; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: none; font-weight: 600; font-size: .92rem; color: var(--ink); }
@media (min-width: 1180px) { .nav-phone { display: inline; } }
.nav-cta { display: none; }
@media (min-width: 540px) { .nav-cta { display: inline-flex; } }
.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: 0; z-index: 95; background: var(--bg); display: grid; place-items: center; clip-path: inset(0 0 100% 0); transition: clip-path .55s var(--ease-soft); }
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 1.2rem; text-align: center; }
.nav-mobile a { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; }
.nav-mobile .btn { margin-top: 1rem; font-size: 1rem; }

/* =============================================================
   6. HERO (alto, sans grande, invita a scrollear)
   ============================================================= */
.hero { position: relative; isolation: isolate; min-height: 100svh; padding: 7rem 0 2.5rem; display: flex; flex-direction: column; overflow: clip; }
.hero::before { content: ""; position: absolute; inset: -10% -20% auto -20%; height: 80%; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 60% at 75% 25%, rgba(95,141,117,.16), transparent 70%); filter: blur(20px); }
.hero-inner { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; display: flex; flex-direction: column; justify-content: center; gap: 2.2rem; flex: 1; }
.hero-eyebrow { font-size: .9rem; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: .6rem; background: var(--surface); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: 100px; align-self: flex-start; box-shadow: var(--shadow); }
.hero-main { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 860px) { .hero-main { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; } }
.hero-title { font-size: clamp(2.7rem, 8.5vw, 5.6rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; color: var(--ink); }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-art { position: relative; }
.hero-art svg { width: 100%; max-width: 280px; height: auto; margin-inline: auto; animation: artFloat 7s var(--ease-soft) infinite; }
@media (min-width: 860px) { .hero-art svg { max-width: 440px; } }
@keyframes artFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-art-ring { transform-origin: 232px 238px; animation: artRing 6s var(--ease-soft) infinite; }
@keyframes artRing { 0%, 100% { transform: scale(.94); opacity: .8; } 50% { transform: scale(1.02); opacity: 1; } }
.hero-art-dot { animation: artFloat 5s var(--ease-soft) infinite; }
.hero-art-dot:nth-of-type(2) { animation-duration: 6.5s; animation-delay: .4s; }
.hero-art-leaf { animation: artFloat 8s var(--ease-soft) infinite .2s; }
.hero-foot { display: grid; gap: 1.8rem; align-items: end; padding-top: 1.6rem; }
@media (min-width: 820px) { .hero-foot { grid-template-columns: 1fr auto; gap: 3rem; } }
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 32rem; line-height: 1.6; }
.hero-side { display: flex; flex-direction: column; gap: 1.1rem; }
@media (min-width: 820px) { .hero-side { align-items: flex-end; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-rating { font-size: .92rem; color: var(--ink-mute); }
.hero-rating strong { color: var(--ink); font-weight: 700; }
.stars { color: var(--accent); letter-spacing: .04em; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-scroll-label { font-family: var(--mono); font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-mute); }
.hero-scroll-line { width: 1.5px; height: 40px; background: var(--line); border-radius: 2px; position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -40px; left: 0; width: 1.5px; height: 40px; background: var(--accent); animation: scrollLine 2s var(--ease-out) infinite; }
@keyframes scrollLine { 0% { transform: translateY(0); } 100% { transform: translateY(80px); } }

/* =============================================================
   7. TRUST MARQUEE
   ============================================================= */
.trust { padding: 2.5rem 0; }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: inline-flex; gap: 1.4rem; white-space: nowrap; will-change: transform; align-items: center; font-size: 1.05rem; font-weight: 500; color: var(--ink-soft); padding-right: 1.4rem; }
.marquee-track.is-running { animation: marqueeX var(--mq-dur, 48s) linear infinite; }
@keyframes marqueeX { to { transform: translateX(-50%); } }
.marquee-track .sep { color: var(--accent); }
.trust-note { text-align: center; color: var(--ink-mute); font-size: .9rem; margin-top: 1.6rem; }
.trust-note strong { color: var(--ink-soft); font-weight: 600; }

/* =============================================================
   8. STATS (panel blanco flotante)
   ============================================================= */
.stats { padding: clamp(2rem, 4vw, 3rem) 0 var(--pad-section); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface); padding: clamp(1.6rem, 4vw, 2.4rem); display: flex; flex-direction: column; gap: .35rem; }
.stat-num { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -0.04em; display: inline-flex; align-items: baseline; }
.stat-num i { font-style: normal; color: var(--accent); font-size: .55em; margin-left: 2px; }
.stat-label { font-size: .88rem; color: var(--ink-mute); font-weight: 500; }

/* =============================================================
   9. SERVICES (tarjetas blancas redondeadas, sombra suave)
   ============================================================= */
.services { padding: var(--pad-section) 0; }
.services-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-card { padding: clamp(1.7rem, 3vw, 2.1rem); display: flex; flex-direction: column; gap: .6rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-pale); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: .5rem; transition: background .3s, color .3s; }
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--accent); color: #fff; }
.service-card h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.02em; }
.service-card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.service-tag { font-size: .76rem; font-weight: 600; color: var(--accent-deep); margin-top: .3rem; }
.service-card--accent { background: var(--accent-dark); color: #fff; }
.service-card--accent h3 { color: #fff; }
.service-card--accent p { color: rgba(255,255,255,.78); }
.service-card--accent .service-icon { background: rgba(255,255,255,.16); color: #fff; }
.service-card--accent .service-tag { color: rgba(255,255,255,.7); }
.service-card--accent:hover .service-icon { background: rgba(255,255,255,.24); }
.services-foot { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.services-foot p { color: var(--ink-soft); }
.services-foot strong { color: var(--ink); font-weight: 700; }

/* =============================================================
   10. MÉTODO (tarjetas paso a paso)
   ============================================================= */
.method { padding: var(--pad-section) 0; }
.steps { list-style: none; display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem 1.6rem; transition: transform .35s var(--ease-out); }
.step:hover { transform: translateY(-4px); }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--accent-pale); color: var(--accent-deep); font-weight: 700; font-size: .95rem; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -0.02em; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* =============================================================
   11. RESPIRA (sección salvia clara — calm app)
   ============================================================= */
.breathe { padding: var(--pad-section) 0; background: var(--accent-pale); }
.breathe-glow { display: none; }
.breathe-inner { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .breathe-inner { grid-template-columns: 1fr 1fr; } }
.breathe .kicker { color: var(--accent-deep); }
.breathe .kicker-num { background: rgba(255,255,255,.7); }
.breathe-copy > * + * { margin-top: 1.2rem; }
.breathe-legend { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.breathe-legend .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: .4rem; }
.dot-in { background: #7fa3b5; } .dot-hold { background: var(--accent); } .dot-out { background: #c3955f; }
.breathe-controls { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.breathe-count { font-family: var(--mono); font-size: .82rem; color: var(--accent-deep); }
.breathe-disclaimer { font-size: .85rem; color: var(--ink-mute); }
.breathe-stage { display: grid; place-items: center; min-height: 300px; }
.breather { position: relative; width: clamp(220px, 32vw, 320px); aspect-ratio: 1; display: grid; place-items: center; }
.breather-glow { display: none; }
.breather::before { content: ""; position: absolute; inset: 6%; border-radius: 50%; border: 1px solid var(--accent-soft); }
.breather::after { content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 1px solid var(--accent-soft); }
.breather-circle {
  position: relative; z-index: 1; width: 64%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6, transparent 55%), linear-gradient(150deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; text-align: center; color: #fff;
  box-shadow: 0 20px 50px -16px rgba(47,79,64,.5);
  transform: scale(var(--breath, .62)); transition: transform .5s linear;
}
.breather-phase { font-size: 1.15rem; font-weight: 600; }
.breather-timer { font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.breather.is-active .breather-circle { transition: transform var(--breath-dur, 4s) var(--ease-soft); }

/* =============================================================
   12. QUIZ
   ============================================================= */
.quiz { padding: var(--pad-section) 0; }
.quiz .section-head { text-align: center; margin-inline: auto; max-width: 42rem; }
.quiz-box { max-width: 600px; margin-inline: auto; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 2.8rem); }
.quiz-progress { height: 6px; background: var(--surface-2); border-radius: 100px; overflow: hidden; margin-bottom: 2rem; }
.quiz-progress span { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 100px; transition: width .5s var(--ease-out); }
.quiz-q-num { font-size: .78rem; font-weight: 600; color: var(--accent-deep); }
.quiz-q-text { font-size: 1.45rem; font-weight: 700; margin: .5rem 0 1.5rem; line-height: 1.2; letter-spacing: -0.025em; }
.quiz-options { display: grid; gap: .55rem; }
.quiz-option { text-align: left; padding: .95rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); font-weight: 500; transition: border-color .2s, background .2s, transform .15s; }
.quiz-option:hover { border-color: var(--accent); background: var(--surface); transform: translateX(3px); }
.quiz-option.is-picked { border-color: var(--accent); background: var(--accent-pale); }
.quiz-fallback { color: var(--ink-soft); }
.quiz-result { display: none; text-align: center; }
.quiz-result.is-visible { display: block; animation: fadeUp .6s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }
.quiz-result-band { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .02em; padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1.2rem; }
.band-low { background: var(--accent-pale); color: var(--accent-deep); }
.band-mid { background: #fbf0dc; color: #8a5a1c; }
.band-high { background: #f6e1da; color: #97402a; }
.quiz-result-title { font-size: 1.7rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -0.03em; }
.quiz-result-text { color: var(--ink-soft); max-width: 42ch; margin: 0 auto 1.8rem; }
.quiz-result-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.quiz-disclaimer, .booking-done-note { font-size: .8rem; color: var(--ink-mute); margin-top: 1.3rem; }

/* =============================================================
   13. TEAM
   ============================================================= */
.team { padding: var(--pad-section) 0; }
.team-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { padding: clamp(1.6rem, 3vw, 2rem); transition: transform .35s var(--ease-out), box-shadow .35s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 72px; height: 72px; margin-bottom: 1.1rem; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent-pale), var(--accent-soft)); }
.team-avatar::after { content: attr(data-mono); font-weight: 800; font-size: 1.5rem; color: var(--accent-deep); letter-spacing: -0.02em; }
.team-card h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; }
.team-role { color: var(--accent-deep); font-weight: 600; font-size: .82rem; margin: .35rem 0 .65rem; }
.team-bio { color: var(--ink-soft); font-size: .9rem; }
.team-col { margin-top: .9rem; font-family: var(--mono); font-size: .72rem; color: var(--ink-mute); }

/* =============================================================
   14. TESTIMONIALS
   ============================================================= */
.testimonials { padding: var(--pad-section) 0; }
.quotes { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1.1rem; transition: transform .35s var(--ease-out), box-shadow .35s; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.quote-mark { font-size: 2.6rem; line-height: .5; color: var(--accent-soft); height: 1rem; font-weight: 800; }
.quote blockquote { font-size: 1.08rem; line-height: 1.5; color: var(--ink); flex: 1; font-weight: 500; }
.quote figcaption { display: flex; flex-direction: column; gap: .25rem; font-size: .84rem; color: var(--ink-mute); }

/* =============================================================
   15. FAQ (tarjetas redondeadas)
   ============================================================= */
.faq { padding: var(--pad-section) 0; }
.faq-inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .faq-inner { grid-template-columns: .8fr 1.2fr; align-items: start; } .faq .section-head { position: sticky; top: 110px; margin-bottom: 0; } }
.faq-list { display: grid; gap: .7rem; }
.faq-item { background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .3s; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-size: 1.04rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--accent); transition: transform .3s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); max-width: 54ch; }

/* =============================================================
   16. LOCATION
   ============================================================= */
.location { padding: var(--pad-section) 0; }
.location-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1.1fr; } }
.location-list { list-style: none; display: grid; gap: 1.1rem; margin: 1.8rem 0 2rem; }
.location-list li { display: flex; gap: 1rem; align-items: flex-start; }
.loc-ic { width: 44px; height: 44px; flex: none; border-radius: 14px; background: var(--accent-pale); color: var(--accent-deep); display: grid; place-items: center; }
.loc-ic svg { width: 20px; height: 20px; }
.location-list strong { font-weight: 700; }
.location-list a:hover { color: var(--accent-deep); }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 400px; border: 0; filter: grayscale(.4) contrast(1.02); transition: filter .4s; }
.location-map:hover iframe { filter: grayscale(0); }

/* =============================================================
   17. CONTACT
   ============================================================= */
.contact { padding: var(--pad-section) 0; }
.contact-glow { display: none; }
.contact .section-head { text-align: center; margin-inline: auto; max-width: 42rem; }
.contact-card { max-width: 600px; margin-inline: auto; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 2.8rem); position: relative; overflow: hidden; }
.field { position: relative; margin-bottom: 1rem; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field input, .field textarea, .field select { width: 100%; padding: 1.4rem 1rem .55rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); color: var(--ink); font: inherit; transition: border-color .25s, background .25s, box-shadow .25s; }
.field select { padding: 1rem; color: var(--ink-soft); }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 4px var(--accent-pale); }
.field label { position: absolute; left: 1rem; top: 1.05rem; pointer-events: none; color: var(--ink-mute); transition: all .2s var(--ease-out); font-size: 1rem; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: .45rem; font-size: .66rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-deep); }
.field-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.field-check input { margin-top: .2rem; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.field-check a { color: var(--accent-deep); text-decoration: underline; }
.cta-submit { width: 100%; position: relative; }
.cta-alt { text-align: center; font-size: .88rem; color: var(--ink-mute); margin-top: 1rem; }
.cta-alt a { color: var(--accent-deep); font-weight: 600; }
.cta-form { transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after { content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.cta-form-check path { stroke: #fff; stroke-width: 2.4; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }
.cta-success { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: .7rem; padding: 2rem; background: var(--surface); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .6s var(--ease-out) .2s, transform .6s var(--ease-soft) .2s; }
.cta-success.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cta-success-ic, .booking-done-ic { width: 54px; height: 54px; margin: 0 auto; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; }
.cta-success-ic svg, .booking-done-ic svg { width: 26px; height: 26px; }
.cta-success h3, .booking-done h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; }

/* =============================================================
   18. FOOTER (cierre oscuro salvia, moderno)
   ============================================================= */
.footer { padding: var(--pad-section) 0 2rem; background: var(--accent-dark); color: rgba(255,255,255,.72); }
.footer .brand-text { color: #fff; }
.footer .brand-mark { color: var(--accent-soft); }
.footer .brand-sub { color: rgba(255,255,255,.5); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 1.1rem; max-width: 32ch; }
.footer-emergency { font-size: .82rem; border-left: 2px solid var(--accent-soft); padding-left: .8rem; color: rgba(255,255,255,.7); }
.footer-emergency a { color: #fff; font-weight: 600; }
.footer-col h4 { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; font-weight: 700; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .8rem; color: rgba(255,255,255,.5); }

/* =============================================================
   19. FAB + MOBILE BAR
   ============================================================= */
.fab-wa { position: fixed; right: 1.2rem; bottom: 1.5rem; z-index: 80; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.55); transition: transform .3s var(--ease-out); }
.fab-wa svg { width: 26px; height: 26px; }
.fab-wa:hover { transform: scale(1.08); }
@media (max-width: 720px) { .fab-wa { display: none; } }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(245,245,242,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
@media (max-width: 720px) { .mobile-bar { display: flex; } body { padding-bottom: 72px; } }
.mobile-bar-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: var(--accent); color: #fff; border-radius: 100px; font-weight: 600; padding: .9rem; }
.mobile-bar-cta svg { width: 18px; height: 18px; }
.mobile-bar-wa { width: 52px; flex: none; display: grid; place-items: center; background: #25d366; color: #fff; border-radius: 100px; }
.mobile-bar-wa svg { width: 24px; height: 24px; }

/* =============================================================
   20. BOOKING MODAL
   ============================================================= */
.booking { border: 0; padding: 0; background: transparent; max-width: 520px; width: calc(100% - 2rem); border-radius: var(--radius); color: var(--ink); margin: auto; }
.booking::backdrop { background: rgba(24,26,25,.5); backdrop-filter: blur(4px); }
.booking[open] { animation: bookingIn .35s var(--ease-out); }
@keyframes bookingIn { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.booking-inner { background: var(--surface); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); position: relative; max-height: 88vh; overflow-y: auto; }
.booking-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; transition: background .2s; }
.booking-close:hover { background: var(--accent-pale); }
.booking-close svg { width: 16px; height: 16px; }
.booking-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 1.4rem; letter-spacing: -0.03em; }
.booking-q { font-weight: 600; margin-bottom: 1rem; }
.booking-services { display: grid; gap: .55rem; }
.booking-service { display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); transition: border-color .2s, background .2s, transform .15s; }
.booking-service:hover { border-color: var(--accent); transform: translateX(3px); }
.booking-service.is-picked { border-color: var(--accent); background: var(--accent-pale); }
.booking-service strong { display: block; font-size: 1rem; font-weight: 700; }
.booking-service span { font-size: .8rem; color: var(--ink-mute); }
.booking-service .price { font-weight: 700; color: var(--accent-deep); font-size: .98rem; }
.booking-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; font-weight: 600; }
.booking-cal-head button { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); font-size: 1.1rem; line-height: 1; }
.booking-cal-head button:hover { background: var(--accent-pale); }
.booking-cal-head button:disabled { opacity: .3; cursor: not-allowed; }
.booking-cal-head span { text-transform: capitalize; }
.booking-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: .66rem; color: var(--ink-mute); font-weight: 600; padding: .3rem 0; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px; font-size: .9rem; font-weight: 500; background: var(--bg); transition: background .15s; }
.cal-day:not(:disabled):hover { background: var(--accent-pale); }
.cal-day:disabled { color: var(--line); cursor: default; background: transparent; }
.cal-day.is-empty { background: transparent; }
.cal-day.is-picked { background: var(--accent); color: #fff; }
.booking-slots { margin-top: 1.5rem; }
.booking-slots-label { font-weight: 600; margin-bottom: .8rem; text-transform: capitalize; }
.booking-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: .5rem; }
.slot { padding: .7rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); font-weight: 600; transition: border-color .2s; }
.slot:hover { border-color: var(--accent); }
.slot.is-picked { background: var(--accent); color: #fff; border-color: var(--accent); }
.booking-summary { background: var(--accent-pale); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.2rem; font-size: .92rem; }
.booking-summary strong { color: var(--accent-deep); }
.booking-form .field { margin-bottom: .9rem; }
.booking-form .btn { width: 100%; }
.booking-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; }
.booking-steps-dots { display: inline-flex; gap: .4rem; margin-left: auto; }
.booking-steps-dots i { width: 7px; height: 7px; border-radius: 100px; background: var(--line); transition: background .3s, width .3s; }
.booking-steps-dots i.is-on { background: var(--accent); width: 20px; }
.booking-done { text-align: center; display: grid; gap: .7rem; padding: 1rem 0; }
.booking-done h2 { font-weight: 700; letter-spacing: -0.03em; }
.booking-done p { color: var(--ink-soft); }
.booking-done .btn { justify-self: center; margin-top: .6rem; }

/* =============================================================
   21. Reveal (gated by .js)
   ============================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   22. Responsive
   ============================================================= */
@media (max-width: 600px) {
  .services-foot { flex-direction: column; align-items: flex-start; }
  .hero-eyebrow { font-size: .82rem; }
  .hero { padding-top: 6rem; }
  .hero-art svg { max-width: 215px; }
  .hero-scroll { display: none; }
}

/* =============================================================
   23. Reduced motion — solo loops
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eyebrow-dot::after, .hero-scroll-line::after { animation: none; }
  .marquee-track { animation: none !important; }
  .hero-art svg, .hero-art-ring, .hero-art-dot, .hero-art-leaf { animation: none; }
}
