/* ============================================================
   Cambios de Vida — sistema visual "Brote"
   Verde bosque + verde brote (logo) + arena cálida
   ============================================================ */
:root {
  --forest-900: #0c261f;
  --forest: #12352b;
  --forest-700: #1d4a3c;
  --green: #247a36;         /* botones y enlaces: AA sobre blanco */
  --green-600: #1c652c;
  --lime: #8edb3c;          /* verde del logo, solo sobre oscuro */
  --lime-soft: #e3f5cf;
  --sand: #f6f0e5;
  --sand-2: #ece2d0;
  --clay: #a8845b;
  --paper: #fffdf8;
  --ink: #17261f;
  --muted: #56655d;
  --line: #e2dccf;
  --wa: #25d366;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 12px;
  --r: 22px;
  --r-lg: 34px;
  --shadow: 0 1px 2px rgba(18, 53, 43, .06), 0 12px 32px -12px rgba(18, 53, 43, .18);
  --shadow-lg: 0 30px 70px -30px rgba(12, 38, 31, .45);
  --wrap: 1200px;
  --pad: clamp(16px, 4vw, 40px);
  --sec: clamp(72px, 10vw, 128px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 clamp(16px, 1.05vw + 12px, 18px)/1.65 var(--sans);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -.015em; margin: 0 0 .5em; color: var(--forest); }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--green); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.center { text-align: center; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

/* ---------- tipografía utilitaria ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em; margin: 0 0 1rem;
  font: 600 .78rem/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: currentColor; opacity: .7; }
.eyebrow--lime { color: var(--lime); }
.lead { font-size: clamp(1.05rem, .6vw + .9rem, 1.22rem); color: var(--muted); max-width: 60ch; }
.head { margin-bottom: clamp(32px, 5vw, 56px); }
.head h2 { font-size: clamp(2rem, 3.2vw + 1rem, 3.3rem); max-width: 18ch; }
.head--center { text-align: center; }
.head--center h2, .head--center .lead { margin-inline: auto; }
.head--light h2, .head--light .lead { color: #fff; }
.head--light .lead { color: rgba(255, 255, 255, .72); }
.head--light h2 em { color: var(--lime); }
.head--light .eyebrow { color: var(--lime); }
.prose p { color: var(--muted); }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; text-decoration: none; }
.link-arrow .ico { transition: transform .3s var(--ease); }
.link-arrow:hover .ico { transform: translateX(5px); }

/* ---------- botones ---------- */
.btn {
  --bg: var(--green); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: .8em 1.5em; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--bg); color: var(--fg); font: 600 1rem/1.2 var(--sans); text-decoration: none;
  overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn::after { /* brillo que cruza al pasar el mouse */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(18, 53, 43, .55); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--green); }
.btn--primary:hover { --bg: var(--green-600); }
.btn--wa { --bg: var(--green); }
.btn--ghost { --bg: transparent; --fg: var(--forest); box-shadow: inset 0 0 0 1.5px var(--forest); }
.btn--ghost:hover { --bg: var(--forest); --fg: #fff; }
.btn--sm { min-height: 44px; padding: .6em 1.15em; font-size: .94rem; }
.btn--block { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.actions--center { justify-content: center; }
.actions--light .btn--wa, .cta .btn--wa { --bg: var(--lime); --fg: var(--forest-900); }
.actions--light .btn--wa:hover, .cta .btn--wa:hover { --bg: #a3e862; }
.actions--light .btn--ghost, .cta .btn--ghost { --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45); }
.actions--light .btn--ghost:hover, .cta .btn--ghost:hover { --bg: #fff; --fg: var(--forest); }

/* ---------- topbar + nav ---------- */
.topbar { background: var(--forest-900); color: rgba(255, 255, 255, .78); font-size: .84rem; }
.topbar__in { display: flex; align-items: center; gap: 14px; min-height: 38px; }
.topbar__live { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; }
.topbar__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(142, 219, 60, .7); animation: pulse 2s infinite; }
.topbar__tel { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); font-weight: 600; text-decoration: none; }
.topbar__loc { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(142, 219, 60, 0); } 100% { box-shadow: 0 0 0 0 rgba(142, 219, 60, 0); } }

.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 248, .86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(18, 53, 43, .4); }
.nav__in { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.nav__logo img { width: 158px; height: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__menu a { position: relative; padding: 10px 14px; color: var(--ink); font-weight: 500; font-size: .98rem; text-decoration: none; border-radius: 999px; transition: background .25s, color .25s; }
.nav__menu a:hover { background: var(--sand); }
.nav__menu a[aria-current="page"] { color: var(--green); }
.nav__menu a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--lime); }
.nav__call { display: none !important; }
.nav__burger { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--sand); color: var(--forest); cursor: pointer; }
.nav__burger .ico { width: 24px; height: 24px; margin: auto; }

/* ---------- hero (inicio) ---------- */
.hero { position: relative; overflow: hidden; background: var(--forest); color: #fff; padding: clamp(48px, 7vw, 96px) 0 0; }
.hero__glow { position: absolute; inset: -30% -10% auto auto; width: 70vw; height: 70vw; background: radial-gradient(circle, rgba(142, 219, 60, .22), transparent 60%); pointer-events: none; }
.hero::after { /* grano de papel muy sutil */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 4px 4px;
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 4.6vw + 1rem, 5rem); line-height: 1.02; margin-bottom: .45em; }
.hero h1 .eyebrow { display: flex; margin-bottom: 1.4rem; font-family: var(--sans); letter-spacing: .14em; }
.hero h1 em { display: block; color: var(--lime); }
.hero .lead { color: rgba(255, 255, 255, .78); }
.hero__micro { display: flex; align-items: center; gap: 8px; margin: 1.1rem 0 0; font-size: .9rem; color: rgba(255, 255, 255, .62); }
.hero__media { position: relative; padding: 20px 0 60px; }
.hero__img { margin: 0; aspect-ratio: 4/4.4; border-radius: 58% 42% 46% 54% / 44% 50% 50% 56%; overflow: hidden; box-shadow: var(--shadow-lg); animation: morph 16s ease-in-out infinite alternate; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 60%; transform: scale(1.06); }
@keyframes morph { to { border-radius: 44% 56% 58% 42% / 54% 42% 58% 46%; } }
.hero__quote {
  position: absolute; left: -8%; bottom: 10px; max-width: 330px; margin: 0; padding: 22px 24px;
  background: rgba(255, 253, 248, .94); color: var(--forest); border-radius: var(--r);
  box-shadow: var(--shadow-lg); font: italic 400 1.02rem/1.45 var(--serif);
}
.hero__quote .ico { width: 26px; height: 26px; color: var(--green); margin-bottom: 6px; }
.hero__quote p { margin: 0; }
.hero__badge {
  position: absolute; top: 4%; right: 0; width: 112px; height: 112px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; background: var(--lime); color: var(--forest-900);
  box-shadow: 0 0 0 8px rgba(142, 219, 60, .18); animation: float 6s ease-in-out infinite;
}
.hero__badge strong { font: 600 1.9rem/1 var(--serif); }
.hero__badge span { font-size: .72rem; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; }
@keyframes float { 50% { transform: translateY(-10px); } }
.trust { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(40px, 6vw, 72px); padding: 0; background: rgba(255, 255, 255, .1); border-radius: var(--r) var(--r) 0 0; overflow: hidden; }
.trust li { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 22px 16px; background: var(--forest-700); font-weight: 500; font-size: .95rem; text-align: center; }
.trust .ico { color: var(--lime); width: 22px; height: 22px; }

/* ---------- hero interno ---------- */
.phero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 100%); padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); }
.phero::before { content: ""; position: absolute; right: -12vw; top: -20vw; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(142, 219, 60, .25), transparent 62%); }
.phero__in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.phero h1 { font-size: clamp(2.3rem, 3.8vw + 1rem, 4.2rem); }
.phero__img { margin: 0; aspect-ratio: 1; }
.crumbs { margin-bottom: 1.4rem; font-size: .88rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green); }
.crumbs span { margin: 0 .4em; opacity: .5; }

/* formas orgánicas reutilizables */
.blob { margin: 0; overflow: hidden; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; box-shadow: var(--shadow-lg); }
.blob img { width: 100%; height: 100%; object-fit: cover; }
.blob--b { border-radius: 58% 42% 38% 62% / 52% 58% 42% 48%; }

/* ---------- secciones ---------- */
.sec { position: relative; padding: var(--sec) 0; }
.sec--sand { background: var(--sand); }
.sec--forest { background: var(--forest); color: #fff; overflow: hidden; }
.sec--forest::before { content: ""; position: absolute; left: -15vw; bottom: -25vw; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(142, 219, 60, .14), transparent 60%); }
.sec--sand + .sec--sand { padding-top: 0; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.split__img { aspect-ratio: 1/1.02; }
.split .head { margin-bottom: 1.4rem; }

/* pasos: semilla → árbol */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; margin-bottom: 48px; }
.steps::before { content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--clay) 0 8px, transparent 8px 16px); opacity: .5; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__ico { position: relative; display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: var(--paper); color: var(--green); box-shadow: 0 0 0 8px var(--sand), var(--shadow); transition: transform .4s var(--ease), background .4s, color .4s; }
.step__ico .ico { width: 30px; height: 30px; }
.step:nth-child(4) .step__ico { background: var(--green); color: #fff; }
.step:hover .step__ico { transform: translateY(-6px) rotate(-6deg); background: var(--forest); color: var(--lime); }
.step__n { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); margin-bottom: 6px; }
.step h3 { font-size: 1.45rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* objetivos */
.goals { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.goals__head { position: sticky; top: 120px; }
.goals__img { aspect-ratio: 5/4; max-width: 420px; margin-top: -8px; }
.goals__list { display: grid; gap: 12px; counter-reset: g; }
.goals__list li { display: flex; align-items: center; gap: 18px; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-size: 1.06rem; font-weight: 500; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.goals__list li:hover { transform: translateX(6px); border-color: var(--lime); box-shadow: var(--shadow); }
.goals__list span { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--lime-soft); color: var(--green-600); font: 600 1.1rem/1 var(--serif); }

/* modalidades */
.mods { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mod { position: relative; display: flex; flex-direction: column; padding: 30px 26px 26px; border-radius: var(--r); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); transition: transform .4s var(--ease), background .4s, border-color .4s; }
.mod:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .09); border-color: rgba(142, 219, 60, .5); }
.mod__n { position: absolute; top: 22px; right: 24px; font: 400 2.4rem/1 var(--serif); color: rgba(255, 255, 255, .12); }
.mod__ico { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 16px; background: var(--lime); color: var(--forest-900); }
.mod__ico .ico { width: 26px; height: 26px; }
.mod__t { color: #fff; font-size: 1.45rem; }
.mod__t small { display: block; margin-top: 4px; font: 600 .76rem/1.3 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--lime); }
.mod p { color: rgba(255, 255, 255, .72); font-size: .96rem; flex: 1; }
.mod__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--lime); font-weight: 600; font-size: .95rem; text-decoration: none; }
.mod__link .ico { transition: transform .3s var(--ease); }
.mod__link:hover .ico { transform: translateX(5px); }
/* variante clara (páginas internas) */
.mods--light .mod { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.mods--light .mod:hover { border-color: var(--lime); background: #fff; }
.mods--light .mod__t { color: var(--forest); }
.mods--light .mod p { color: var(--muted); }
.mods--light .mod__n { color: var(--sand-2); }
.mods--light .mod__link { color: var(--green); }
.mods--light .mod__t small { color: var(--clay); }

/* instalaciones */
.place { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.place__img { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.3; }
.place__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.place__img figcaption { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: rgba(255, 253, 248, .92); color: var(--forest); font-size: .88rem; font-weight: 600; }
.place .head { margin-bottom: 1.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.chips li { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; background: var(--sand); color: var(--forest); font-size: .95rem; font-weight: 500; }
.chips .ico { color: var(--green); }

/* galería masonry */
.gallery { columns: 4 220px; column-gap: 14px; }
.gallery__item { display: block; margin-bottom: 14px; break-inside: avoid; border-radius: var(--r-sm); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery__item img { width: 100%; transition: transform .7s var(--ease), filter .5s; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 38, 31, .45)); opacity: 0; transition: opacity .4s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cta { margin-top: 28px; font-weight: 500; }
.gallery__cta a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }

.lb { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(8, 24, 19, .94); padding: 60px 16px; }
.lb.is-open { display: flex; animation: fade .3s; }
.lb img { max-height: 84vh; width: auto; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lb button { position: absolute; display: grid; place-items: center; width: 50px; height: 50px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer; transition: background .2s; }
.lb button:hover { background: rgba(255, 255, 255, .25); }
.lb button .ico { width: 24px; height: 24px; }
.lb__x { top: 16px; right: 16px; }
.lb__p { left: 16px; top: 50%; margin-top: -25px; }
.lb__n { right: 16px; top: 50%; margin-top: -25px; }
.lb__c { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255, 255, 255, .75); font-size: .9rem; }
@keyframes fade { from { opacity: 0; } }

/* FAQ + formulario */
.faqform { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: border-color .3s, box-shadow .3s; }
.faq__item[open] { border-color: var(--lime); box-shadow: var(--shadow); }
.faq__item summary { display: flex; align-items: center; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { flex: 1; margin: 0; font: 600 1.04rem/1.4 var(--sans); color: var(--forest); letter-spacing: 0; }
.faq__item summary .ico { width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--sand); color: var(--green); transition: transform .35s var(--ease), background .3s; }
.faq__item[open] summary .ico { transform: rotate(45deg); background: var(--lime); color: var(--forest-900); }
.faq__item p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.form { padding: clamp(24px, 4vw, 40px); background: var(--sand); border-radius: var(--r-lg); position: relative; }
.form__t { font-size: clamp(1.7rem, 1.5vw + 1rem, 2.2rem); }
.form__sub { color: var(--muted); font-size: .96rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 14px; }
.field span { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 600; color: var(--forest); }
.field em { font-style: normal; font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid transparent; border-radius: 14px; background: #fff;
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 4px rgba(36, 122, 54, .14); }
.field.is-bad input, .field.is-bad textarea { border-color: #c2412d; }
.field .err { display: block; margin-top: 4px; font-size: .82rem; color: #b23a26; }
.hp { position: absolute !important; left: -9999px !important; }
.form__note { display: flex; gap: 8px; align-items: flex-start; margin: 14px 0 0; font-size: .85rem; color: var(--muted); }
.form__note .ico { color: var(--green); margin-top: 2px; }
.form__status { margin: 10px 0 0; font-weight: 600; }
.form__status.ok { padding: 14px 16px; border-radius: 14px; background: var(--lime-soft); color: var(--green-600); }
.form__status.bad { color: #b23a26; }

/* CTA final */
.cta { padding: 0 0 var(--sec); }
.sec--sand + .cta, .sec--forest + .cta { padding-top: var(--sec); }
.cta__in { position: relative; overflow: hidden; text-align: center; padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px); border-radius: var(--r-lg); background: radial-gradient(120% 140% at 50% 0%, var(--forest-700) 0%, var(--forest) 45%, var(--forest-900) 100%); color: #fff; }
.cta__in h2 { color: #fff; font-size: clamp(2.1rem, 3.4vw + 1rem, 3.6rem); }
.cta__in h2 em { color: var(--lime); }
.cta__in .lead { color: rgba(255, 255, 255, .75); margin-inline: auto; }
.cta__leaf { position: absolute; right: -40px; bottom: -50px; width: 260px; height: 260px; fill: rgba(142, 219, 60, .08); transform: rotate(-20deg); }

/* ---------- páginas internas ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.aims { display: grid; gap: 14px; }
.aims li { display: flex; gap: 16px; padding: 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.aims .ico { flex: none; width: 44px; height: 44px; padding: 10px; border-radius: 14px; background: var(--lime-soft); color: var(--green-600); }
.aims strong { display: block; font: 600 1.2rem/1.3 var(--serif); color: var(--forest); margin-bottom: 4px; }
.aims p { margin: 0; color: var(--muted); font-size: .97rem; }
.note { padding: 18px 22px; border-left: 3px solid var(--lime); background: var(--sand); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--muted); font-size: .97rem; }

.tech { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; counter-reset: t; }
.tech__item { position: relative; padding: 28px 28px 24px 88px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.tech__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lime); }
.tech__item::before { counter-increment: t; content: counter(t, decimal-leading-zero); position: absolute; left: 26px; top: 24px; font: 400 2rem/1 var(--serif); color: var(--clay); }
.tech__item h3 { font-size: 1.35rem; margin-bottom: .35em; }
.tech__item p { margin: 0; color: var(--muted); font-size: .98rem; }
.tech__item ul { margin-top: 12px; display: grid; gap: 8px; }
.tech__item ul li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink); }
.tech__item ul .ico { color: var(--green); margin-top: 4px; }

.quote-band { text-align: center; }
.quote-band blockquote { max-width: 26ch; margin: 0 auto; font: italic 400 clamp(1.8rem, 2.6vw + 1rem, 3rem)/1.2 var(--serif); color: var(--forest); }
.quote-band blockquote em { color: var(--green); }

.cards3 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { padding: 28px 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico { width: 48px; height: 48px; padding: 11px; margin-bottom: 18px; border-radius: 16px; background: var(--forest); color: var(--lime); }
.card h3 { font: 600 1.08rem/1.35 var(--sans); color: var(--forest); letter-spacing: 0; margin: 0; }

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -48px; position: relative; z-index: 2; }
.ccard { display: flex; flex-direction: column; gap: 6px; padding: 26px 24px; border-radius: var(--r); background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: transform .35s var(--ease), border-color .35s; }
a.ccard:hover { transform: translateY(-6px); border-color: var(--lime); }
.ccard .ico { width: 46px; height: 46px; padding: 11px; margin-bottom: 10px; border-radius: 14px; background: var(--lime-soft); color: var(--green-600); }
.ccard small { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.ccard strong { font: 500 1.2rem/1.3 var(--serif); color: var(--forest); word-break: break-word; }
.ccard span { margin-top: auto; padding-top: 8px; color: var(--green); font-weight: 600; font-size: .94rem; }
.ccard__mail { font-size: 1.02rem !important; }
.ccard--wa .ico { background: var(--green); color: #fff; }


.prose--light p { color: rgba(255, 255, 255, .75); }
.prose--light strong { color: var(--lime); font-weight: 600; }
.note--center { max-width: 640px; margin: 36px auto 0; text-align: center; border-left: 0; border-radius: var(--r); }
.phero--contact { padding-bottom: clamp(96px, 10vw, 128px); text-align: left; }
.phero--contact h1 { max-width: 16ch; }
.place__img--tall { aspect-ratio: 4/3; margin-bottom: 28px; }
.side-note h2 { font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem); }
.side-note p { color: var(--muted); }

/* ---------- footer ---------- */
.foot { position: relative; background: var(--forest-900); color: rgba(255, 255, 255, .7); padding: 72px 0 0; margin-top: 40px; font-size: .96rem; }
.foot__wave { position: absolute; top: -79px; left: 0; width: 100%; height: 80px; fill: var(--forest-900); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.foot__brand img { width: 190px; margin-bottom: 18px; }
.foot__brand p { max-width: 36ch; }
.foot__h { font: 600 .8rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.foot__list { display: grid; gap: 10px; }
.foot a { color: rgba(255, 255, 255, .85); text-decoration: none; transition: color .2s; }
.foot a:hover { color: var(--lime); }
.foot__list--ico li { display: flex; gap: 10px; align-items: flex-start; }
.foot__list--ico .ico { color: var(--lime); margin-top: 4px; }
.foot__list--ico a, .foot__list--ico span { word-break: break-word; }
.foot__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .86rem; }
.foot__bar p { margin: 0; }
.foot__bar a { color: var(--lime); font-weight: 600; }

/* WhatsApp flotante + barra móvil */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .3s var(--ease); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.4s infinite; }
.wa-float .ico { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float__tip { position: absolute; right: 76px; width: max-content; max-width: 250px; padding: 10px 14px; border-radius: 14px; background: #fff; color: var(--ink); font-size: .88rem; font-weight: 500; box-shadow: var(--shadow); opacity: 0; transform: translateX(8px); pointer-events: none; transition: .3s var(--ease); }
.wa-float:hover .wa-float__tip { opacity: 1; transform: none; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.mbar { display: none; }

/* ---------- animación de entrada ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .mods, .cards3, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .nav__menu a { padding: 10px 10px; }
}
@media (max-width: 920px) {
  .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; z-index: 60; width: min(86vw, 360px); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 96px 24px 24px; background: var(--paper); box-shadow: -30px 0 60px -30px rgba(0, 0, 0, .4);
    transform: translateX(105%); visibility: hidden; transition: transform .45s var(--ease), visibility 0s .45s;
  }
  .nav__menu a { padding: 14px 18px; font-size: 1.1rem; }
  .nav__menu a[aria-current="page"] { background: var(--sand); }
  .nav__menu a[aria-current="page"]::after { display: none; }
  .nav__call { display: flex !important; align-items: center; gap: 8px; margin-top: 12px; background: var(--forest); color: #fff !important; justify-content: center; }
  .menu-open .nav__menu { transform: none; visibility: visible; transition: transform .45s var(--ease); }
  .menu-open .nav__burger { position: relative; z-index: 61; }
  .menu-open::after { content: ""; position: fixed; inset: 0; z-index: 55; background: rgba(12, 38, 31, .45); }
  .hero__in, .phero__in, .split, .goals, .place, .faqform, .intro-grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__quote { left: 0; }
  .goals__head { position: static; }
  .goals__img { display: none; }
  .phero__img { max-width: 440px; width: 100%; margin-inline: auto; order: -1; }
  .split__img { max-width: 520px; margin-inline: auto; width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }
  .trust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar__txt, .topbar__loc { display: none; }
  .topbar__in { justify-content: space-between; }
  .nav__in { min-height: 66px; }
  .nav__logo img { width: 128px; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero__quote { position: relative; left: auto; bottom: auto; max-width: none; margin: -48px 12px 0; font-size: .98rem; }
  .hero__media { padding-bottom: 0; }
  .hero__badge { width: 92px; height: 92px; right: 4px; }
  .hero__badge strong { font-size: 1.5rem; }
  .actions .btn { width: 100%; }
  .trust li { padding: 16px 10px; font-size: .86rem; flex-direction: column; gap: 6px; }
  .steps, .mods, .cards3, .contact-cards, .tech, .form__row, .foot__grid { grid-template-columns: 1fr; }
  .contact-cards { margin-top: -32px; }
  .tech__item { padding: 24px 22px 22px 74px; }
  .tech__item::before { left: 20px; font-size: 1.7rem; }
  .gallery { columns: 2; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; }
  .wa-float { display: none; }
  .mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 253, 248, .95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 -10px 30px -18px rgba(0, 0, 0, .4); }
  .mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 999px; font-weight: 600; text-decoration: none; }
  .mbar__call { background: var(--forest); color: #fff; }
  .mbar__wa { background: var(--wa); color: #0b3d20; }
  body { padding-bottom: 72px; }
  .lb__p, .lb__n { top: auto; bottom: 14px; margin: 0; }
}
