/* =========================================================
   JLO Nutri — Design System
   Paleta Stone & Cocoa Premium — tons levemente mais profundos
   ========================================================= */
:root {
  --cream: #f1eee9;      /* off-white premium (mais profundo) */
  --cream-2: #e4dfd7;    /* stone aquecido */
  --sand: #d4ccc2;
  --ink: #241f1c;        /* carvão profundo — texto */
  --ink-soft: #453f3a;   /* texto secundário */
  --muted: #7a726a;      /* taupe */
  --brand: #3d2e24;      /* cocoa escuro — títulos / marca */
  --brand-2: #524033;
  --brand-soft: #ddd5cb;
  --gold: #9e7554;       /* cobre mais profundo — acento */
  --gold-soft: #dcc9b4;
  --rose: #a66b5a;       /* blush só em detalhes */
  --white: #faf9f7;
  --line: rgba(36, 31, 28, 0.14);
  --whats: #25d366;

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

  --container: min(1160px, calc(100% - 40px));
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(36, 31, 28, 0.12);
  --shadow-sm: 0 8px 24px rgba(36, 31, 28, 0.08);
  --header-h: 100px;
  --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(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand);
  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: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--brand);
  color: var(--white);
  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;
  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.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn--lg { min-height: 58px; padding: 0 34px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 55, 44, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover {
  background: var(--brand);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--whats {
  background: var(--whats);
  color: #063528;
  box-shadow: var(--shadow-sm);
}
.btn--whats:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* ---------- Barra de aviso ---------- */
.announce {
  background: var(--brand);
  color: var(--cream);
  text-align: center;
  font-size: 13.5px;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.announce strong { color: var(--gold-soft); }

/* ---------- Cabeçalho ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(241, 238, 233, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  width: auto;
  display: block;
}
.brand__logo--desktop {
  height: 84px;
}
.brand__logo--mobile {
  display: none;
  height: 52px;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--brand); }
.brand__role { font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }

.desktop-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.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;
}
.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); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px clamp(20px, 4vw, 40px) 28px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn { justify-content: center; border: none; margin-top: 14px; color: var(--cream); }

/* ---------- Seções ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.section-head h2 { font-size: clamp(30px, 5vw, 46px); }
.section-sub {
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 90px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--brand-soft), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 68px);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.hero__title em { color: var(--rose); font-style: italic; }
.hero__lead {
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-display); font-size: 22px; color: var(--brand); }
.hero__trust span { font-size: 13px; color: var(--muted); }

.hero__micro {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.5;
}

.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 var(--rose);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--rose); border-color: var(--brand); }

/* ---------- Benefícios ---------- */
.gains { background: var(--cream); }
.gains__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gain-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.gain-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.gain-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

.hero__media {
  position: relative;
}
.hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--sand), var(--brand-soft));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.hero__photo-note, .about__photo-note {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-2);
  text-align: center;
  opacity: 0.6;
}

/* ---------- Dores ---------- */
.pains { background: var(--white); }
.pains__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pain-card__icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 16px;
}
.pain-card h3 { font-size: 21px; margin-bottom: 8px; }
.pain-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.pains__cta { text-align: center; margin-top: 44px; }

/* ---------- Sobre ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__photo {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--brand-soft), var(--sand));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.about__copy h2 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 20px; }
.about__copy p { color: var(--ink-soft); margin: 0 0 16px; }
.about__creds {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.about__creds li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--brand); }
.about__creds span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--cream);
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- Consultas / Planos ---------- */
.plans { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

.pay-methods {
  list-style: none;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 720px;
}
.pay-methods__item {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.plans__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  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: 34px 28px;
  box-shadow: var(--shadow-sm);
}
.plan-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.plan-card__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.plan-card__for {
  margin: 0 0 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose);
}
.plan-card__name { font-size: 26px; margin-bottom: 6px; }
.plan-card__desc { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 18px; min-height: 42px; }
.plan-card__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1;
}
.plan-card__price span { font-size: 20px; vertical-align: super; }
.plan-card__price small { font-size: 15px; font-family: var(--font-body); color: var(--muted); font-weight: 600; }
.plan-card__price-soft {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--brand);
}
.plan-card__feats {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}
.plan-card__feats li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.plan-card__feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 800;
}
.plan-card__actions { display: grid; gap: 10px; }
.plan-card .btn { width: 100%; }
.plans__note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }
.plans__note code {
  font-size: 12.5px;
  background: var(--brand-soft);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--brand);
}
.plans__flow {
  margin-top: clamp(36px, 5vw, 52px);
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin-inline: auto;
}
.plans__flow-title {
  font-size: clamp(22px, 3vw, 28px);
  text-align: center;
  margin-bottom: 18px;
}
.plans__flow-steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.plans__flow-steps li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.plans__flow-steps strong { color: var(--brand); }
.plans__flow-steps em { font-style: normal; font-weight: 700; color: var(--brand); }
.plans__flow .plans__note { margin-top: 8px; text-align: left; }

/* ---------- Como funciona ---------- */
.how { background: var(--brand); }
.how .eyebrow { color: var(--gold-soft); }
.how h2 { color: var(--cream); }
.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 30px 24px;
}
.how-step__num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.how-step h3 { color: var(--cream); font-size: 22px; margin-bottom: 8px; }
.how-step p { margin: 0; font-size: 15px; color: rgba(251, 247, 242, 0.82); }

/* ---------- Depoimentos ---------- */
.testi { background: var(--white); }
.testi__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.testi-card__stars { color: var(--gold); letter-spacing: 3px; margin: 0 0 14px; }
.testi-card blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
}
.testi-card__author { margin: 0; font-size: 14px; font-weight: 700; color: var(--brand); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.faq__list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--brand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- CTA final + Contato ---------- */
.cta-final { background: linear-gradient(180deg, var(--cream-2), var(--sand)); }
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.cta-final__copy h2 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 18px; }
.cta-final__copy p { color: var(--ink-soft); margin: 0 0 24px; }
.cta-final__contacts { margin-top: 18px; font-size: 15px; }
.cta-final__contacts a { color: var(--brand); font-weight: 600; }
.cta-final__bullets {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.cta-final__bullets li {
  position: relative;
  padding-left: 16px;
}
.cta-final__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.lead-form__title { font-family: var(--font-display); font-size: 24px; color: var(--brand); margin: 0 0 6px; }
.lead-form__sub { margin: 0 0 20px; font-size: 14.5px; color: var(--ink-soft); }
.lead-form__field span em { font-style: normal; font-weight: 500; color: var(--muted); }
.lead-form__field { display: block; margin-bottom: 16px; }
.lead-form__field span { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.lead-form__field input,
.lead-form__field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.lead-form__field textarea { resize: vertical; }
.lead-form__note { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---------- Rodapé ---------- */
.footer { background: var(--brand); color: rgba(251, 247, 242, 0.86); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding: clamp(48px, 6vw, 72px) 0 36px;
}
.footer__logo-chip {
  display: inline-block;
  background: #f1eee9;
  padding: 12px 20px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.footer__logo-chip img {
  height: 72px;
  width: auto;
  display: block;
}
.footer__brand p { margin: 0 0 6px; font-size: 15px; }
.footer__brand strong { color: var(--cream); font-size: 17px; }
.footer__crn { font-size: 13px; color: var(--gold-soft); }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: rgba(251, 247, 242, 0.86); text-decoration: none; font-weight: 600; font-size: 15px; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer__social-link:hover { background: var(--gold); color: var(--brand); transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0 32px;
  text-align: center;
}
.footer__bottom p { margin: 0 auto; max-width: 720px; font-size: 13px; }
.footer__disclaimer { margin-top: 8px !important; color: rgba(251, 247, 242, 0.55); }

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

/* ---------- Reveal (animação de entrada) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin: 0 auto; width: 100%; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; width: 100%; }
  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .gains__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-card--featured { transform: none; }
  .testi__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .cta-final__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  :root { --header-h: 72px; }
  .brand__logo--desktop { display: none; }
  .brand__logo--mobile { display: block; height: 48px; }
  .footer__logo-chip img { height: 56px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .pains__grid { grid-template-columns: 1fr; }
  .gains__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

/* ---------- Página de confirmação (obrigado.html) ---------- */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(900px 500px at 10% -10%, var(--brand-soft), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.thanks {
  width: min(560px, 100%);
}
.thanks__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
}
.thanks__logo {
  height: 72px;
  width: auto;
  margin: 0 auto 22px;
}
.thanks h1 {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 14px;
}
.thanks__lead {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 16px;
}
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 26px 0 18px;
}
.thanks__note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
