/* =====================================================================
   MarthaFit® — Consulta de Arranque landing
   Mobile-first. Inherits tokens from colors_and_type.css.
   Visual language matched to marthafit.com.mx (live site).
   ===================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-fg);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform var(--duration-2) var(--ease-out),
              box-shadow var(--duration-2) var(--ease-out),
              background var(--duration-2) var(--ease-soft);
  white-space: nowrap;
}
.btn-cta {
  background: var(--mf-naranja);
  color: #fff;
  padding: 15px 26px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(255,107,53,.30);
}
.btn-cta:hover { background: var(--mf-naranja-700); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,53,.40); }
.btn-cta:active { transform: translateY(0); }
.btn-cta.sm { padding: 11px 18px; font-size: 13px; }
.btn-cta.lg { padding: 18px 34px; font-size: 16px; }
.btn-onlight { background: #fff; color: var(--mf-morado); padding: 15px 26px; font-size: 15px; box-shadow: var(--shadow-sm); }
.btn-onlight:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn .arrow { transition: transform var(--duration-2) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

:focus-visible { outline: none; box-shadow: var(--shadow-ring); border-radius: var(--radius-pill); }

/* ---------- Eyebrow / numerals ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mf-morado);
  margin: 0 0 16px;
}
.eyebrow.on-brand { color: var(--mf-lavanda); }

/* =====================================================================
   PROMO BAR
   ===================================================================== */
.promo-bar {
  background: var(--mf-lavanda);
  color: var(--mf-ciruela);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.35;
}
.promo-bar strong { color: var(--mf-morado); font-weight: 700; }
.promo-num {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.12em; color: #fff; background: var(--mf-morado);
  padding: 2px 8px; border-radius: var(--radius-pill);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--duration-2) var(--ease-soft);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(69,11,104,.06); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav .logo { height: 26px; width: auto; }
.nav .nav-cta { display: inline-flex; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero .wrap { padding-top: 48px; padding-bottom: 56px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-logo { height: 38px; width: auto; margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 8.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--mf-ciruela);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--mf-morado); }
.hero .lead {
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.55;
  color: var(--color-fg);
  max-width: 540px;
  margin: 0 0 30px;
}
.hero .cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero .microcopy { font-size: 13.5px; color: var(--color-fg-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero .microcopy .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mf-morado-300); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px;
  font-size: 13px; color: var(--color-fg-muted);
}
.hero-trust strong { color: var(--mf-ciruela); font-weight: 600; }

/* Hero portrait */
.hero-portrait { position: relative; justify-self: center; }
.hero-portrait .ring {
  width: clamp(240px, 78vw, 420px);
  height: clamp(240px, 78vw, 420px);
  border-radius: 50%;
  background: var(--mf-lavanda);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(69,11,104,.18), inset 0 0 0 2px rgba(147,51,158,.10);
}
.hero-portrait .ring img {
  position: absolute; left: 50%; top: 51%;
  transform: translate(-50%, -50%);
  width: 116%; max-width: none; height: auto;
}
.hero-portrait .tag {
  position: absolute; bottom: 16px; right: 6px;
  background: #fff; color: var(--mf-ciruela);
  padding: 11px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px;
}
.hero-portrait .tag .live { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
.hero-portrait .tag strong { font-family: var(--font-display); font-weight: 700; }

/* Hero MORADO variant (tweak) */
[data-hero="morado"] .hero { background: var(--mf-morado); }
[data-hero="morado"] .hero::before,
[data-hero="morado"] .hero::after {
  content: ""; position: absolute; border-radius: 50%; background: var(--mf-ciruela); pointer-events: none;
}
[data-hero="morado"] .hero::before { width: 520px; height: 520px; right: -180px; top: -220px; opacity: .55; }
[data-hero="morado"] .hero::after { width: 360px; height: 360px; left: -160px; bottom: -200px; opacity: .35; }
[data-hero="morado"] .hero .wrap { position: relative; z-index: 1; }
[data-hero="morado"] .hero h1 { color: #fff; }
[data-hero="morado"] .hero h1 .accent { color: var(--mf-lavanda); }
[data-hero="morado"] .hero .lead { color: var(--mf-lavanda); }
[data-hero="morado"] .hero .microcopy { color: var(--mf-lavanda); }
[data-hero="morado"] .hero .microcopy .dot { background: var(--mf-lavanda); }
[data-hero="morado"] .hero-trust { color: var(--mf-lavanda); }
[data-hero="morado"] .hero-trust strong { color: #fff; }
[data-hero="morado"] .hero-portrait .ring { box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.4); }
[data-hero="morado"] .hero-logo-color { display: none; }
[data-hero="morado"] .hero-logo-white { display: block; }
[data-hero="blanco"] .hero-logo-white { display: none; }

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
section.block { padding: 58px 0; }
.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.07;
  letter-spacing: -0.01em;
  color: var(--mf-ciruela);
  margin: 0 0 16px;
  text-wrap: balance;
}
h2.title .accent { color: var(--mf-morado); font-style: italic; }
.section-head p {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  color: var(--color-fg);
  margin: 0;
}

/* Lavanda + soft-grey sections */
.block.lavanda { background: var(--mf-lavanda); }
.block.soft { background: var(--mf-gris-bg); }

/* =====================================================================
   PARA QUIÉN ES
   ===================================================================== */
.fit-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.fit-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.fit-card.yes { border: 1.5px solid rgba(147,51,158,.18); }
.fit-card.no { background: var(--mf-ciruela); color: var(--mf-lavanda); }
.fit-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em; margin: 0 0 18px;
}
.fit-card.yes h3 { color: var(--mf-ciruela); }
.fit-card.no h3 { color: #fff; }
.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fit-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.fit-list li .ic { flex-shrink: 0; margin-top: 1px; color: var(--mf-morado); }
.fit-card.no .fit-list li .ic { color: var(--mf-lavanda); }
.fit-card.no .fit-list li { color: var(--mf-lavanda); }

/* =====================================================================
   QUÉ INCLUYE — cards
   ===================================================================== */
.incl-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.incl-card {
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--duration-2) var(--ease-soft), border-color var(--duration-2);
}
.incl-card:hover { box-shadow: var(--shadow-md); border-color: rgba(147,51,158,.25); }
.incl-ic {
  width: 46px; height: 46px; border-radius: 13px; background: var(--mf-lavanda);
  display: flex; align-items: center; justify-content: center; color: var(--mf-morado);
}
.incl-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--mf-ciruela); margin: 0; line-height: 1.25; }
.incl-card p { font-size: 15px; line-height: 1.5; color: var(--color-fg-muted); margin: 0; }

/* =====================================================================
   CÓMO FUNCIONA — steps
   ===================================================================== */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start;
  padding: 24px 0; border-top: 1px solid var(--color-border);
}
.step:last-child { border-bottom: 1px solid var(--color-border); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--mf-morado); letter-spacing: -0.02em; line-height: 1;
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--mf-ciruela); margin: 0 0 6px; }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--color-fg); margin: 0; max-width: 640px; }
.step .pin { color: var(--mf-morado); font-weight: 600; }

/* =====================================================================
   DIFERENCIADOR — morado destacada
   ===================================================================== */
.diff { position: relative; overflow: hidden; background: var(--mf-morado); color: #fff; padding: 88px 0; }
.diff::before, .diff::after { content: ""; position: absolute; border-radius: 50%; background: var(--mf-ciruela); pointer-events: none; }
.diff::before { width: 480px; height: 480px; left: -170px; top: -190px; opacity: .55; }
.diff::after { width: 320px; height: 320px; right: -120px; bottom: -150px; opacity: .4; }
.diff .wrap { position: relative; z-index: 1; max-width: 900px; }
.diff h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.2vw, 48px); line-height: 1.08; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 24px; text-wrap: balance;
}
.diff h2 .accent { color: var(--mf-lavanda); }
.diff p { font-size: clamp(17px, 2.6vw, 21px); line-height: 1.55; color: var(--mf-lavanda); margin: 0; max-width: 720px; }

/* =====================================================================
   MARTHA
   ===================================================================== */
.martha-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.martha-photo { position: relative; justify-self: center; max-width: 360px; width: 100%; }
.martha-photo .frame {
  border-radius: var(--radius-xl); overflow: hidden; background: var(--mf-lavanda);
  aspect-ratio: 0.6; position: relative; box-shadow: var(--shadow-lg);
}
.martha-photo .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: none; max-width: none; }
.martha-photo .badge {
  position: absolute; left: 18px; bottom: -14px; background: #fff;
  border-radius: var(--radius-pill); padding: 10px 18px; box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--mf-morado);
}
.martha-body h2 { margin-bottom: 18px; }
.martha-body p { font-size: 16.5px; line-height: 1.62; color: var(--color-fg); margin: 0 0 16px; max-width: 560px; }
.martha-body p:last-child { margin-bottom: 0; }
.martha-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.cred-chip {
  font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--mf-ciruela);
  background: var(--mf-lavanda); padding: 7px 14px; border-radius: var(--radius-pill);
}
.martha-license { display: flex; flex-direction: column; gap: 3px; margin-top: 20px; }
.martha-license span { font-size: 13.5px; line-height: 1.4; color: var(--color-fg-muted); }
.martha-license span:first-child { font-family: var(--font-display); font-weight: 600; color: var(--mf-ciruela); }

/* =====================================================================
   EXPECTATIVAS — honest block
   ===================================================================== */
.honest { background: var(--mf-lavanda); }
.honest .wrap { max-width: 820px; }
.honest .qmark {
  font-family: var(--font-display); font-weight: 800; font-size: 60px; line-height: .8;
  color: var(--mf-morado-300); margin-bottom: 6px;
}
.honest h2 { color: var(--mf-ciruela); }
.honest p { font-size: clamp(17px, 2.6vw, 21px); line-height: 1.6; color: var(--mf-ciruela); margin: 0; }

/* =====================================================================
   INVERSIÓN
   ===================================================================== */
.invest .wrap { max-width: 720px; }
.price-card {
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 40px 34px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.price-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mf-morado);
  background: var(--mf-lavanda); padding: 7px 16px; border-radius: var(--radius-pill);
}
.price-standard { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-standard-label {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-fg-muted);
}
.price-was {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 9vw, 52px);
  color: var(--color-fg-muted); text-decoration: line-through; text-decoration-thickness: 4px;
  text-decoration-color: var(--mf-naranja); line-height: 1; letter-spacing: -0.02em;
}
.price-was .was-cur { font-size: .4em; -webkit-text-decoration: none; text-decoration: none; font-weight: 600; }
.price-row { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 2px; }
.price-now-label {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mf-morado);
}
.price-card .price {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 13vw, 76px);
  letter-spacing: -0.03em; color: var(--mf-ciruela); line-height: 1;
}
.price-card .price .cur { font-size: .34em; color: var(--color-fg-muted); font-weight: 600; margin-left: 6px; }
.price-legend { font-size: 14.5px; line-height: 1.5; color: var(--color-fg-muted); max-width: 440px; }
.price-legend strong { color: var(--mf-ciruela); font-weight: 700; }
.accredit {
  background: var(--mf-azul-50); border-radius: var(--radius-md); padding: 16px 20px;
  font-size: 15px; line-height: 1.55; color: var(--color-fg); max-width: 520px;
}
.accredit strong { color: var(--mf-azul); font-weight: 700; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq .wrap { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 3vw, 19px); color: var(--mf-ciruela); line-height: 1.3;
}
.faq-q .pm { flex-shrink: 0; color: var(--mf-morado); transition: transform var(--duration-2) var(--ease-out); font-size: 22px; font-weight: 400; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--duration-3) var(--ease-soft); }
.faq-a-inner { padding: 0 0 24px; font-size: 15.5px; line-height: 1.62; color: var(--color-fg-muted); max-width: 680px; }
.faq-a-inner a { color: var(--mf-morado); font-weight: 600; }

/* =====================================================================
   CTA FINAL — morado bookend
   ===================================================================== */
.final { position: relative; overflow: hidden; background: var(--mf-morado); color: #fff; padding: 92px 0; text-align: center; }
.final::before, .final::after { content: ""; position: absolute; border-radius: 50%; background: var(--mf-ciruela); pointer-events: none; }
.final::before { width: 460px; height: 460px; left: -160px; top: -180px; opacity: .6; }
.final::after { width: 340px; height: 340px; right: -120px; bottom: -160px; opacity: .42; }
.final .wrap { position: relative; z-index: 1; max-width: 760px; }
.final h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 6vw, 52px); line-height: 1.06; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 14px; text-wrap: balance;
}
.final .sub { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(20px, 4vw, 28px); color: var(--mf-lavanda); margin: 0 0 32px; }

/* =====================================================================
   FOOTER — ciruela
   ===================================================================== */
.foot { background: var(--mf-ciruela); color: var(--mf-lavanda); padding: 56px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 34px; }
.foot-logo { height: 40px; width: auto; margin-bottom: 16px; }
.foot-slogan { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 17px; color: #fff; margin: 0 0 6px; }
.foot-about { font-size: 14px; line-height: 1.55; opacity: .82; margin: 0; max-width: 360px; }
.foot-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .16em; color: #fff; margin: 0 0 14px; text-transform: uppercase; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.foot-col li, .foot-col a { font-size: 14px; opacity: .85; text-decoration: none; }
.foot-col a:hover { opacity: 1; color: #fff; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 10px; padding: 22px 0; border-top: 1px solid rgba(255,227,254,.16); border-bottom: 1px solid rgba(255,227,254,.16); margin-bottom: 22px; }
.legal-pill { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-decoration: none; padding: 10px 20px; border-radius: var(--radius-pill); letter-spacing: .03em; transition: background var(--duration-2), border-color var(--duration-2); }
.legal-pill.solid { color: var(--mf-ciruela); background: var(--mf-lavanda); }
.legal-pill.solid:hover { background: #fff; }
.legal-pill.outline { color: #fff; border: 1.5px solid rgba(255,227,254,.45); }
.legal-pill.outline:hover { border-color: var(--mf-lavanda); background: rgba(255,227,254,.08); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 12px; opacity: .62; }

/* =====================================================================
   MOBILE STICKY CTA
   ===================================================================== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  transform: translateY(120%); transition: transform var(--duration-3) var(--ease-out);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 600px) {
  .incl-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}
@media (min-width: 760px) {
  .wrap { padding: 0 32px; }
  section.block { padding: 96px 0; }
  .hero .wrap { padding-top: 64px; padding-bottom: 88px; }
  .hero .cta-row { flex-direction: row; align-items: center; gap: 18px; }
  .fit-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .foot-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .mobile-cta { display: none; }
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.08fr 1fr; gap: 64px; }
  .hero h1 { font-size: clamp(46px, 5vw, 62px); }
  .incl-grid { grid-template-columns: 1fr 1fr 1fr; }
  .martha-grid { grid-template-columns: 380px 1fr; gap: 60px; }
  .step { grid-template-columns: 64px 1fr; }
  .step .num { font-size: 32px; }
}

/* =====================================================================
   MOBILE REFINEMENTS  (≤ 599px — the primary experience)
   ===================================================================== */
@media (max-width: 599px) {
  .wrap { padding: 0 20px; }

  /* Promo bar — compact, single line where possible */
  .promo-bar { font-size: 12px; padding: 8px 14px; gap: 8px; }
  .promo-num { font-size: 10px; padding: 2px 7px; }

  /* Nav — keep logo + CTA comfortably on one row */
  .nav .wrap { height: 60px; }
  .nav .logo { height: 23px; }
  .nav .btn-cta.sm { padding: 10px 15px; font-size: 12.5px; }

  /* Hero — tighter, portrait scaled down so the CTA stays high */
  .hero .wrap { padding-top: 32px; padding-bottom: 44px; }
  .hero-grid { gap: 30px; }
  .hero-logo { height: 30px; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(31px, 9vw, 40px); margin-bottom: 16px; }
  .hero .lead { font-size: 16.5px; margin-bottom: 24px; }
  .hero .cta-row { gap: 14px; }
  .hero .cta-row .btn-cta { width: 100%; }
  .hero .microcopy { font-size: 13px; justify-content: center; width: 100%; text-align: center; }
  .hero-trust { gap: 8px 16px; margin-top: 26px; font-size: 12.5px; justify-content: center; text-align: center; }
  .hero-portrait .ring { width: min(70vw, 300px); height: min(70vw, 300px); }
  .hero-portrait .tag { font-size: 12.5px; padding: 9px 13px; bottom: 10px; right: 0; }

  /* Section rhythm */
  section.block { padding: 50px 0; }
  .section-head { margin-bottom: 28px; }
  .eyebrow { margin-bottom: 12px; }

  /* Cards */
  .fit-card { padding: 24px 22px; }
  .fit-card h3 { font-size: 20px; margin-bottom: 14px; }
  .fit-list li { font-size: 15.5px; }
  .incl-card { padding: 22px 20px; }
  .incl-grid { gap: 14px; }

  /* Steps — number above text reads better on narrow screens */
  .step { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .step .num { font-size: 24px; }
  .step h3 { font-size: 18px; }

  /* Destacadas */
  .diff { padding: 60px 0; }
  .final { padding: 64px 0; }
  .diff::before { width: 360px; height: 360px; left: -150px; top: -150px; }
  .diff::after { width: 240px; height: 240px; right: -100px; bottom: -120px; }

  /* Martha */
  .martha-grid { gap: 28px; }
  .martha-photo { max-width: 300px; }

  /* Honest */
  .honest .qmark { font-size: 48px; }

  /* Price card */
  .price-card { padding: 32px 22px; gap: 12px; }
  .price-legend, .accredit { font-size: 14px; }

  /* FAQ */
  .faq-q { padding: 20px 0; font-size: 16px; gap: 12px; }
  .faq-a-inner { font-size: 15px; }

  /* Footer */
  .foot { padding: 44px 0 26px; }
  .foot-top { gap: 26px; margin-bottom: 28px; }
  .foot-legal { gap: 8px; }
  .legal-pill { flex: 1; text-align: center; }
  .foot-base { font-size: 11.5px; gap: 6px; }

  /* Floating WhatsApp — sits ABOVE the sticky CTA bar, icon-only to reduce clutter */
  .wa-float { bottom: 84px !important; right: 16px !important; }
  .wa-float-btn { padding: 13px !important; border-radius: 50% !important; }
  .wa-float-label { display: none; }

  /* Mobile sticky CTA */
  .mobile-cta { padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); }
  .mobile-cta .btn-cta { padding: 15px 24px; font-size: 15px; }
}
