
:root {
  --cream: #f6efe6;
  --cream-2: #fffaf3;
  --linen: #fbf6ee;
  --sage: #9aa98f;
  --sage-soft: #e6eddf;
  --sage-glow: #cfd9c6;
  --deep: #18322c;
  --deep-2: #0f2520;
  --deep-3: #24483e;
  --ink: #211e1a;
  --muted: #70695f;
  --clay: #bd806a;
  --clay-2: #e9cabc;
  --sand: #dac0a4;
  --white: #ffffff;
  --line: rgba(24, 50, 44, .14);
  --line-strong: rgba(24, 50, 44, .22);
  --shadow: 0 28px 90px rgba(24, 50, 44, .16);
  --shadow-soft: 0 18px 54px rgba(24, 50, 44, .10);
  --shadow-lift: 0 24px 70px rgba(24, 50, 44, .20), inset 0 1px 0 rgba(255,255,255,.42);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 4%, rgba(154,169,143,.22), transparent 24rem),
    radial-gradient(circle at 0% 35%, rgba(189,128,106,.10), transparent 22rem),
    var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--sage-soft); color: var(--deep-2); }
:focus-visible { outline: 3px solid rgba(189,128,106,.75); outline-offset: 4px; border-radius: 12px; }

.skip-link {
  position: absolute;
  top: .8rem;
  left: -999px;
  z-index: 9999;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--deep);
  color: var(--cream-2);
  font-weight: 800;
}
.skip-link:focus { left: .8rem; }

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 32px)); margin-inline: auto; }
.section { position: relative; padding: clamp(4.2rem, 9vw, 7.4rem) 0; }
.section-cream { background: linear-gradient(180deg, rgba(246,239,230,.72), rgba(255,250,243,.96)); }
.section-soft {
  background:
    radial-gradient(circle at 12% 22%, rgba(189,128,106,.10), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(154,169,143,.18), transparent 22rem),
    rgba(248,243,235,.70);
}

h1, h2, h3, .serif {
  margin: 0;
  color: var(--deep-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: -.042em;
  line-height: .98;
  text-wrap: balance;
  font-kerning: normal;
}
h1 { max-width: 760px; font-size: clamp(2.9rem, 7.3vw, 5.45rem); }
h2 { font-size: clamp(2.15rem, 5.4vw, 4.35rem); }
h3 { font-size: clamp(1.38rem, 2.8vw, 2.05rem); letter-spacing: -.032em; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.58; }
.small { color: var(--muted); font-size: .95rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .58rem;
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 860;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow-light { color: rgba(255,250,243,.72); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24,50,44,.10);
  background: rgba(255,250,243,.86);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 10px 34px rgba(24,50,44,.05);
}
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: clamp(186px, 22vw, 222px); height: auto; }
.desktop-nav { display: none; }
.btn-header { display: none !important; }
.nav-toggle, .menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255,255,255,.70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 5px; }
.nav-toggle-bars span { width: 19px; height: 2px; border-radius: 999px; background: currentColor; }
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(15,37,32,.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.menu-backdrop.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(430px, 100%);
  min-height: 100dvh;
  padding: 1rem;
  background:
    radial-gradient(circle at 88% 4%, rgba(154,169,143,.26), transparent 18rem),
    var(--cream-2);
  box-shadow: -26px 0 90px rgba(15,37,32,.22);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .24s ease, visibility .24s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.menu-mark { display: inline-flex; align-items: center; gap: .72rem; color: var(--deep); font-weight: 860; }
.menu-mark img { width: 52px; height: 52px; }
.mobile-menu-links { display: grid; gap: .55rem; padding: .75rem 0 1rem; }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: .92rem 1rem;
  border: 1px solid var(--line);
  border-radius: 19px;
  color: var(--deep);
  background: rgba(255,255,255,.58);
  font-weight: 780;
  box-shadow: 0 10px 30px rgba(24,50,44,.05);
}
.mobile-menu-links a::after { content: "→"; color: var(--clay); }
.mobile-menu-links a[aria-current="page"] { background: var(--sage-soft); border-color: rgba(154,169,143,.55); }
.mobile-menu-cta {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(246,239,230,.78);
}
.mobile-menu-cta p { margin: 0; color: var(--muted); font-size: .94rem; }

.btn {
  --btn-bg: rgba(255,255,255,.78);
  --btn-color: var(--deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .9rem 1.15rem;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: .96rem;
  font-weight: 860;
  letter-spacing: -.012em;
  line-height: 1.08;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 15px 36px rgba(24,50,44,.13), inset 0 1px 0 rgba(255,255,255,.54);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,0));
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 54px rgba(24,50,44,.18), inset 0 1px 0 rgba(255,255,255,.62); }
.btn-primary {
  --btn-bg: linear-gradient(135deg, #1f4a40 0%, #102922 58%, #0d211d 100%);
  --btn-color: var(--cream-2);
  border-color: rgba(255,255,255,.16);
}
.btn-secondary {
  --btn-bg: rgba(255,255,255,.66);
  --btn-color: var(--deep);
  border-color: rgba(24,50,44,.16);
  backdrop-filter: blur(14px);
}
.btn-on-dark {
  --btn-bg: linear-gradient(135deg, #fff8ee, #ead9c8);
  --btn-color: var(--deep-2);
  border-color: rgba(255,255,255,.46);
  box-shadow: 0 22px 56px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.78);
}
.btn-secondary-dark {
  --btn-bg: rgba(255,255,255,.13);
  --btn-color: var(--cream-2);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.btn-footer {
  --btn-bg: rgba(255,255,255,.12);
  --btn-color: var(--cream-2);
  border-color: rgba(255,255,255,.18);
}
.full { width: 100%; }

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: .72rem 1rem calc(.72rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(24,50,44,.12);
  background: rgba(255,250,243,.90);
  backdrop-filter: blur(18px);
}
.mobile-sticky-cta .btn { width: 100%; min-height: 48px; }

.breadcrumb { padding: .9rem 0 0; color: var(--muted); font-size: .92rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--sand); }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 7.8vw, 6.6rem) 0 clamp(3.6rem, 7vw, 5.4rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10rem -8rem auto auto;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(154,169,143,.36), rgba(154,169,143,.12) 44%, transparent 70%);
  filter: blur(3px);
  pointer-events: none;
}
.hero-home {
  background:
    radial-gradient(circle at 84% 14%, rgba(154,169,143,.30), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(218,192,164,.34), transparent 22rem),
    linear-gradient(180deg, var(--linen), var(--cream));
}
.hero-landing { padding-top: clamp(3rem, 6vw, 5.6rem); }
.hero-pautas { background: radial-gradient(circle at 85% 12%, rgba(189,128,106,.20), transparent 25rem), linear-gradient(180deg, var(--linen), #f4e5d4); }
.hero-trauma { background: radial-gradient(circle at 82% 10%, rgba(154,169,143,.30), transparent 28rem), linear-gradient(180deg, #fbfaf6, #edf2e8); }
.hero-pareja { background: radial-gradient(circle at 90% 18%, rgba(189,128,106,.20), transparent 26rem), radial-gradient(circle at 12% 72%, rgba(154,169,143,.19), transparent 26rem), var(--linen); }
.hero-individual { background: radial-gradient(circle at 80% 8%, rgba(24,50,44,.13), transparent 26rem), linear-gradient(180deg, var(--linen), var(--cream)); }
.hero-about { background: radial-gradient(circle at 84% 10%, rgba(154,169,143,.26), transparent 28rem), linear-gradient(180deg, var(--linen), var(--cream)); }
.hero-contact { background: radial-gradient(circle at 90% 0%, rgba(154,169,143,.24), transparent 24rem), linear-gradient(180deg, var(--linen), var(--cream)); }
.hero-legal { padding: clamp(3.2rem, 7vw, 5.8rem) 0; background: linear-gradient(180deg, var(--linen), var(--cream)); }
.hero-inner { position: relative; z-index: 1; display: grid; gap: 2.2rem; align-items: center; }
.hero-copy .lead { margin-top: 1.18rem; }
.hero-actions, .offer-actions { display: flex; flex-direction: column; gap: .78rem; margin-top: 1.55rem; }
.proof-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .5rem .76rem;
  border: 1px solid rgba(24,50,44,.12);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255,255,255,.55);
  font-size: .9rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}
.hero-peek {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .8rem;
  margin-top: clamp(2rem, 6vw, 4.4rem);
}
.hero-peek a {
  display: grid;
  gap: .15rem;
  min-height: 108px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 24px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 56px rgba(24,50,44,.10), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-peek a:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(24,50,44,.16); }
.hero-peek span { color: var(--clay); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.hero-peek strong { color: var(--deep-2); font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; line-height: 1.05; letter-spacing: -.03em; }

.hero-visual {
  min-height: clamp(320px, 54vw, 500px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.50), rgba(255,255,255,.14)),
    radial-gradient(circle at 32% 24%, rgba(255,250,243,.76), transparent 16rem),
    linear-gradient(135deg, rgba(234,202,188,.62), rgba(230,237,223,.82));
  box-shadow: var(--shadow-lift);
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.56);
  background: linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
  z-index: -1;
}
.visual-home { background: linear-gradient(135deg, rgba(234,202,188,.56), rgba(230,237,223,.86)); }
.visual-pautas { background: linear-gradient(135deg, rgba(242,218,193,.92), rgba(233,202,188,.58), rgba(230,237,223,.72)); }
.visual-trauma { background: linear-gradient(135deg, rgba(230,237,223,.95), rgba(255,250,243,.68), rgba(207,217,198,.72)); }
.visual-pareja { background: linear-gradient(135deg, rgba(233,202,188,.78), rgba(255,250,243,.72), rgba(207,217,198,.72)); }
.visual-individual { background: linear-gradient(135deg, rgba(246,239,230,.92), rgba(207,217,198,.76), rgba(24,50,44,.14)); }
.visual-orbit {
  position: absolute;
  border: 2px solid rgba(255,250,243,.72);
  border-radius: 50%;
  transform: rotate(-5deg);
}
.orbit-one { width: 78%; height: 34%; left: 11%; top: 17%; }
.orbit-two { width: 56%; height: 56%; right: -9%; bottom: -10%; border-color: rgba(24,50,44,.12); background: rgba(24,50,44,.07); }
.visual-thread {
  position: absolute;
  left: 16%;
  right: 18%;
  top: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(189,128,106,.56), rgba(24,50,44,.28), transparent);
  transform: rotate(-8deg);
}
.visual-glass-note {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 24px;
  background: rgba(255,250,243,.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.visual-glass-note span { display: block; margin-bottom: .2rem; color: var(--clay); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.visual-glass-note strong { color: var(--deep-2); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.28rem, 3vw, 1.8rem); line-height: 1.05; letter-spacing: -.03em; }

.section-head { display: grid; gap: .8rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.centered { max-width: 880px; margin-inline: auto; text-align: center; justify-items: center; }
.grid, .service-grid, .pain-grid, .steps-grid, .quick-wa-grid, .legal-grid { display: grid; gap: 1rem; }
.split { display: grid; gap: 1.4rem; align-items: center; }
.split-top { align-items: start; }
.reverse > :first-child { order: 0; }

.stacked-panels { display: grid; gap: .9rem; }
.mini-panel, .glass-panel, .note-card, .credential-panel, .legal-card {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.mini-panel { padding: 1.05rem 1.1rem; }
.mini-panel strong, .note-card strong { display: block; margin-bottom: .25rem; color: var(--deep); font-weight: 860; }
.mini-panel p, .note-card p, .glass-panel p, .credential-panel p, .legal-card p { color: var(--muted); }
.glass-panel { padding: clamp(1.2rem, 3vw, 1.8rem); }
.glass-panel p:last-child { margin-bottom: 0; color: var(--deep); font-weight: 720; }

.service-grid { counter-reset: service; }
.service-card, .pain-card, .step-card, .statement-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 1.25rem; }
.service-card::before, .statement-card::before, .pain-card::before, .step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.58), transparent 14rem);
  pointer-events: none;
}
.service-card span, .step-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 999px;
  color: var(--cream-2);
  background: var(--deep);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(24,50,44,.18);
}
.service-card h3 { margin-top: 2.8rem; }
.service-card p { color: var(--muted); margin-top: .7rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  color: var(--deep);
  font-weight: 850;
}
.card-link::after { content: "→"; color: var(--clay); }
.service-warm { background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(242,218,193,.58)); }
.service-sage { background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(230,237,223,.78)); }
.service-clay { background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(233,202,188,.70)); }
.service-deep-card { background: linear-gradient(145deg, rgba(255,255,255,.70), rgba(24,50,44,.12)); }

.statement-card { padding: clamp(1.3rem, 3vw, 2.1rem); }
.statement-card h2 { font-size: clamp(2rem, 4.8vw, 3.7rem); }
.statement-card p { color: var(--muted); margin-top: .9rem; }
.statement-card .btn { margin-top: .5rem; }
.statement-deep { background: linear-gradient(145deg, #18322c, #10241f); color: var(--cream-2); }
.statement-deep h2 { color: var(--cream-2); }
.statement-deep p { color: rgba(255,250,243,.76); }

.pain-grid { counter-reset: pain; }
.pain-card { padding: 1.25rem; }
.pain-card > span {
  width: 16px; height: 16px; display: inline-flex; margin-bottom: 1.1rem; border-radius: 999px;
  background: radial-gradient(circle, var(--clay) 0 35%, rgba(189,128,106,.18) 36% 100%);
  box-shadow: 0 0 0 10px rgba(189,128,106,.08);
}
.pain-card p, .step-card p { color: var(--muted); margin: .65rem 0 0; }

.steps-grid { counter-reset: step; }
.step-card { padding: 1.25rem; min-height: 220px; }
.step-card span { margin-bottom: 2.6rem; background: linear-gradient(135deg, var(--deep-3), var(--deep-2)); }

.large-quote h2 { max-width: 640px; }
.portrait-card {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.66), transparent 10rem),
    radial-gradient(circle at 70% 30%, rgba(154,169,143,.32), transparent 16rem),
    linear-gradient(145deg, rgba(218,192,164,.78), rgba(230,237,223,.82));
  box-shadow: var(--shadow-lift);
}
.portrait-card::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  top: 15%;
  border-radius: 999px 999px 48% 48%;
  background: linear-gradient(180deg, rgba(255,250,243,.72), rgba(255,250,243,.22));
  border: 1px solid rgba(255,255,255,.58);
}
.portrait-mark {
  position: absolute;
  top: 28%;
  color: rgba(24,50,44,.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 14vw, 8rem);
  font-weight: 700;
  letter-spacing: -.08em;
}
.portrait-caption {
  position: relative;
  width: 100%;
  padding: 1.05rem;
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 24px;
  background: rgba(255,250,243,.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.portrait-caption strong { display: block; color: var(--deep); }
.portrait-caption span { display: block; color: var(--muted); font-size: .94rem; }
.portrait-small { min-height: 300px; }
.hero-portrait { min-height: 460px; }

.pill-list { display: flex; flex-wrap: wrap; gap: .72rem; margin-top: 1.4rem; }
.pill-list a {
  padding: .72rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--deep);
  font-weight: 780;
}
.credential-panel { padding: 1.25rem; }
.credential-panel span { color: var(--clay); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.credential-panel strong { display: block; margin: .4rem 0 .6rem; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.05; }

.faq-list { display: grid; gap: .75rem; margin-top: 1.2rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 38px rgba(24,50,44,.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--deep);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}
.faq-question::after { content: "+"; color: var(--clay); font-size: 1.35rem; line-height: 1; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 1.1rem 1.05rem; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.4rem) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(154,169,143,.24), transparent 22rem),
    radial-gradient(circle at 10% 92%, rgba(189,128,106,.17), transparent 22rem),
    linear-gradient(135deg, #1f493f, #10241f 68%);
  color: var(--cream-2);
}
.cta-band h2 { color: var(--cream-2); }
.cta-band .lead, .cta-band .small { color: rgba(255,250,243,.76); }
.cta-inner { display: grid; gap: 1.4rem; align-items: center; }
.cta-inner .offer-actions { margin-top: 0; }

.contact-hero-grid { align-items: start; }
.whatsapp-card, .form-card {
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 34px;
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(16px);
}
.whatsapp-card { padding: clamp(1.2rem, 3vw, 1.7rem); }
.whatsapp-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.whatsapp-card p { color: var(--muted); }
.card-kicker { display: inline-flex; margin-bottom: .8rem; color: var(--clay); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.privacy-hint { margin: .8rem 0 0; padding: .85rem; border-radius: 17px; background: rgba(230,237,223,.84); color: var(--deep) !important; font-size: .94rem; }
.quick-wa-grid { grid-template-columns: 1fr; }
.quick-wa {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.65);
  color: var(--deep);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}
.quick-wa::after { content: "Abrir WhatsApp →"; color: var(--clay); font-size: .88rem; }
.form-card { padding: clamp(1rem, 2.5vw, 1.45rem); }
.form-grid { display: grid; gap: .9rem; }
.field { display: grid; gap: .35rem; }
.field label, .checkbox { color: var(--deep); font-weight: 780; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(24,50,44,.18);
  border-radius: 17px;
  background: rgba(255,255,255,.86);
  padding: .86rem .95rem;
  color: var(--ink);
}
.field textarea { min-height: 132px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: .65rem; margin: .85rem 0; }
.checkbox input { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--deep); }
.checkbox a { text-decoration: underline; text-underline-offset: 3px; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status { margin: .85rem 0 0; color: var(--deep); font-weight: 780; }
.note-card { padding: 1rem; margin-top: 1.2rem; }

.legal-grid { grid-template-columns: 1fr; }
.legal-card { padding: 1.25rem; }
.legal-card h2 { font-size: clamp(1.55rem, 4vw, 2.35rem); margin-bottom: .55rem; }

.footer {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  background: #10241f;
  color: rgba(255,250,243,.75);
}
.footer-grid { display: grid; gap: 1.7rem; }
.footer-logo { width: 230px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 390px; color: rgba(255,250,243,.74); }
.footer-col { display: grid; gap: .55rem; align-content: start; }
.footer strong { color: var(--cream-2); }
.footer a { color: rgba(255,250,243,.84); }
.footer a:hover { color: var(--cream-2); text-decoration: underline; text-underline-offset: 4px; }
.footer span { color: rgba(255,250,243,.70); }
.footer-bottom {
  display: grid;
  gap: .4rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,250,243,.64);
  font-size: .9rem;
}

@media (max-width: 719px) {
  body { padding-bottom: 76px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.35rem); }
  .section { padding: 4rem 0; }
  .hero { padding-top: 3rem; }
  .btn { width: 100%; }
  .proof-row span { width: 100%; justify-content: center; }
  .service-card { min-height: 270px; }
}
@media (min-width: 560px) {
  .hero-actions, .offer-actions { flex-direction: row; flex-wrap: wrap; }
  .btn { width: auto; }
  .hero-peek, .pain-grid, .steps-grid, .quick-wa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 780px) {
  .container { width: min(var(--max), calc(100% - 48px)); }
  .narrow { width: min(860px, calc(100% - 48px)); }
  .hero-inner { grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr); gap: clamp(2rem, 5vw, 4.6rem); }
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.8rem, 5vw, 4rem); }
  .reverse > :first-child { order: 2; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
@media (min-width: 1020px) {
  .hero-peek { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pain-grid, .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.35fr .75fr .65fr .75fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
}
@media (min-width: 1120px) {
  .header-inner { min-height: 78px; }
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .18rem;
    min-width: 0;
  }
  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .58rem .74rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: .93rem;
    font-weight: 760;
    white-space: nowrap;
  }
  .desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--deep); background: rgba(154,169,143,.18); }
  .btn-header { display: inline-flex !important; min-height: 48px; padding-inline: 1rem; white-space: nowrap; }
  .nav-toggle { display: none; }
}
@media (min-width: 1320px) {
  .desktop-nav a { padding-inline: .9rem; }
  .brand img { width: 236px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


/* v4 premium refinements */
:root {
  --muted: #625a50;
  --shadow-premium: 0 32px 100px rgba(24, 50, 44, .18), 0 1px 0 rgba(255,255,255,.7) inset;
  --glass-strong: rgba(255, 252, 246, .90);
}
body {
  background:
    radial-gradient(circle at 92% 6%, rgba(154,169,143,.28), transparent 28rem),
    radial-gradient(circle at 4% 32%, rgba(189,128,106,.14), transparent 24rem),
    var(--cream-2);
}
.breadcrumb { display: none !important; }
h1 { max-width: 820px; font-size: clamp(2.55rem, 5.15vw, 4.85rem); line-height: 1.02; letter-spacing: -.05em; }
h2 { font-size: clamp(2.05rem, 4.55vw, 3.95rem); line-height: 1.02; }
.lead { color: #5f574e; }
.hero { padding-top: clamp(4rem, 8vw, 6.8rem); }
.hero-landing { padding-top: clamp(4.4rem, 8vw, 6.2rem); }
.landing-hero .hero-inner { align-items: center; }
.hero-side-card,
.couple-dialogue-card,
.inner-weather-card,
.contact-cta-card,
.cv-hero-card {
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: var(--glass-strong);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(18px) saturate(1.18);
}
.hero-side-card { padding: clamp(1.35rem, 3vw, 2rem); }
.hero-side-card span,
.inner-weather-card span { display: block; color: var(--clay); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-side-card strong,
.inner-weather-card strong { display: block; color: var(--deep-2); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.05; letter-spacing: -.035em; }
.hero-side-card p { margin-top: 1rem; color: #4f493f; }
.premium-visual,
.portrait-premium { box-shadow: 0 42px 120px rgba(24,50,44,.22), inset 0 1px 0 rgba(255,255,255,.65); }
.strong-note { background: rgba(255,252,246,.88); color: var(--deep-2); }
.strong-note strong { font-size: clamp(1.22rem, 2.2vw, 1.7rem); }
.premium-peek a,
.mini-panel,
.glass-panel,
.note-card,
.credential-panel,
.legal-card,
.pain-card,
.step-card,
.service-card,
.statement-card {
  border-color: rgba(24,50,44,.16);
  background: rgba(255,252,246,.88);
  box-shadow: 0 24px 80px rgba(24,50,44,.12), inset 0 1px 0 rgba(255,255,255,.78);
}
.premium-peek a { padding: 1.15rem; }
.premium-peek em { color: #5f574e; font-style: normal; font-size: .94rem; line-height: 1.38; }
.premium-peek strong { margin-bottom: .25rem; }
.pain-card { padding: clamp(1.25rem, 2vw, 1.55rem); min-height: 230px; }
.pain-card h3 { color: var(--deep-2); font-size: clamp(1.45rem, 2.2vw, 1.95rem); }
.pain-card p,
.step-card p,
.service-card p,
.mini-panel p,
.glass-panel p { color: #50493f; }
.pain-card > span { width: 18px; height: 18px; box-shadow: 0 0 0 12px rgba(189,128,106,.11), 0 12px 28px rgba(189,128,106,.24); }
.high-contrast-cards .pain-card { background: linear-gradient(145deg, rgba(255,252,246,.96), rgba(246,239,230,.92)); }
.service-card span, .step-card span { color: #fffaf3; }
.service-card h3 { margin-top: 2rem; }
.statement-premium { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; }
.warm-statement { background: linear-gradient(145deg, rgba(255,252,246,.94), rgba(242,218,193,.66)); }
.deep-statement { background: radial-gradient(circle at 90% 10%, rgba(154,169,143,.20), transparent 22rem), linear-gradient(145deg, #1f493f, #0c201b); color: var(--cream-2); }
.deep-statement h2 { color: var(--cream-2); }
.deep-statement p { color: rgba(255,250,243,.78); }
.offer-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(189,128,106,.18), transparent 22rem),
    radial-gradient(circle at 92% 20%, rgba(154,169,143,.24), transparent 28rem),
    linear-gradient(180deg, #fffaf3, #f4eadf);
}
.offer-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid rgba(24,50,44,.18);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,250,243,.74)),
    radial-gradient(circle at 80% 20%, rgba(154,169,143,.22), transparent 20rem);
  box-shadow: 0 36px 120px rgba(24,50,44,.18), inset 0 1px 0 rgba(255,255,255,.86);
  overflow: hidden;
}
.offer-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(230,237,223,.62);
  filter: blur(2px);
  pointer-events: none;
}
.offer-price {
  position: relative;
  z-index: 1;
  width: min(190px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  color: var(--cream-2);
  background: radial-gradient(circle at 32% 20%, #2d5a4e, #10241f 68%);
  box-shadow: 0 28px 72px rgba(24,50,44,.30), inset 0 1px 0 rgba(255,255,255,.24);
}
.offer-price span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -.06em; line-height: .9; }
.offer-price small { max-width: 90px; text-align: center; color: rgba(255,250,243,.76); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.offer-copy,
.premium-actions { position: relative; z-index: 1; }
.offer-points { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.offer-points span,
.contact-mini-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: .45rem .72rem;
  border: 1px solid rgba(24,50,44,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--deep);
  font-weight: 800;
  font-size: .87rem;
}
.cta-band {
  background:
    radial-gradient(circle at 85% 16%, rgba(154,169,143,.30), transparent 26rem),
    radial-gradient(circle at 10% 80%, rgba(189,128,106,.18), transparent 22rem),
    linear-gradient(135deg, #fffaf3, #ead8c5 60%, #e6eddf);
  color: var(--deep-2);
  border-top: 1px solid rgba(24,50,44,.10);
}
.cta-band h2 { color: var(--deep-2); }
.cta-band .lead,
.cta-band .small { color: #5b534a; }
.cta-band .eyebrow-light,
.cta-band .eyebrow { color: var(--clay); }
.cta-band .btn-on-dark,
.cta-band .btn-primary { --btn-bg: linear-gradient(135deg, #1f4a40 0%, #102922 58%, #0d211d 100%); --btn-color: var(--cream-2); }
.cta-band .btn-secondary-dark,
.cta-band .btn-secondary { --btn-bg: rgba(255,255,255,.64); --btn-color: var(--deep); border-color: rgba(24,50,44,.18); }
.method-board,
.tool-card-list,
.map-board,
.translation-board,
.layers-panel,
.cv-grid,
.timeline-premium,
.masonry-process,
.cycle-grid { display: grid; gap: 1rem; }
.method-board article,
.tool-card-list article,
.map-board article,
.translation-board article,
.layers-panel article,
.cv-grid article,
.timeline-premium article,
.masonry-process article,
.cycle-grid article {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(24,50,44,.16);
  border-radius: 24px;
  background: rgba(255,252,246,.90);
  box-shadow: 0 20px 70px rgba(24,50,44,.10), inset 0 1px 0 rgba(255,255,255,.78);
}
.method-board span,
.timeline-premium span,
.masonry-process span,
.cycle-grid span,
.cv-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: var(--cream-2);
  background: var(--deep);
  font-weight: 900;
}
.method-board strong,
.tool-card-list strong,
.map-board strong,
.translation-board strong { display: block; color: var(--deep); font-size: 1.1rem; }
.method-board p,
.tool-card-list p,
.map-board p,
.translation-board p,
.layers-panel p,
.cv-grid p,
.timeline-premium p,
.masonry-process p,
.cycle-grid p { color: #50493f; margin-bottom: 0; }
.deep-editorial {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 18%, rgba(154,169,143,.20), transparent 22rem),
    linear-gradient(135deg, #1e473d, #0d211c 70%);
  color: var(--cream-2);
  box-shadow: 0 42px 130px rgba(24,50,44,.26);
}
.deep-editorial h2 { color: var(--cream-2); max-width: 720px; }
.deep-editorial p { color: rgba(255,250,243,.80); font-size: clamp(1.15rem, 2vw, 1.45rem); max-width: 720px; }
.editorial-line { display: flex; gap: .5rem; margin-top: 1rem; }
.editorial-line span { flex: 1; height: 6px; border-radius: 999px; background: linear-gradient(90deg, rgba(255,250,243,.78), rgba(154,169,143,.56)); }
.trauma-symbol {
  min-height: 420px;
  position: relative;
  border-radius: 42px;
  background: radial-gradient(circle at 50% 50%, rgba(255,250,243,.72), transparent 8rem), linear-gradient(145deg, rgba(230,237,223,.9), rgba(255,250,243,.74));
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}
.trauma-symbol span { position: absolute; inset: 12%; border: 1.5px solid rgba(24,50,44,.18); border-radius: 50%; transform: rotate(-8deg); }
.trauma-symbol span:nth-child(2) { inset: 24%; transform: rotate(14deg); border-color: rgba(189,128,106,.28); }
.trauma-symbol span:nth-child(3) { inset: 36%; transform: rotate(-18deg); background: rgba(255,250,243,.34); }
.trauma-symbol strong { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--deep); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
.couple-dialogue-card { display: grid; gap: .9rem; padding: clamp(1.2rem, 3vw, 2rem); }
.couple-dialogue-card p { margin: 0; padding: 1rem; border-radius: 22px; background: rgba(255,255,255,.70); color: var(--deep); font-weight: 800; box-shadow: 0 14px 42px rgba(24,50,44,.08); }
.inner-weather-card { display: grid; gap: .85rem; padding: clamp(1.35rem, 3vw, 2.2rem); background: linear-gradient(145deg, rgba(255,252,246,.92), rgba(230,237,223,.74)); }
.layers-panel article:nth-child(2),
.layers-panel article:nth-child(4),
.cycle-grid article:nth-child(2),
.cycle-grid article:nth-child(4) { transform: translateY(1.1rem); }
.premium-glass { background: rgba(255,252,246,.94); }
.contact-main-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.1rem; }
.contact-mini-proof { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.whatsapp-card p.privacy-hint, .privacy-hint { display: none !important; }
.premium-wa-grid { gap: 1rem; }
.quick-wa { min-height: 96px; align-items: center; gap: .8rem; background: rgba(255,252,246,.92); border-color: rgba(24,50,44,.16); box-shadow: 0 24px 80px rgba(24,50,44,.11), inset 0 1px 0 rgba(255,255,255,.74); }
.quick-wa::after { content: none; }
.quick-wa strong { color: var(--deep-2); font-size: 1.05rem; }
.quick-wa span { color: var(--clay); font-weight: 900; }
.quick-wa span::after { content: " →"; }
.form-card { background: rgba(255,252,246,.92); }
.field input, .field select, .field textarea { background: #fffefd; border-color: rgba(24,50,44,.22); }
.footer { background: radial-gradient(circle at 6% 4%, rgba(154,169,143,.10), transparent 24rem), #071a16; }
.footer-logo { width: 230px; margin-bottom: 1rem; filter: none !important; opacity: 1; }
.btn-footer { --btn-bg: rgba(255,250,243,.10); --btn-color: var(--cream-2); border-color: rgba(255,250,243,.22); }
.faq-item { background: rgba(255,252,246,.90); border-color: rgba(24,50,44,.16); }
.faq-question { color: var(--deep-2); }
.faq-answer { color: #50493f; }
.credential-panel.cv-hero-card { padding: clamp(1.35rem, 3vw, 2rem); }
.authority-band { background: linear-gradient(180deg, #fffaf3, #f6efe6); }

@media (max-width: 719px) {
  h1 { font-size: clamp(2.4rem, 11.5vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero { padding-top: 3.2rem; }
  .offer-card { border-radius: 28px; }
  .offer-price { width: 156px; justify-self: center; }
  .layers-panel article:nth-child(2),
  .layers-panel article:nth-child(4),
  .cycle-grid article:nth-child(2),
  .cycle-grid article:nth-child(4) { transform: none; }
  .statement-premium { min-height: auto; }
  .trauma-symbol { min-height: 300px; }
}
@media (min-width: 780px) {
  .offer-card { grid-template-columns: auto minmax(0, 1fr); }
  .offer-card .premium-actions { grid-column: 2; }
  .method-board { grid-template-columns: 1fr; }
  .cv-grid, .timeline-premium, .cycle-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1020px) {
  .offer-card { grid-template-columns: auto minmax(0, 1fr) auto; }
  .offer-card .premium-actions { grid-column: auto; justify-content: end; }
  .timeline-premium, .cycle-grid, .cv-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .premium-wa-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .masonry-process { grid-template-columns: 1.1fr .9fr 1fr; }
}


/* v4 premium polish ------------------------------------------------------- */
.breadcrumb { display: none !important; }

:root {
  --shadow-strong: 0 34px 110px rgba(15, 37, 32, .24);
  --glass-readable: rgba(255, 252, 247, .88);
  --glass-readable-strong: rgba(255, 252, 247, .94);
}

.hero-premium { padding-top: clamp(4rem, 7vw, 6.5rem); }
.hero-premium h1 { font-size: clamp(3.05rem, 6.2vw, 5.2rem); letter-spacing: -.052em; }
.hero-premium .lead { max-width: 640px; color: #61594f; font-weight: 450; }
.premium-visual { box-shadow: 0 34px 110px rgba(24,50,44,.18), inset 0 1px 0 rgba(255,255,255,.68); }
.visual-glass-note { background: rgba(255,250,243,.88); border-color: rgba(255,255,255,.74); }
.visual-glass-note strong { color: #0e2721; text-shadow: 0 1px 0 rgba(255,255,255,.42); }

.pain-showcase .section-head { margin-bottom: clamp(1.5rem, 3vw, 2.4rem); }
.readable-cards > article,
.readable-cards .pain-card,
.pain-card,
.mini-panel,
.glass-panel,
.step-card,
.quick-wa,
.form-card,
.whatsapp-card {
  background: var(--glass-readable);
  border-color: rgba(24,50,44,.13);
  box-shadow: 0 24px 72px rgba(24,50,44,.13), inset 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter: blur(12px) saturate(1.04);
}
.pain-card h3,
.mini-panel strong,
.symptom-grid strong,
.ribbon-list strong,
.toolbox-grid strong,
.cv-grid strong,
.quick-wa strong,
.contact-mini-card strong { color: #15312a; }
.pain-card p,
.mini-panel p,
.symptom-grid p,
.ribbon-list p,
.toolbox-grid p,
.cv-grid p,
.quick-wa span,
.contact-mini-card p { color: #5b554c; font-weight: 480; }
.pain-card h3 { font-size: clamp(1.55rem, 2.45vw, 2.15rem); line-height: 1.02; }
.pain-card { min-height: 260px; padding: 1.45rem; }
.pain-card > span { box-shadow: 0 0 0 12px rgba(189,128,106,.12), 0 16px 36px rgba(189,128,106,.20); }

.signal-stack { position: relative; }
.signal-panel { padding: 1.2rem 1.25rem; transform: translateZ(0); }
.signal-panel:nth-child(2) { margin-left: clamp(0rem, 4vw, 2rem); }
.signal-panel:nth-child(3) { margin-left: clamp(0rem, 8vw, 4rem); }

.section-offer {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(189,128,106,.16), transparent 23rem),
    radial-gradient(circle at 92% 30%, rgba(154,169,143,.30), transparent 26rem),
    linear-gradient(180deg, #fbf6ee, #efe5d7);
}
.offer-premium {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.2rem);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: clamp(28px, 4vw, 44px);
  background: rgba(255,252,247,.58);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.80);
  backdrop-filter: blur(16px);
}
.offer-copy { padding: clamp(.5rem, 2vw, 1.25rem); }
.offer-copy h2 { max-width: 780px; }
.offer-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.offer-chips span {
  padding: .62rem .82rem;
  border: 1px solid rgba(24,50,44,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #15312a;
  font-weight: 800;
  font-size: .92rem;
}
.offer-ticket {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  border-radius: 32px;
  background: linear-gradient(145deg, #1f4a40, #10241f 68%);
  color: var(--cream-2);
  box-shadow: 0 26px 80px rgba(15,37,32,.26), inset 0 1px 0 rgba(255,255,255,.18);
}
.offer-ticket::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 54%;
  background: radial-gradient(circle at 20% 12%, rgba(255,255,255,.22), transparent 16rem);
  pointer-events: none;
}
.ticket-label { display: block; color: rgba(255,250,243,.72); font-weight: 850; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }
.offer-ticket strong { display: block; margin: .2rem 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 9vw, 6.4rem); line-height: .9; letter-spacing: -.06em; }
.offer-ticket p { color: rgba(255,250,243,.72); margin-bottom: 1.15rem; }
.ticket-link { display: inline-flex; margin-top: .85rem; color: rgba(255,250,243,.86); font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.offer-trauma .offer-ticket { background: linear-gradient(145deg, #203d36, #10241f 68%); }
.offer-pautas .offer-ticket { background: linear-gradient(145deg, #285047, #8c5c4c 120%); }
.offer-pareja .offer-ticket { background: linear-gradient(145deg, #283d37, #6d473c 120%); }
.offer-individual .offer-ticket { background: linear-gradient(145deg, #1b3c35, #192620 80%); }

.ribbon-list,
.symptom-grid,
.toolbox-grid,
.cv-grid,
.philosophy-points,
.map-cards {
  display: grid;
  gap: .95rem;
}
.ribbon-list article,
.symptom-grid article,
.toolbox-grid article,
.cv-grid article,
.philosophy-points article,
.map-cards article,
.contact-mini-card {
  padding: 1.1rem;
  border: 1px solid rgba(24,50,44,.13);
  border-radius: 24px;
  background: var(--glass-readable);
  box-shadow: 0 20px 56px rgba(24,50,44,.11), inset 0 1px 0 rgba(255,255,255,.72);
}
.ribbon-list article { display: grid; grid-template-columns: 46px 1fr; column-gap: .9rem; align-items: start; }
.ribbon-list span,
.map-cards span,
.cv-grid span,
.conflict-loop span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #18322c;
  color: var(--cream-2);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(24,50,44,.17);
}
.ribbon-list p { grid-column: 2; margin: .15rem 0 0; }

.premium-quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid rgba(255,255,255,.64);
  border-radius: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.52), transparent 18rem),
    linear-gradient(145deg, rgba(255,250,243,.86), rgba(230,237,223,.72));
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.78);
}
.premium-quote-card h2 { max-width: 760px; }
.premium-quote-card p { margin-top: 1rem; color: #514b44; font-size: clamp(1.08rem, 2vw, 1.25rem); }
.quote-warm { background: linear-gradient(145deg, rgba(255,250,243,.92), rgba(242,218,193,.70)); }
.quote-pareja { background: linear-gradient(145deg, rgba(255,250,243,.92), rgba(233,202,188,.72)); }
.quote-about { background: linear-gradient(145deg, rgba(255,250,243,.92), rgba(230,237,223,.78)); }

.section-trauma-deep {
  background:
    radial-gradient(circle at 16% 14%, rgba(255,250,243,.10), transparent 22rem),
    radial-gradient(circle at 90% 90%, rgba(154,169,143,.22), transparent 24rem),
    linear-gradient(135deg, #18322c, #0d211d);
}
.trauma-card-layout { display: grid; gap: 1.1rem; align-items: stretch; }
.story-card-premium {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(30px, 5vw, 50px);
  background:
    radial-gradient(circle at 72% 22%, rgba(255,250,243,.14), transparent 18rem),
    radial-gradient(circle at 18% 82%, rgba(154,169,143,.22), transparent 20rem),
    rgba(255,255,255,.06);
  box-shadow: 0 34px 110px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.13);
}
.story-card-premium h2 { color: var(--cream-2); max-width: 760px; }
.story-card-premium p { max-width: 650px; color: rgba(255,250,243,.76); font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
.timeline-soft { display: grid; gap: .85rem; }
.timeline-soft article {
  padding: 1.05rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  color: var(--cream-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.timeline-soft span { display: block; color: rgba(255,250,243,.58); font-weight: 900; letter-spacing: .14em; }
.timeline-soft strong { display: block; color: var(--cream-2); margin: .2rem 0; }
.timeline-soft p { margin: 0; color: rgba(255,250,243,.72); }
.method-orb {
  min-height: 360px;
  position: relative;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,250,243,.74), rgba(230,237,223,.42) 35%, transparent 36%),
    radial-gradient(circle at 30% 26%, rgba(189,128,106,.18), transparent 16rem),
    linear-gradient(145deg, rgba(230,237,223,.86), rgba(255,250,243,.62));
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.72);
}
.method-orb span { position: absolute; padding: .62rem .82rem; border-radius: 999px; background: rgba(255,255,255,.78); color: #15312a; font-weight: 850; box-shadow: 0 16px 42px rgba(24,50,44,.13); }
.method-orb span:nth-child(1) { left: 12%; top: 18%; }
.method-orb span:nth-child(2) { right: 12%; top: 44%; }
.method-orb span:nth-child(3) { left: 28%; bottom: 16%; }

.conflict-loop { display: grid; gap: .85rem; counter-reset: loop; }
.conflict-loop article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .85rem;
  padding: 1.05rem;
  border: 1px solid rgba(24,50,44,.13);
  border-radius: 24px;
  background: rgba(255,252,247,.9);
  box-shadow: 0 20px 56px rgba(24,50,44,.10), inset 0 1px 0 rgba(255,255,255,.75);
}
.conflict-loop p { grid-column: 2; margin: -.25rem 0 0; color: #5b554c; }
.bridge-grid { display: grid; gap: 1rem; align-items: center; }
.bridge-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 34px;
  border: 1px solid rgba(24,50,44,.12);
  background: rgba(255,252,247,.86);
  box-shadow: var(--shadow-soft);
}
.bridge-panel span { color: var(--clay); font-size: .76rem; font-weight: 880; letter-spacing: .14em; text-transform: uppercase; }
.bridge-panel p { color: #5b554c; }
.bridge-line { min-height: 64px; border-radius: 999px; background: linear-gradient(90deg, rgba(189,128,106,.18), rgba(24,50,44,.36), rgba(154,169,143,.22)); box-shadow: 0 20px 60px rgba(24,50,44,.12); }

.inner-contrast { background: linear-gradient(180deg, #fbf6ee, #efe5d7); }
.contrast-grid { display: grid; gap: 1rem; }
.contrast-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.78);
}
.contrast-card span { color: var(--clay); font-weight: 880; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.contrast-card.outside { background: linear-gradient(145deg, rgba(255,252,247,.92), rgba(230,237,223,.64)); }
.contrast-card.inside { background: linear-gradient(145deg, #1f4a40, #10241f); }
.contrast-card.inside h2 { color: var(--cream-2); }
.contrast-card.inside p { color: rgba(255,250,243,.76); }
.contrast-card p { color: #5b554c; font-size: clamp(1.06rem, 2vw, 1.22rem); }
.map-layout { display: grid; gap: 1.4rem; align-items: start; }
.map-cards article { display: grid; grid-template-columns: 48px 1fr; gap: .9rem; }
.map-cards p { grid-column: 2; margin: -.25rem 0 0; color: #5b554c; }

.authority-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.66);
  background: rgba(255,252,247,.75);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.75);
}
.authority-mark {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--deep), var(--deep-2));
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.08em;
  box-shadow: 0 22px 58px rgba(24,50,44,.22);
}
.authority-strip h2 { font-size: clamp(1.85rem, 4.4vw, 3.2rem); }
.authority-strip .lead { margin: .7rem 0 0; }

.section-about-cv { background: linear-gradient(180deg, #fbf6ee, #f6efe6); }
.cv-grid article { display: grid; grid-template-columns: 48px 1fr; gap: .85rem; }
.cv-grid p { grid-column: 2; margin: -.15rem 0 0; }
.philosophy-layout { display: grid; gap: 1rem; }
.compact-service-grid .service-card { min-height: 250px; }
.compact-service-grid .service-card h3 { margin-top: 1.8rem; }

.premium-whatsapp-card { background: rgba(255,252,247,.90); padding: clamp(1.35rem, 3vw, 2rem); }
.premium-whatsapp-card h2 { margin-bottom: 1rem; }
.wa-card-actions { display: grid; gap: .75rem; }
.wa-card-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.wa-card-meta span {
  padding: .55rem .7rem;
  border-radius: 999px;
  background: rgba(230,237,223,.78);
  color: #15312a;
  font-size: .88rem;
  font-weight: 800;
}
.quick-message-premium { background: radial-gradient(circle at 82% 20%, rgba(154,169,143,.24), transparent 24rem), linear-gradient(180deg, #fbf6ee, #f6efe6); }
.premium-quick-grid .quick-wa {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-content: stretch;
  gap: .35rem;
  padding: 1rem 1.05rem;
}
.premium-quick-grid .quick-wa::after { content: "Abrir WhatsApp →"; justify-self: start; margin-top: .3rem; color: var(--clay); font-weight: 900; }
.premium-quick-grid .quick-wa strong { font-size: 1.08rem; }
.contact-mini-card { margin-top: 1rem; }
.contact-form-section .form-card { background: rgba(255,252,247,.88); }

.faq-premium h2 { max-width: 760px; }
.faq-item { background: rgba(255,252,247,.88); border-color: rgba(24,50,44,.14); box-shadow: 0 16px 48px rgba(24,50,44,.08); }
.faq-question { font-size: clamp(1rem, 1.7vw, 1.08rem); }
.faq-answer { color: #5b554c; }

.cta-band {
  background:
    radial-gradient(circle at 92% 8%, rgba(154,169,143,.32), transparent 26rem),
    radial-gradient(circle at 8% 90%, rgba(189,128,106,.18), transparent 24rem),
    linear-gradient(180deg, #fbf6ee, #eadfce) !important;
  color: #15312a;
  border-top: 1px solid rgba(24,50,44,.08);
}
.cta-band h2 { color: #15312a !important; }
.cta-band .lead, .cta-band .small { color: #5b554c !important; }
.cta-band .eyebrow-light { color: var(--clay); }
.cta-band .btn-on-dark { --btn-bg: linear-gradient(135deg, #1f4a40 0%, #102922 58%, #0d211d 100%); --btn-color: var(--cream-2); box-shadow: 0 22px 56px rgba(24,50,44,.24), inset 0 1px 0 rgba(255,255,255,.22); }
.cta-band .btn-secondary-dark { --btn-bg: rgba(255,255,255,.66); --btn-color: var(--deep); border-color: rgba(24,50,44,.16); box-shadow: 0 18px 48px rgba(24,50,44,.13), inset 0 1px 0 rgba(255,255,255,.74); }
.cta-premium-inner {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(255,255,255,.66);
  border-radius: clamp(30px, 5vw, 48px);
  background: rgba(255,252,247,.58);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.78);
}

.footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(154,169,143,.18), transparent 28rem),
    linear-gradient(180deg, #10241f, #091915 100%);
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-logo { filter: none !important; opacity: 1; width: 244px; }
.footer .btn-footer { box-shadow: 0 18px 48px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.20); }

@media (max-width: 719px) {
  .hero-premium h1 { font-size: clamp(2.65rem, 12.2vw, 4rem); }
  .hero-visual { min-height: 300px; border-radius: 30px; }
  .pain-card { min-height: auto; }
  .signal-panel:nth-child(n) { margin-left: 0; }
  .ribbon-list article,
  .cv-grid article,
  .map-cards article,
  .conflict-loop article { grid-template-columns: 1fr; }
  .ribbon-list p,
  .cv-grid p,
  .map-cards p,
  .conflict-loop p { grid-column: auto; margin-top: .15rem; }
  .offer-ticket strong { font-size: 4.2rem; }
  .bridge-line { min-height: 18px; }
  .cta-premium-inner { border-radius: 30px; }
  .authority-strip .btn { width: 100%; }
}

@media (min-width: 780px) {
  .offer-premium { grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); }
  .trauma-card-layout { grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr); }
  .timeline-soft { align-content: stretch; }
  .bridge-grid { grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr); }
  .contrast-grid { grid-template-columns: 1fr 1fr; }
  .map-layout { grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr); }
  .authority-strip { grid-template-columns: auto minmax(0, 1fr) auto; }
  .philosophy-layout { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); }
}

@media (min-width: 1020px) {
  .symptom-grid, .toolbox-grid, .cv-grid, .philosophy-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1320px) {
  .hero-premium h1 { font-size: clamp(3.4rem, 5.2vw, 5.35rem); }
}

/* v5 final polish -------------------------------------------------------- */
:root {
  --v5-ink-strong: #132c26;
  --v5-card: rgba(255, 252, 247, .96);
  --v5-card-solid: #fffbf5;
  --v5-card-border: rgba(24, 50, 44, .20);
  --v5-shadow: 0 26px 76px rgba(15, 37, 32, .15), inset 0 1px 0 rgba(255,255,255,.82);
}
html { scroll-padding-top: 92px; }
body { overflow-x: hidden; }
.site-header { background: rgba(255,250,243,.92); }
.brand img { width: clamp(168px, 18vw, 218px); }
.btn { min-height: 52px; border-color: rgba(24,50,44,.18); }
.btn-primary, .btn-on-dark {
  box-shadow: 0 18px 48px rgba(15,37,32,.24), inset 0 1px 0 rgba(255,255,255,.20);
}
.btn-secondary, .btn-secondary-dark {
  background: rgba(255,255,255,.82);
  color: var(--deep-2);
}
.service-card,
.pain-card,
.step-card,
.statement-card,
.mini-panel,
.glass-panel,
.note-card,
.credential-panel,
.legal-card,
.quick-wa,
.form-card,
.whatsapp-card,
.symptom-grid article,
.ribbon-list article,
.toolbox-grid article,
.cv-grid article,
.philosophy-points article,
.map-cards article,
.conflict-loop article,
.bridge-panel {
  background: var(--v5-card);
  border-color: var(--v5-card-border);
  color: var(--v5-ink-strong);
  box-shadow: var(--v5-shadow);
}
.service-card h3,
.service-card p,
.service-card .card-link,
.pain-card h3,
.pain-card p,
.step-card h3,
.step-card p,
.statement-card h2,
.statement-card p { position: relative; z-index: 1; }
.service-card h3,
.pain-card h3 { color: #102922; text-shadow: 0 1px 0 rgba(255,255,255,.48); }
.service-card p,
.pain-card p,
.step-card p,
.mini-panel p,
.glass-panel p,
.quick-wa span,
.form-card p { color: #4d463d; }
.specialties-showcase {
  background:
    radial-gradient(circle at 14% 16%, rgba(189,128,106,.18), transparent 24rem),
    radial-gradient(circle at 86% 26%, rgba(154,169,143,.28), transparent 26rem),
    linear-gradient(180deg, #fbf4ea, #efe3d4 58%, #f7efe5);
}
.specialties-showcase .section-head {
  padding: clamp(1rem, 3vw, 1.4rem);
  border-radius: 34px;
  background: rgba(255,252,247,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.premium-service-grid { gap: clamp(1rem, 2vw, 1.25rem); }
.premium-service-grid .service-card {
  min-height: 286px;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  background:
    linear-gradient(145deg, rgba(255,252,247,.98), rgba(255,247,238,.92)),
    radial-gradient(circle at 90% 0%, rgba(154,169,143,.20), transparent 14rem);
  transform: translateZ(0);
}
.premium-service-grid .service-card:nth-child(even) { transform: translateY(14px); }
.premium-service-grid .service-card:hover,
.premium-service-grid .service-card:focus-within,
.quick-wa:hover,
.quick-wa:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 34px 92px rgba(15,37,32,.18), inset 0 1px 0 rgba(255,255,255,.86);
}
.service-card span, .step-card span, .ribbon-list span, .map-cards span, .cv-grid span, .conflict-loop span {
  background: linear-gradient(145deg, #24483e, #0e2721);
}
.statement-deep,
.deep-statement,
.contrast-card.inside {
  background:
    radial-gradient(circle at 82% 12%, rgba(154,169,143,.22), transparent 20rem),
    linear-gradient(145deg, #1f493f, #0b1d19 76%) !important;
}
.statement-deep p,
.deep-statement p,
.contrast-card.inside p { color: rgba(255,250,243,.82); }
.section-trauma-deep {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,250,243,.12), transparent 24rem),
    radial-gradient(circle at 90% 82%, rgba(154,169,143,.26), transparent 25rem),
    linear-gradient(135deg, #17332c, #081b17 76%);
}
.trauma-card-layout { gap: clamp(1rem, 2.4vw, 1.5rem); }
.story-card-premium {
  min-height: auto;
  justify-content: center;
  padding: clamp(1.65rem, 4vw, 3rem);
  border-color: rgba(255,250,243,.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 75% 18%, rgba(255,250,243,.13), transparent 17rem);
}
.story-card-premium .eyebrow { margin-bottom: clamp(1rem, 2vw, 1.4rem); }
.story-card-premium h2 { font-size: clamp(2.4rem, 6vw, 5rem); }
.story-card-premium p { margin-top: 1rem; font-size: clamp(1.18rem, 2.2vw, 1.55rem); color: rgba(255,250,243,.86); }
.timeline-soft { gap: .95rem; }
.timeline-soft article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .85rem;
  align-items: start;
  padding: 1.1rem;
  border-color: rgba(255,250,243,.18);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.timeline-soft article span { grid-row: 1 / span 2; margin-top: .12rem; }
.timeline-soft article p { grid-column: 2; }
.method-orb {
  min-height: 330px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,250,243,.86), rgba(230,237,223,.52) 34%, rgba(255,250,243,.24) 35%, transparent 62%),
    linear-gradient(145deg, rgba(230,237,223,.92), rgba(255,250,243,.76));
}
.method-orb::before {
  content: "";
  position: absolute;
  left: 18%; right: 18%; top: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24,50,44,.26), transparent);
  transform: rotate(-12deg);
}
.method-orb span {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(24,50,44,.14);
  color: #102922;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}
.philosophy-points { align-content: stretch; }
.philosophy-points article { min-height: 138px; }
.contact-opening .hero-inner { align-items: center; }
.premium-whatsapp-card { border-color: rgba(24,50,44,.16); }
.wa-card-meta span { background: rgba(230,237,223,.90); border: 1px solid rgba(24,50,44,.10); }
.premium-quick-grid .quick-wa {
  min-height: 132px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,252,247,.98), rgba(246,239,230,.88));
}
.premium-quick-grid .quick-wa strong { color: #102922; }
.premium-quick-grid .quick-wa span { color: #5a5148; font-weight: 650; }
.premium-quick-grid .quick-wa::after { color: #9a5e4b; }
.contact-mini-card { background: rgba(255,252,247,.94); }
.form-status { color: #24483e; font-weight: 800; }
.legal-section { background: linear-gradient(180deg, #fbf6ee, #f1e7d9); }
.legal-grid-dense { gap: 1rem; }
.legal-card { min-height: 190px; }
.legal-card h2 { color: #102922; }
.legal-card p { color: #514a41; }
.legal-card strong { color: #102922; }
.legal-note {
  display: inline-flex;
  margin-top: .6rem;
  padding: .65rem .8rem;
  border-radius: 999px;
  background: rgba(230,237,223,.88);
  color: #15312a !important;
  font-weight: 800;
}
.legal-card-wide { min-height: auto; }
.cookie-table-wrap { width: 100%; overflow-x: auto; margin: .8rem 0; }
.cookie-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .94rem; }
.cookie-table th, .cookie-table td { padding: .75rem; border-bottom: 1px solid rgba(24,50,44,.14); text-align: left; vertical-align: top; }
.cookie-table th { color: #102922; background: rgba(230,237,223,.58); }
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  padding: .85rem clamp(1rem, 3vw, 1.5rem) calc(.85rem + env(safe-area-inset-bottom));
  pointer-events: none;
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner-inner {
  width: min(1080px, 100%);
  margin-inline: auto;
  display: grid;
  gap: .95rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(24,50,44,.18);
  border-radius: 28px;
  background: rgba(255,252,247,.96);
  box-shadow: 0 28px 90px rgba(15,37,32,.22), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px) saturate(1.08);
  pointer-events: auto;
}
.cookie-banner strong { display: block; color: #102922; font-weight: 900; }
.cookie-banner p { margin: .25rem 0 0; color: #4f493f; font-size: .95rem; }
.cookie-banner a { text-decoration: underline; text-underline-offset: 3px; color: #102922; font-weight: 800; }
.cookie-actions, .cookie-modal-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.cookie-actions .btn, .cookie-modal-actions .btn { min-height: 46px; padding: .78rem 1rem; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7,26,22,.54);
  backdrop-filter: blur(8px);
}
.cookie-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100dvh - 2rem));
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 34px;
  background: #fffaf3;
  box-shadow: 0 38px 120px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.8);
}
.cookie-modal-card h2 { font-size: clamp(2rem, 5vw, 3rem); }
.cookie-modal-card p { color: #514a41; }
.cookie-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(24,50,44,.16);
  background: rgba(255,255,255,.78);
  color: #102922;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-options { display: grid; gap: .75rem; margin: 1rem 0 1.2rem; }
.cookie-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .75rem;
  align-items: start;
  padding: .9rem;
  border: 1px solid rgba(24,50,44,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}
.cookie-option input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--deep); }
.cookie-option strong { display: block; color: #102922; }
.cookie-option small { display: block; margin-top: .15rem; color: #5b554c; line-height: 1.35; }
.footer { margin-top: 0; }
.cta-band + .footer { border-top: 8px solid rgba(255,250,243,.82); }
.mobile-sticky-cta { box-shadow: 0 -12px 32px rgba(24,50,44,.10); }
@media (min-width: 780px) {
  .cookie-banner-inner { grid-template-columns: minmax(0, 1fr) auto; padding: 1rem 1.1rem; }
  .legal-grid-dense { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-card-wide { grid-column: 1 / -1; }
}
@media (min-width: 1020px) {
  .legal-grid-dense { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .legal-card-wide { grid-column: span 3; }
  .philosophy-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 719px) {
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 78px; }
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .brand img { width: 154px; }
  .header-inner { min-height: 64px; }
  .hero { padding-top: 2.7rem; padding-bottom: 3.25rem; }
  .hero-premium h1 { font-size: clamp(2.38rem, 11vw, 3.35rem); }
  h2 { font-size: clamp(1.95rem, 8.4vw, 2.72rem); }
  .section { padding: 3.35rem 0; }
  .section-head.centered { text-align: left; justify-items: start; }
  .hero-actions, .offer-actions { gap: .65rem; }
  .proof-row span { min-height: 34px; }
  .premium-service-grid .service-card:nth-child(even),
  .premium-service-grid .service-card:hover,
  .premium-service-grid .service-card:focus-within,
  .quick-wa:hover,
  .quick-wa:focus-within { transform: none; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 1.3rem; }
  .pain-card, .step-card, .statement-card { min-height: auto; }
  .contrast-card { min-height: auto; padding: 1.35rem; border-radius: 30px; }
  .story-card-premium { border-radius: 32px; }
  .timeline-soft article { grid-template-columns: 1fr; }
  .timeline-soft article p { grid-column: auto; }
  .method-orb { min-height: 250px; border-radius: 32px; }
  .method-orb span { font-size: .74rem; padding: .55rem .7rem; }
  .method-orb span:nth-child(1) { left: 7%; top: 16%; }
  .method-orb span:nth-child(2) { right: 7%; top: 44%; }
  .method-orb span:nth-child(3) { left: 20%; bottom: 14%; }
  .offer-premium, .offer-ticket, .premium-quote-card, .cta-premium-inner { border-radius: 28px; }
  .premium-quick-grid .quick-wa { min-height: auto; }
  .cookie-banner { bottom: 74px; padding-inline: .75rem; }
  .cookie-actions, .cookie-modal-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .btn, .cookie-modal-actions .btn { width: 100%; }
  .cookie-modal-card { border-radius: 28px; }
}

/* v5 cookie mobile compact patch */
@supports selector(body:has(*)) {
  body:has(.cookie-banner:not([hidden])) .mobile-sticky-cta { display: none; }
}
@media (max-width: 719px) {
  .cookie-banner { bottom: 0; padding: .65rem .7rem calc(.65rem + env(safe-area-inset-bottom)); }
  .cookie-banner-inner { padding: .82rem; gap: .65rem; border-radius: 24px; }
  .cookie-banner p { font-size: .9rem; line-height: 1.42; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
  .cookie-actions .btn { min-height: 42px; padding: .68rem .75rem; }
  .cookie-actions .btn:last-child { grid-column: 1 / -1; }
}

/* =========================================================
   V12 HERO SYSTEM · SABINA PHOTOS FINAL
   - Desktop: imagen como fondo editorial. Sin caja visual derecha.
   - Desktop: altura contenida, sin forzar 100vh.
   - Mobile: texto → CTA → etiquetas → imagen/tarjeta debajo.
   - Sobre mí: imagen real de Sabina integrada como WebP.
   ========================================================= */

:root {
  --hero-v10-overlay-strong: rgba(255, 250, 243, .99);
  --hero-v10-overlay-mid: rgba(255, 250, 243, .84);
  --hero-v10-overlay-soft: rgba(255, 250, 243, .36);
  --hero-v10-card-bg: rgba(255, 250, 243, .74);
  --hero-v10-card-border: rgba(255, 255, 255, .82);
  --hero-v10-card-shadow: 0 24px 70px rgba(24, 50, 44, .15), inset 0 1px 0 rgba(255,255,255,.78);
}

/* Limpieza común: fuera brillos/cajas heredadas que ensucian el hero */
body main section.hero.hero-home::before,
body main section.hero.hero-pautas::before,
body main section.hero.hero-trauma::before,
body main section.hero.hero-pareja::before,
body main section.hero.hero-individual::before,
body main section.hero.hero-about::before,
body main section.hero.hero-contact::before {
  display: none !important;
  content: none !important;
}

body main section.hero.hero-home,
body main section.hero.hero-pautas,
body main section.hero.hero-trauma,
body main section.hero.hero-pareja,
body main section.hero.hero-individual,
body main section.hero.hero-about,
body main section.hero.hero-contact {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

body main section.hero .hero-visual .visual-orbit,
body main section.hero .hero-visual .visual-thread,
body main section.hero .hero-visual .visual-glass-note,
body main section.hero.hero-about .portrait-mark,
body main section.hero.hero-about .portrait-caption {
  display: none !important;
}

/* Imágenes para tarjetas móviles */
body main section.hero .hero-visual.visual-home { background-image: url('../img/hero-home.webp') !important; background-position: center right !important; }
body main section.hero .hero-visual.visual-pautas { background-image: url('../img/hero-crianza.webp') !important; background-position: center 45% !important; }
body main section.hero .hero-visual.visual-trauma { background-image: url('../img/hero-trauma.webp') !important; background-position: center 48% !important; }
body main section.hero .hero-visual.visual-pareja { background-image: url('../img/hero-pareja.webp') !important; background-position: center 45% !important; }
body main section.hero .hero-visual.visual-individual { background-image: url('../img/hero-individual.webp') !important; background-position: center 45% !important; }

body main section.hero .hero-visual.visual-home,
body main section.hero .hero-visual.visual-pautas,
body main section.hero .hero-visual.visual-trauma,
body main section.hero .hero-visual.visual-pareja,
body main section.hero .hero-visual.visual-individual {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

body main section.hero .hero-visual.visual-home::before,
body main section.hero .hero-visual.visual-pautas::before,
body main section.hero .hero-visual.visual-trauma::before,
body main section.hero .hero-visual.visual-pareja::before,
body main section.hero .hero-visual.visual-individual::before {
  content: '' !important;
  position: absolute !important;
  inset: clamp(.65rem, 1.6vw, 1.15rem) !important;
  z-index: 2 !important;
  border: 1px solid rgba(255,255,255,.62) !important;
  border-radius: clamp(22px, 3vw, 34px) !important;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

/* =====================
   DESKTOP / TABLET: fondo editorial controlado
   ===================== */
@media (min-width: 780px) {
  body main section.hero.hero-home,
  body main section.hero.hero-pautas,
  body main section.hero.hero-trauma,
  body main section.hero.hero-pareja,
  body main section.hero.hero-individual,
  body main section.hero.hero-contact {
    display: block !important;
    min-height: 0 !important;
    padding-top: clamp(4.25rem, 5.6vw, 5.9rem) !important;
    padding-bottom: clamp(3.55rem, 4.8vw, 4.9rem) !important;
    background-repeat: no-repeat !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }

  body main section.hero.hero-about {
    display: block !important;
    min-height: 0 !important;
    padding-top: clamp(4.25rem, 5.6vw, 5.9rem) !important;
    padding-bottom: clamp(3.55rem, 4.8vw, 4.9rem) !important;
    background-repeat: no-repeat !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.98) 34%,
        rgba(255,250,243,.86) 55%,
        rgba(255,250,243,.42) 76%,
        rgba(255,250,243,.06) 100%),
      url('../img/hero-sobre.webp') !important;
  }

  body main section.hero.hero-home {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 29%,
        var(--hero-v10-overlay-mid) 49%,
        var(--hero-v10-overlay-soft) 69%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-home.webp') !important;
    background-position: center, center right !important;
  }

  body main section.hero.hero-pautas {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 30%,
        rgba(255,250,243,.83) 50%,
        rgba(255,250,243,.33) 70%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-crianza.webp') !important;
  }

  body main section.hero.hero-trauma {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 30%,
        rgba(255,250,243,.82) 50%,
        rgba(255,250,243,.31) 70%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-trauma.webp') !important;
  }

  body main section.hero.hero-pareja {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 30%,
        rgba(255,250,243,.80) 50%,
        rgba(255,250,243,.30) 70%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-pareja.webp') !important;
  }

  body main section.hero.hero-individual {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 30%,
        rgba(255,250,243,.82) 50%,
        rgba(255,250,243,.30) 70%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-individual.webp') !important;
  }

  body main section.hero.hero-contact {
    background-image:
      linear-gradient(90deg,
        var(--hero-v10-overlay-strong) 0%,
        rgba(255,250,243,.97) 36%,
        rgba(255,250,243,.84) 58%,
        rgba(255,250,243,.40) 79%,
        rgba(255,250,243,.06) 100%),
      url('../img/hero-contacto.webp') !important;
  }

  /* Desktop: sin tarjeta visual. La imagen está en el fondo del hero. */
  body main section.hero.hero-home > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pautas > .container.hero-inner > .hero-visual,
  body main section.hero.hero-trauma > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pareja > .container.hero-inner > .hero-visual,
  body main section.hero.hero-individual > .container.hero-inner > .hero-visual,
  body main section.hero.hero-about > .container.hero-inner > .portrait-card.hero-portrait {
    display: none !important;
  }

  body main section.hero.hero-home > .container.hero-inner,
  body main section.hero.hero-pautas > .container.hero-inner,
  body main section.hero.hero-trauma > .container.hero-inner,
  body main section.hero.hero-pareja > .container.hero-inner,
  body main section.hero.hero-individual > .container.hero-inner,
  body main section.hero.hero-about > .container.hero-inner {
    display: block !important;
    width: min(var(--max), calc(100% - 48px)) !important;
    margin-inline: auto !important;
  }

  body main section.hero.hero-home .hero-copy,
  body main section.hero.hero-pautas .hero-copy,
  body main section.hero.hero-trauma .hero-copy,
  body main section.hero.hero-pareja .hero-copy,
  body main section.hero.hero-individual .hero-copy,
  body main section.hero.hero-about .hero-copy {
    max-width: min(690px, 54vw) !important;
  }

  body main section.hero.hero-home h1,
  body main section.hero.hero-pautas h1,
  body main section.hero.hero-trauma h1,
  body main section.hero.hero-pareja h1,
  body main section.hero.hero-individual h1,
  body main section.hero.hero-about h1,
  body main section.hero.hero-contact h1 {
    font-size: clamp(3rem, 4.65vw, 4.75rem) !important;
    line-height: 1.02 !important;
  }

  body main section.hero.hero-home .lead,
  body main section.hero.hero-pautas .lead,
  body main section.hero.hero-trauma .lead,
  body main section.hero.hero-pareja .lead,
  body main section.hero.hero-individual .lead,
  body main section.hero.hero-about .lead,
  body main section.hero.hero-contact .lead {
    max-width: 650px !important;
  }

  /* Home: las puertas vuelven debajo, no como columna lateral del hero */
  body main section.hero.hero-home > .container.hero-peek {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(.85rem, 1.4vw, 1.1rem) !important;
    width: min(var(--max), calc(100% - 48px)) !important;
    margin: clamp(2rem, 4vw, 3rem) auto 0 !important;
  }

  body main section.hero.hero-home > .container.hero-peek a {
    min-height: 106px !important;
  }

  body main section.hero.hero-contact > .container.contact-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: clamp(2rem, 5vw, 4.4rem) !important;
    align-items: center !important;
    width: min(var(--max), calc(100% - 48px)) !important;
    margin-inline: auto !important;
  }

  body main section.hero.hero-contact > .container.contact-hero-grid > :first-child {
    max-width: 690px !important;
  }

  body main section.hero.hero-contact .premium-whatsapp-card {
    background: rgba(255,250,243,.84) !important;
    border-color: rgba(255,255,255,.74) !important;
    box-shadow: 0 26px 76px rgba(15,37,32,.16), inset 0 1px 0 rgba(255,255,255,.82) !important;
    backdrop-filter: blur(16px) saturate(1.05) !important;
  }
}

/* =====================
   MOBILE: texto → CTA → etiquetas → imagen debajo
   ===================== */
@media (max-width: 719px) {
  body main section.hero.hero-home,
  body main section.hero.hero-pautas,
  body main section.hero.hero-trauma,
  body main section.hero.hero-pareja,
  body main section.hero.hero-individual,
  body main section.hero.hero-about,
  body main section.hero.hero-contact {
    min-height: auto !important;
    display: block !important;
    padding-top: 2.55rem !important;
    padding-bottom: 3.05rem !important;
    background-image:
      radial-gradient(circle at 86% 0%, rgba(154,169,143,.18), transparent 16rem),
      linear-gradient(180deg, #fffaf3 0%, #f6efe6 100%) !important;
    background-size: auto, auto !important;
    background-position: center !important;
  }

  body main section.hero.hero-home > .container.hero-inner,
  body main section.hero.hero-pautas > .container.hero-inner,
  body main section.hero.hero-trauma > .container.hero-inner,
  body main section.hero.hero-pareja > .container.hero-inner,
  body main section.hero.hero-individual > .container.hero-inner,
  body main section.hero.hero-about > .container.hero-inner,
  body main section.hero.hero-contact > .container.contact-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.15rem !important;
  }

  body main section.hero.hero-home > .container.hero-inner > .hero-copy,
  body main section.hero.hero-pautas > .container.hero-inner > .hero-copy,
  body main section.hero.hero-trauma > .container.hero-inner > .hero-copy,
  body main section.hero.hero-pareja > .container.hero-inner > .hero-copy,
  body main section.hero.hero-individual > .container.hero-inner > .hero-copy,
  body main section.hero.hero-about > .container.hero-inner > .hero-copy,
  body main section.hero.hero-contact > .container.contact-hero-grid > :first-child {
    order: 1 !important;
    max-width: none !important;
    width: 100% !important;
  }

  body main section.hero.hero-home > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pautas > .container.hero-inner > .hero-visual,
  body main section.hero.hero-trauma > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pareja > .container.hero-inner > .hero-visual,
  body main section.hero.hero-individual > .container.hero-inner > .hero-visual,
  body main section.hero.hero-contact > .container.contact-hero-grid > .premium-whatsapp-card {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    margin-top: .05rem !important;
  }

  /* Sobre mí: imagen real de Sabina debajo del texto en móvil */
  body main section.hero.hero-about > .container.hero-inner > .portrait-card.hero-portrait {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    min-height: clamp(255px, 66vw, 340px) !important;
    margin-top: .05rem !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    border: 1px solid var(--hero-v10-card-border) !important;
    border-radius: 30px !important;
    background-image: url('../img/hero-sobre.webp') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center 38% !important;
    box-shadow: var(--hero-v10-card-shadow) !important;
  }

  body main section.hero.hero-about > .container.hero-inner > .portrait-card.hero-portrait::before {
    content: '' !important;
    position: absolute !important;
    inset: clamp(.65rem, 1.6vw, 1.15rem) !important;
    z-index: 2 !important;
    border: 1px solid rgba(255,255,255,.62) !important;
    border-radius: 24px !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body main section.hero.hero-home > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pautas > .container.hero-inner > .hero-visual,
  body main section.hero.hero-trauma > .container.hero-inner > .hero-visual,
  body main section.hero.hero-pareja > .container.hero-inner > .hero-visual,
  body main section.hero.hero-individual > .container.hero-inner > .hero-visual {
    min-height: clamp(235px, 61vw, 315px) !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    border: 1px solid var(--hero-v10-card-border) !important;
    border-radius: 30px !important;
    background-color: var(--hero-v10-card-bg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    box-shadow: var(--hero-v10-card-shadow) !important;
  }

  body main section.hero.hero-home .proof-row,
  body main section.hero.hero-pautas .proof-row,
  body main section.hero.hero-trauma .proof-row,
  body main section.hero.hero-pareja .proof-row,
  body main section.hero.hero-individual .proof-row,
  body main section.hero.hero-contact .proof-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .55rem !important;
    margin-bottom: 0 !important;
  }

  body main section.hero.hero-home .proof-row span,
  body main section.hero.hero-pautas .proof-row span,
  body main section.hero.hero-trauma .proof-row span,
  body main section.hero.hero-pareja .proof-row span,
  body main section.hero.hero-individual .proof-row span,
  body main section.hero.hero-contact .proof-row span {
    width: 100% !important;
    justify-content: center !important;
    background: rgba(255,255,255,.76) !important;
  }

  body main section.hero.hero-home h1,
  body main section.hero.hero-pautas h1,
  body main section.hero.hero-trauma h1,
  body main section.hero.hero-pareja h1,
  body main section.hero.hero-individual h1,
  body main section.hero.hero-about h1,
  body main section.hero.hero-contact h1 {
    font-size: clamp(2.35rem, 10.7vw, 3.45rem) !important;
    line-height: 1.01 !important;
  }

  body main section.hero.hero-home .lead,
  body main section.hero.hero-pautas .lead,
  body main section.hero.hero-trauma .lead,
  body main section.hero.hero-pareja .lead,
  body main section.hero.hero-individual .lead,
  body main section.hero.hero-about .lead,
  body main section.hero.hero-contact .lead {
    font-size: 1.03rem !important;
    line-height: 1.52 !important;
  }

  body main section.hero.hero-contact .premium-whatsapp-card {
    border-radius: 30px !important;
    background:
      linear-gradient(145deg, rgba(255,252,247,.97), rgba(246,239,230,.90)),
      radial-gradient(circle at 90% 12%, rgba(154,169,143,.20), transparent 18rem) !important;
    border-color: rgba(24,50,44,.16) !important;
    box-shadow: 0 24px 64px rgba(15,37,32,.14), inset 0 1px 0 rgba(255,255,255,.82) !important;
  }

  body main section.hero.hero-contact .wa-card-meta {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body main section.hero.hero-contact .wa-card-meta span {
    justify-content: center !important;
    text-align: center !important;
  }
}


/* =========================================================
   V13 IMPOLUTO · HEROES + FOTOS SABINA + HEADER
   - Home mobile usa el hero de sillón sin Sabina
   - Home abajo incluye segunda foto de Sabina
   - Sobre mí usa la foto generada sin cortar cabeza
   - Header con nombre textual más grande en desktop y móvil
   ========================================================= */

/* Header / marca: sustituye el logo completo pequeño por mark + texto real */
.site-header .header-inner {
  gap: clamp(.8rem, 1.6vw, 1.35rem) !important;
}
.brand.brand-rich,
.mobile-menu-top .menu-mark {
  display: inline-flex !important;
  align-items: center !important;
  gap: .68rem !important;
  min-width: 0 !important;
}
.brand.brand-rich .brand-symbol,
.mobile-menu-top .menu-mark img {
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 auto !important;
  filter: drop-shadow(0 10px 18px rgba(24,50,44,.12));
}
.brand-wordmark,
.menu-wordmark {
  display: grid !important;
  gap: .06rem !important;
  line-height: 1 !important;
  min-width: 0 !important;
}
.brand-wordmark strong,
.menu-wordmark strong {
  display: block !important;
  color: var(--deep-2) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.28rem, .92rem + .75vw, 1.82rem) !important;
  line-height: .95 !important;
  letter-spacing: -.035em !important;
  white-space: nowrap !important;
}
.brand-wordmark small,
.menu-wordmark small {
  display: block !important;
  color: var(--deep) !important;
  font-size: .62rem !important;
  font-weight: 900 !important;
  letter-spacing: .24em !important;
  white-space: nowrap !important;
}
@media (min-width: 1120px) {
  .header-inner { min-height: 84px !important; }
  .brand.brand-rich .brand-symbol { width: 60px !important; height: 60px !important; }
  .desktop-nav { gap: .06rem !important; }
  .desktop-nav a { padding-inline: .62rem !important; font-size: .94rem !important; }
}
@media (max-width: 719px) {
  .header-inner { min-height: 70px !important; }
  .brand.brand-rich { gap: .52rem !important; }
  .brand.brand-rich .brand-symbol { width: 48px !important; height: 48px !important; }
  .brand-wordmark strong { font-size: 1.15rem !important; }
  .brand-wordmark small { font-size: .50rem !important; letter-spacing: .20em !important; }
  .mobile-menu-top .menu-mark img { width: 52px !important; height: 52px !important; }
  .menu-wordmark strong { font-size: 1.24rem !important; }
}

/* Desktop: todos los heroes son fondos editoriales contenidos, sin caja lateral */
@media (min-width: 720px) {
  body main section.hero.hero-home,
  body main section.hero.hero-pautas,
  body main section.hero.hero-trauma,
  body main section.hero.hero-pareja,
  body main section.hero.hero-individual,
  body main section.hero.hero-about {
    min-height: clamp(520px, 66vh, 660px) !important;
    padding-top: clamp(5.8rem, 7vw, 7.2rem) !important;
    padding-bottom: clamp(4.6rem, 6vw, 5.9rem) !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
  }

  body main section.hero.hero-home {
    background-image:
      linear-gradient(90deg,
        rgba(255,250,243,.99) 0%,
        rgba(255,250,243,.96) 34%,
        rgba(255,250,243,.75) 55%,
        rgba(255,250,243,.20) 78%,
        rgba(255,250,243,0) 100%),
      url('../img/hero-home.webp') !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }
  body main section.hero.hero-pautas {
    background-image:
      linear-gradient(90deg, rgba(255,250,243,.98) 0%, rgba(255,250,243,.93) 38%, rgba(255,250,243,.55) 62%, rgba(255,250,243,.04) 100%),
      url('../img/hero-crianza.webp') !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }
  body main section.hero.hero-trauma {
    background-image:
      linear-gradient(90deg, rgba(255,250,243,.98) 0%, rgba(255,250,243,.93) 38%, rgba(255,250,243,.55) 62%, rgba(255,250,243,.04) 100%),
      url('../img/hero-trauma.webp') !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }
  body main section.hero.hero-pareja {
    background-image:
      linear-gradient(90deg, rgba(255,250,243,.98) 0%, rgba(255,250,243,.93) 38%, rgba(255,250,243,.55) 62%, rgba(255,250,243,.04) 100%),
      url('../img/hero-pareja.webp') !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }
  body main section.hero.hero-individual {
    background-image:
      linear-gradient(90deg, rgba(255,250,243,.98) 0%, rgba(255,250,243,.93) 38%, rgba(255,250,243,.55) 62%, rgba(255,250,243,.04) 100%),
      url('../img/hero-individual.webp') !important;
    background-size: cover, cover !important;
    background-position: center, center right !important;
  }
  body main section.hero.hero-about {
    background-image:
      linear-gradient(90deg,
        rgba(255,250,243,.995) 0%,
        rgba(255,250,243,.985) 36%,
        rgba(255,250,243,.80) 55%,
        rgba(255,250,243,.34) 73%,
        rgba(255,250,243,.02) 100%),
      url('../img/hero-sobre.webp') !important;
    background-size: 100% 100%, auto 93% !important;
    background-position: center, right 5.2% bottom !important;
  }

  body main section.hero.hero-home > .container.hero-inner,
  body main section.hero.hero-pautas > .container.hero-inner,
  body main section.hero.hero-trauma > .container.hero-inner,
  body main section.hero.hero-pareja > .container.hero-inner,
  body main section.hero.hero-individual > .container.hero-inner,
  body main section.hero.hero-about > .container.hero-inner {
    display: block !important;
  }
  body main section.hero.hero-home .hero-copy,
  body main section.hero.hero-pautas .hero-copy,
  body main section.hero.hero-trauma .hero-copy,
  body main section.hero.hero-pareja .hero-copy,
  body main section.hero.hero-individual .hero-copy,
  body main section.hero.hero-about .hero-copy {
    width: min(710px, 57vw) !important;
    max-width: 710px !important;
  }

  body main section.hero.hero-home .hero-visual,
  body main section.hero.hero-pautas .hero-visual,
  body main section.hero.hero-trauma .hero-visual,
  body main section.hero.hero-pareja .hero-visual,
  body main section.hero.hero-individual .hero-visual,
  body main section.hero.hero-about .portrait-card,
  body main section.hero.hero-about .portrait-photo-card {
    display: none !important;
  }

  body main section.hero.hero-home .hero-peek {
    margin-top: clamp(2rem, 4vw, 3.2rem) !important;
  }
}

/* Home: sección inferior con la segunda foto de Sabina */
.home-about-sabina .split {
  align-items: center !important;
}
.sabina-photo-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: clamp(390px, 52vw, 560px) !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.76) !important;
  border-radius: clamp(30px, 4vw, 44px) !important;
  background: rgba(255,250,243,.72) !important;
  box-shadow: 0 34px 110px rgba(24,50,44,.18), inset 0 1px 0 rgba(255,255,255,.78) !important;
  isolation: isolate !important;
}
.sabina-photo-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 1rem !important;
  z-index: 2 !important;
  border: 1px solid rgba(255,255,255,.62) !important;
  border-radius: clamp(22px, 3vw, 34px) !important;
  pointer-events: none !important;
}
.sabina-photo-card img {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center 18% !important;
}
.sabina-photo-card figcaption {
  position: absolute !important;
  left: clamp(1rem, 2vw, 1.35rem) !important;
  right: clamp(1rem, 2vw, 1.35rem) !important;
  bottom: clamp(1rem, 2vw, 1.35rem) !important;
  z-index: 3 !important;
  padding: .95rem 1rem !important;
  border: 1px solid rgba(255,255,255,.68) !important;
  border-radius: 22px !important;
  background: rgba(255,250,243,.86) !important;
  box-shadow: 0 18px 54px rgba(24,50,44,.13), inset 0 1px 0 rgba(255,255,255,.76) !important;
  backdrop-filter: blur(14px) saturate(1.04) !important;
}
.sabina-photo-card figcaption strong { display:block !important; color:var(--deep-2) !important; font-weight:900 !important; }
.sabina-photo-card figcaption span { display:block !important; color:#5b554c !important; }

/* Mobile: orden limpio texto → CTA → etiquetas → foto. Home usa sillón SIN Sabina. */
@media (max-width: 719px) {
  body main section.hero.hero-home,
  body main section.hero.hero-pautas,
  body main section.hero.hero-trauma,
  body main section.hero.hero-pareja,
  body main section.hero.hero-individual,
  body main section.hero.hero-about,
  body main section.hero.hero-contact {
    min-height: auto !important;
    padding-top: 3.25rem !important;
    padding-bottom: 3.3rem !important;
    background-image: linear-gradient(180deg, #fffaf3 0%, #f6efe6 100%) !important;
    background-size: auto !important;
    background-position: center !important;
    overflow: hidden !important;
  }
  body main section.hero.hero-home > .container.hero-inner,
  body main section.hero.hero-pautas > .container.hero-inner,
  body main section.hero.hero-trauma > .container.hero-inner,
  body main section.hero.hero-pareja > .container.hero-inner,
  body main section.hero.hero-individual > .container.hero-inner,
  body main section.hero.hero-about > .container.hero-inner,
  body main section.hero.hero-contact > .container.contact-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.05rem !important;
  }
  body main section.hero .hero-copy,
  body main section.hero.hero-contact > .container.contact-hero-grid > :first-child {
    order: 1 !important;
    max-width: none !important;
    width: 100% !important;
  }
  body main section.hero h1 {
    font-size: clamp(2.35rem, 10.7vw, 3.45rem) !important;
    line-height: 1.01 !important;
  }

  body main section.hero.hero-home .hero-visual,
  body main section.hero.hero-pautas .hero-visual,
  body main section.hero.hero-trauma .hero-visual,
  body main section.hero.hero-pareja .hero-visual,
  body main section.hero.hero-individual .hero-visual {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    min-height: clamp(255px, 68vw, 350px) !important;
    margin-top: .25rem !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255,255,255,.78) !important;
    box-shadow: 0 24px 70px rgba(24,50,44,.16), inset 0 1px 0 rgba(255,255,255,.82) !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
  }
  body main section.hero.hero-home .hero-visual {
    background-image: url('../img/hero-home.webp') !important;
    background-position: center right !important;
  }
  body main section.hero.hero-pautas .hero-visual { background-image: url('../img/hero-crianza.webp') !important; }
  body main section.hero.hero-trauma .hero-visual { background-image: url('../img/hero-trauma.webp') !important; }
  body main section.hero.hero-pareja .hero-visual { background-image: url('../img/hero-pareja.webp') !important; }
  body main section.hero.hero-individual .hero-visual { background-image: url('../img/hero-individual.webp') !important; }

  body main section.hero .hero-visual > *,
  body main section.hero .hero-visual::before,
  body main section.hero .hero-visual::after {
    display: none !important;
    content: none !important;
  }
  body main section.hero.hero-home .hero-peek {
    margin-top: 1rem !important;
  }

  /* Sobre mí móvil: foto generada debajo del CTA, sin cortar cabeza */
  body main section.hero.hero-about .portrait-card,
  body main section.hero.hero-about .portrait-photo-card {
    order: 2 !important;
    display: block !important;
    position: relative !important;
    width: 100% !important;
    min-height: clamp(350px, 94vw, 470px) !important;
    margin: .35rem 0 0 !important;
    padding: 0 !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255,255,255,.78) !important;
    background: linear-gradient(180deg, rgba(255,250,243,.98), rgba(246,239,230,.90)) !important;
    box-shadow: 0 24px 70px rgba(24,50,44,.16), inset 0 1px 0 rgba(255,255,255,.82) !important;
    overflow: hidden !important;
  }
  body main section.hero.hero-about .portrait-photo-card img {
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
  body main section.hero.hero-about .portrait-mark,
  body main section.hero.hero-about .portrait-caption,
  body main section.hero.hero-about .portrait-photo-card::before {
    display: none !important;
    content: none !important;
  }

  .home-about-sabina .split {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.1rem !important;
  }
  .home-about-sabina .sabina-home-copy { order: 1 !important; }
  .home-about-sabina .sabina-photo-card {
    order: 2 !important;
    min-height: clamp(360px, 94vw, 480px) !important;
  }
  .home-about-sabina .sabina-photo-card img {
    object-position: center 14% !important;
  }
}

/* END V13 IMPOLUTO */



/* =========================================================
   V14 HOME HERO DESKTOP/MOBILE SPLIT
   - Desktop Home: foto real de Sabina sentada como fondo editorial
   - Mobile Home: imagen del sillón vacío dentro de la tarjeta
   ========================================================= */

@media (min-width: 720px) {
  body main section.hero.hero-home {
    min-height: clamp(540px, 66vh, 680px) !important;
    padding-top: clamp(5.9rem, 7vw, 7.3rem) !important;
    padding-bottom: clamp(4.6rem, 6vw, 5.9rem) !important;
    background-image:
      linear-gradient(90deg,
        rgba(255,250,243,1) 0%,
        rgba(255,250,243,.985) 33%,
        rgba(255,250,243,.84) 52%,
        rgba(255,250,243,.40) 70%,
        rgba(255,250,243,.04) 100%),
      url('../img/sabina-benito-home.webp') !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100%, auto 96% !important;
    background-position: center, right 6.5% bottom !important;
    overflow: hidden !important;
  }

  body main section.hero.hero-home > .container.hero-inner {
    display: block !important;
  }

  body main section.hero.hero-home .hero-copy {
    width: min(710px, 56vw) !important;
    max-width: 710px !important;
  }

  body main section.hero.hero-home .hero-visual {
    display: none !important;
  }

  body main section.hero.hero-home .hero-peek {
    margin-top: clamp(2rem, 4vw, 3.15rem) !important;
  }
}

@media (max-width: 719px) {
  body main section.hero.hero-home {
    background-image: linear-gradient(180deg, #fffaf3 0%, #f6efe6 100%) !important;
    min-height: auto !important;
    padding-top: 3.25rem !important;
    padding-bottom: 3.35rem !important;
  }

  body main section.hero.hero-home > .container.hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.05rem !important;
  }

  body main section.hero.hero-home .hero-copy {
    order: 1 !important;
    width: 100% !important;
    max-width: none !important;
  }

  body main section.hero.hero-home .hero-visual {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    min-height: clamp(255px, 68vw, 350px) !important;
    margin-top: .25rem !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255,255,255,.78) !important;
    box-shadow: 0 24px 70px rgba(24,50,44,.16), inset 0 1px 0 rgba(255,255,255,.82) !important;
    overflow: hidden !important;
    background-image: url('../img/hero-home-sofa.webp') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center right !important;
  }

  body main section.hero.hero-home .hero-visual > *,
  body main section.hero.hero-home .hero-visual::before,
  body main section.hero.hero-home .hero-visual::after {
    display: none !important;
    content: none !important;
  }
}

/* END V14 HOME HERO DESKTOP/MOBILE SPLIT */


/* =========================================================
   V15 MOBILE MENU + HOME MOBILE HERO FIT
   - CTA corto en menú móvil para que quepa en una línea.
   - Hero móvil de Home con sillón vacío encajado 16:9 dentro del marco.
   ========================================================= */

.mobile-menu-cta .btn-primary.full {
  white-space: nowrap !important;
  font-size: clamp(.96rem, 3.9vw, 1.04rem) !important;
  padding-inline: .82rem !important;
  letter-spacing: -0.018em !important;
}

@media (max-width: 719px) {
  body main section.hero.hero-home .hero-visual {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    margin-top: .15rem !important;
    border-radius: 30px !important;
    background-color: #f6efe6 !important;
    background-image: url('../img/hero-home-sofa.webp') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  body main section.hero.hero-home .hero-visual > *,
  body main section.hero.hero-home .hero-visual::before,
  body main section.hero.hero-home .hero-visual::after {
    display: none !important;
    content: none !important;
  }
}

/* END V15 MOBILE MENU + HOME MOBILE HERO FIT */

/* =========================================================
   V16 READY DEPLOY · HOME MOBILE SOFA FINAL CROP
   Imagen móvil recortada específica para llenar el marco sin aire lateral.
   ========================================================= */
@media (max-width: 719px) {
  body main section.hero.hero-home .hero-visual,
  body main section.hero.hero-home .hero-visual.visual-home {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    margin-top: 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 1.9rem !important;
    background-image: url("../img/hero-home-sofa-mobile.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f6efe6 !important;
  }

  body main section.hero.hero-home .hero-visual::before,
  body main section.hero.hero-home .hero-visual::after {
    display: none !important;
    content: none !important;
  }

  body main section.hero.hero-home .hero-visual img,
  body main section.hero.hero-home .hero-visual picture,
  body main section.hero.hero-home .hero-visual .visual-orbit,
  body main section.hero.hero-home .hero-visual .visual-thread,
  body main section.hero.hero-home .hero-visual .visual-glass-note {
    display: none !important;
  }
}
