/* =========================================================
   JLO Nutri — Design System
   Mocha #2E241C · Letras marfim quente #F6E4CF

   Ordem:
   1. Tokens / base
   2. Componentes (botões, header, seções)
   3. Página (hero → pains → about → gains → plans)
   4. Footer / sticky / WhatsApp
   5. Legal / obrigado
   6. Motion + responsivo
   ========================================================= */
:root {
  color-scheme: dark;

  /* Tipografia — marfim quente (mais amêndoa / pêssego) */
  --warm-offwhite: #F6E4CF;

  /* Família mocha (um só tom, degraus curtos) */
  --bg: #2E241C;
  --surface: #342920;
  --elevated: #3B3128;

  --brown-2: var(--warm-offwhite);
  --offwhite: var(--bg);
  --offwhite-2: var(--surface);
  --white: var(--elevated);
  --ink: var(--warm-offwhite);
  --ink-soft: rgba(246, 228, 207, 0.9);
  --muted: rgba(246, 228, 207, 0.88);
  --brand: var(--warm-offwhite);
  --brand-2: #EBD4B8;
  --on-brand: var(--bg);
  --line: rgba(246, 228, 207, 0.16);
  --whats: #25d366;

  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --container: min(1120px, calc(100% - 40px));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  --header-h: 88px;
  --sticky-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}
.container--narrow { max-width: 780px; }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-2);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--brand);
  color: var(--on-brand);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 300;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  min-width: 44px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn--lg { min-height: 56px; padding: 0 32px; font-size: 16px; }

.btn--primary {
  background: var(--brand);
  color: var(--on-brand);
}
.btn--primary:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}

.btn--whats {
  background: var(--whats);
  color: #063528;
}
.btn--whats:hover { filter: brightness(1.03); transform: translateY(-1px); }
.btn--secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn--secondary:hover {
  border-color: var(--brand);
  background: rgba(246, 228, 207, 0.06);
  transform: translateY(-1px);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  text-align: center;
}
.trust-bar p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  padding: 2px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.trust-bar p + p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}
.trust-bar strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.2;
}
.trust-bar span {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--muted);
  max-width: 18ch;
}

/* ---------- Header ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(46, 36, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark-img {
  height: 46px;
  width: auto;
  display: block;
}
.brand__aside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.brand__aside-line {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
}
.brand__aside-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--brand); }

.nav-cta { flex-shrink: 0; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  margin-left: auto;
}
.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px clamp(16px, 4vw, 40px) 24px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-menu a.btn {
  justify-content: center;
  border: none;
  margin-top: 14px;
  color: var(--on-brand);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 80;
  background: rgba(0, 0, 0, 0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.menu-backdrop[hidden] { display: none; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(56px, 8vw, 100px) 0;
}
.pains,
.about,
.gains,
.first-visit,
.quotes,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.hero {
  content-visibility: visible;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4.8vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.section-sub {
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 40ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(246, 228, 207, 0.35);
  padding-bottom: 2px;
}
.text-link:hover { border-color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(900px 480px at 88% 0%, rgba(246, 228, 207, 0.06), transparent 58%),
    radial-gradient(700px 380px at 8% 80%, rgba(246, 228, 207, 0.03), transparent 55%),
    linear-gradient(180deg, #342920 0%, #2E241C 55%, #281F18 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero__byline {
  margin: 0 0 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero__title {
  font-size: clamp(30px, 5vw, 52px);
  margin: 0 0 18px;
  letter-spacing: -0.015em;
  max-width: 16em;
}
.hero__lead {
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 26px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__media { position: relative; }
.hero__photo,
.about__photo {
  width: 100%;
  margin-inline: auto;
  border-radius: 20px;
  background: var(--offwhite-2);
  border: 1px solid var(--line);
  overflow: hidden;
  line-height: 0;
  min-height: 200px;
}
.hero__photo picture,
.about__photo picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.hero__photo img,
.about__photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 4 / 5;
  contain: layout style paint;
}
.hero__photo img { object-position: center 22%; }
.about__photo img { object-position: center 28%; }

/* ---------- Feature cards (pains + gains) ---------- */
.pains__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gains__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
}

.pain-card,
.gain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.pain-card__icon,
.gain-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--offwhite-2);
  color: var(--brand);
  margin-bottom: 14px;
}

.pain-card__icon svg,
.gain-card__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.pain-card h3,
.gain-card h3 { font-size: 20px; margin-bottom: 8px; }
.gain-card h3 { font-size: 21px; }

.pain-card p,
.gain-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Pains ---------- */
.pains { background: var(--offwhite); }
.pains__closing {
  max-width: 40rem;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.35;
  color: var(--brand);
}

/* ---------- About ---------- */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about__copy h2 { font-size: clamp(28px, 4.8vw, 44px); margin-bottom: 18px; }
.about__copy p { color: var(--ink-soft); margin: 0 0 14px; }
.about__creds {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.about__creds li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--brand);
  font-size: 15px;
}
.about__creds span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Gains ---------- */
.gains {
  background: var(--offwhite);
}

/* ---------- Plans ---------- */
.plans { background: var(--offwhite); }

.plans__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
}
.plan-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  padding-top: 40px;
  background: linear-gradient(180deg, rgba(246, 228, 207, 0.06) 0%, var(--white) 42%);
}
@media (min-width: 1025px) {
  .plan-card--featured {
    transform: translateY(-6px);
  }
}
.plan-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--on-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.plan-card__name {
  font-size: clamp(24px, 2.4vw, 28px);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.plan-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 28ch;
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 8px;
  line-height: 1.2;
}
.plan-card__price span { font-size: 0.45em; vertical-align: super; }
.plan-card__price small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}
.plan-card__price-soft {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--brand);
}
.plan-card__feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}
.plan-card__feats li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.plan-card__feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}
.plan-card__actions { display: grid; gap: 10px; margin-top: auto; }
.plan-card .btn { width: 100%; min-height: 48px; }
.plan-card__next {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 600;
}

.pay-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  min-width: 0;
}
.pay-check__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  user-select: none;
}
.pay-check__item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.pay-check__box {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1.5px solid rgba(246, 228, 207, 0.35);
  border-radius: 4px;
  background: transparent;
  position: relative;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.pay-check__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--on-brand);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s var(--ease);
}
.pay-check__item:hover {
  color: var(--ink);
}
.pay-check__item:hover .pay-check__box {
  border-color: rgba(246, 228, 207, 0.55);
}
.pay-check__item input:checked ~ .pay-check__box,
.pay-check__item input:checked + .pay-check__box {
  background: var(--brand);
  border-color: var(--brand);
}
.pay-check__item input:checked ~ .pay-check__box::after,
.pay-check__item input:checked + .pay-check__box::after {
  transform: rotate(45deg) scale(1);
}
.pay-check__item input:checked ~ span:last-child {
  color: var(--ink);
}
.pay-check__item input:focus-visible + .pay-check__box {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.plans__assurance {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-align: center;
}
.plans__assurance p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.plans__assurance strong { color: var(--brand); }

.plans__pay-note {
  margin: 24px auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.plans__pay-note a {
  color: var(--brand);
  font-weight: 600;
  text-underline-offset: 3px;
}
.plans__doubt {
  margin: 28px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}
.plans__doubt a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

/* ---------- Depoimentos ---------- */
.quotes { background: var(--offwhite); }
.quotes__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.quote-card blockquote {
  margin: 0 0 16px;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  border: 0;
}
.quote-card__who {
  margin: 0;
  display: grid;
  gap: 2px;
  font-size: 14px;
}
.quote-card__who strong { color: var(--brand); }
.quote-card__who span { color: var(--muted); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq .section-head { margin-bottom: clamp(24px, 4vw, 36px); }
.faq__list {
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  padding: 4px 16px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 0;
  color: var(--ink);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 700;
  color: var(--brand);
  padding-left: 12px;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
/* ---------- Primeira consulta ---------- */
.first-visit { background: var(--white); }
.first-visit__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: first;
}
.first-visit__steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--offwhite);
  counter-increment: first;
}
.first-visit__steps li::before {
  content: counter(first);
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: var(--brand);
  color: var(--on-brand);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.first-visit__steps h3 {
  grid-column: 2;
  font-size: 20px;
  margin: 0;
  padding-top: 6px;
}
.first-visit__steps p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
/* ---------- CTA band final ---------- */
.cta-band {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(246, 228, 207, 0.07), transparent 60%),
    linear-gradient(180deg, #342920 0%, #2E241C 100%);
  border-top: 1px solid var(--line);
}
.cta-band__inner {
  max-width: 720px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 0 0 14px;
}
.cta-band p {
  margin: 0 auto 24px;
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: 16.5px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.plans__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 20px;
  font-size: 14px;
}
.plans__legal a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--offwhite-2);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 36px;
  align-items: start;
  padding: clamp(40px, 6vw, 64px) 0 28px;
}
.footer__logo-chip { display: inline-block; margin-bottom: 14px; }
.footer__logo-chip img { height: 42px; width: auto; }
.footer__brand p { margin: 0 0 6px; font-size: 15px; }
.footer__brand strong { color: var(--brand); font-size: 16px; }
.footer__phone {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.footer__phone:hover { text-decoration: underline; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}
.footer__nav a:hover { color: var(--brand); }
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.footer__social-link {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--brand);
  background: var(--white);
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.footer__social-link svg { pointer-events: none; }
.footer__social-link:hover { background: var(--brand); color: var(--on-brand); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  text-align: center;
}
.footer__bottom p { margin: 0 auto; max-width: 720px; font-size: 13px; }
.footer__disclaimer { margin-top: 8px !important; color: var(--muted); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(46, 36, 28, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-sticky__btn { width: 100%; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whats);
  color: #063528;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); }

/* ---------- Legal pages ---------- */
.legal-page { background: var(--offwhite); }
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 20px 80px;
}
.legal h1 {
  font-size: clamp(30px, 5vw, 42px);
  margin: 12px 0 20px;
}
.legal h2 {
  font-size: 24px;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  color: var(--ink-soft);
  font-size: 15.5px;
}
.legal ul { padding-left: 1.2rem; }
.legal__note {
  margin: 20px 0;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.legal__back {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Thanks ---------- */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--white) 0%, var(--offwhite) 100%);
}
.thanks { width: min(560px, 100%); }
.thanks__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
}
.thanks__logo { height: 52px; width: auto; margin: 0 auto 20px; }
.thanks h1 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 12px; }
.thanks__lead { margin: 0 0 10px; color: var(--ink-soft); font-size: 16px; }
.thanks__hint {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}
.thanks__hint strong { color: var(--brand); font-weight: 700; }
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 16px;
}
.thanks__note { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- PIX modal ---------- */
.pix-modal[hidden] { display: none !important; }
.pix-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.pix-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.pix-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.pix-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.pix-modal__dialog h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 4vw, 30px);
}
.pix-modal__amount {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
}
.pix-modal__hint {
  margin: 0 auto 18px;
  max-width: 34ch;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.pix-modal__qr {
  display: grid;
  place-items: center;
  width: 260px;
  min-height: 260px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}
.pix-modal__qr img {
  display: block;
  width: 240px !important;
  height: 240px !important;
  max-width: 100%;
}
.pix-modal__meta {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.pix-modal__label {
  display: block;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pix-modal__code {
  width: 100%;
  box-sizing: border-box;
  resize: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.4;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.pix-modal__actions {
  display: grid;
  gap: 10px;
}
.pix-modal__actions .btn { width: 100%; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; margin: 0 auto; width: 100%; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 400px; margin: 0 auto; width: 100%; }
  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .gains__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  :root {
    --header-h: 64px;
    --sticky-h: 64px;
    --container: calc(100% - 32px);
    --radius: 14px;
  }
  .brand__mark-img { height: 32px; }
  .brand__aside-label { font-size: 8px; letter-spacing: 0.14em; }
  .topbar {
    height: var(--header-h);
    padding: 0 16px;
    backdrop-filter: blur(16px);
  }
  .menu-btn {
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
  }

  body { font-size: 16px; line-height: 1.65; }

  /* Hero: foto primeiro, copy enxuta — visual contemporâneo */
  .hero {
    padding: 20px 0 36px;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .hero__media {
    order: -1;
    max-width: none;
    width: 100%;
  }
  .hero__photo {
    border-radius: 18px;
    border: 0;
  }
  .hero__photo img {
    aspect-ratio: 4 / 5;
    max-height: 52vh;
    width: 100%;
    object-fit: cover;
  }
  .hero__byline { display: none; }
  .hero__title {
    font-size: clamp(30px, 8.2vw, 38px);
    margin: 0 0 12px;
    max-width: none;
  }
  .hero__lead {
    font-size: 15.5px;
    margin: 0 0 20px;
    line-height: 1.55;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
  }
  .hero__actions .btn { width: 100%; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .section-sub { font-size: 15.5px; max-width: none; }

  /* Cards editoriais: menos “caixinha”, mais lista clean */
  .pains__grid,
  .gains__grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }
  .pain-card,
  .gain-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 18px 2px;
  }
  .pain-card:last-child,
  .gain-card:last-child { border-bottom: 0; }
  .pain-card__icon,
  .gain-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(246, 228, 207, 0.08);
  }
  .pain-card__icon svg,
  .gain-card__icon svg { width: 18px; height: 18px; }
  .pain-card h3,
  .gain-card h3 { font-size: 19px; margin-bottom: 4px; }
  .pain-card p,
  .gain-card p { font-size: 15px; }

  .pains__closing {
    margin-top: 28px;
    font-size: 22px;
  }

  .trust-bar { padding: 14px 0; }
  .trust-bar__inner {
    gap: 0;
  }
  .trust-bar p {
    padding: 2px 8px;
    max-width: none;
  }
  .trust-bar p + p::before {
    top: 18%;
    bottom: 18%;
  }
  .trust-bar strong { font-size: 13.5px; }
  .trust-bar span {
    font-size: 10.5px;
    max-width: 12ch;
  }

  .about__inner { gap: 24px; }
  .about__media { max-width: none; }
  .about__photo { border-radius: 18px; border: 0; }
  .about__creds li { font-size: 14.5px; }

  .quotes__grid { grid-template-columns: 1fr; }
  .first-visit__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .first-visit__steps li {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 18px 0;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 14px;
  }
  .first-visit__steps li:last-child { border-bottom: 0; }
  .first-visit__steps li::before {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .first-visit__steps h3 { padding-top: 7px; }

  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }
  .cta-band { padding: 56px 0; }

  .plan-card {
    padding: 26px 20px;
    border-radius: 16px;
  }
  .plan-card--featured {
    box-shadow: none;
    transform: none;
  }
  .plan-card__tag {
    max-width: calc(100% - 32px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .plan-card__desc { max-width: none; }
  .plan-card__desc,
  .plan-card__feats li { font-size: 15px; }

  .btn {
    border-radius: 14px;
    font-size: 15.5px;
    min-height: 50px;
  }
  .btn--lg,
  .plan-card .btn { font-size: 15.5px; min-height: 50px; }

  .mobile-sticky {
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(46, 36, 28, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transition: transform 0.28s var(--ease);
  }
  .mobile-sticky.is-deferred { transform: translateY(110%); pointer-events: none; }
  .mobile-sticky.is-visible { transform: translateY(0); pointer-events: auto; }
  .mobile-sticky__btn { border-radius: 14px; }
  .wa-float {
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: 14px;
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    transition: bottom 0.28s var(--ease), transform 0.2s;
  }
  body.sticky-cta-on .wa-float {
    bottom: calc(var(--sticky-h) + 16px);
  }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__nav { gap: 10px 16px; }

  body { padding-bottom: env(safe-area-inset-bottom); }
  body.sticky-cta-on {
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
  }
  .footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
  body.sticky-cta-on .footer {
    padding-bottom: calc(var(--sticky-h) + 96px + env(safe-area-inset-bottom));
  }
  .footer__bottom { padding-bottom: 8px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 28px); }
  .plan-card { padding: 24px 18px; }
  .hero__photo,
  .about__photo { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mobile-sticky { transition: none; }
  .pains,
  .about,
  .gains,
  .first-visit,
  .quotes,
  .faq { content-visibility: visible; }
  .plan-card--featured { transform: none; }
}
