/* =========================================================================
   GetFoodies — Landing page styles
   Brand: forest green #003024 · lime #A8F140 · muted grey #6b756f
   ========================================================================= */

/* ----------------------------- Design tokens ----------------------------- */
:root {
  --green:        #003024;   /* primary / dark sections */
  --green-700:    #03402f;   /* slightly lighter green */
  --green-800:    #002b21;   /* deeper green */
  --lime:         #A8F140;   /* accent / CTA */
  --lime-600:     #98e02c;   /* lime hover */
  --ink:          #0e1a15;   /* near-black text */
  --grey:         #6b756f;   /* muted body text */
  --grey-200:     #e6eae7;   /* hairline borders */
  --bg:           #ffffff;
  --bg-soft:      #f5f7f4;   /* off-white sections */
  --bg-cream:     #f9faf7;

  --bad:          #e0533b;   /* "agregador" red */
  --bad-soft:     #fdeceA;

  --radius:       16px;
  --radius-sm:    12px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 2px rgba(0,48,36,.06), 0 1px 3px rgba(0,48,36,.05);
  --shadow:       0 10px 30px rgba(0,48,36,.10);
  --shadow-lg:    0 30px 60px rgba(0,48,36,.18);

  --maxw:         1200px;
  --pad:          clamp(20px, 5vw, 64px);

  --font-display: 'Anton', 'Mona Sans', 'Inter', sans-serif;
  --font-body:    'Mona Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ------------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* Never allow a stray wide child to create a horizontal scrollbar / right
     gutter on mobile. `clip` (not hidden) so position:sticky still works. */
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }

/* Grid items default to min-width:auto, which lets a wide child (a 620px
   screenshot scroll-frame) blow the column past the viewport on mobile.
   Allow every grid item that can hold a scroll-frame to shrink. */
.hero__grid > *, .offer__grid > *, .steps__grid > *,
.demo__grid > *, .guarantees__grid > *, .proof__grid > * { min-width: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ------------------------------ Layout ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: 820px; }

section { padding-block: clamp(56px, 8vw, 110px); }

.section-head { margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { text-align: center; max-width: 760px; margin-inline: auto; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 50px);
  letter-spacing: .3px;
  line-height: 1.04;
  color: var(--green);
  text-wrap: balance;
}
.section-title--light { color: #fff; }

.section-sub {
  margin-top: 18px;
  color: var(--grey);
  font-size: clamp(16px, 1.6vw, 19px);
}
.section-sub--light { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--lime);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.btn--primary {
  background: var(--lime);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(168,241,64,.35);
}
.btn--primary:hover { background: var(--lime-600); }

.btn--ghost { color: #fff; background: transparent; border-color: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.10); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-light:hover { background: #fff; color: var(--green); }

.btn--lg { padding: 17px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* -------------------------------- Nav ------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,48,36,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.18); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 70px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img { height: 32px; width: auto; }

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--lime); }

.nav__cta { display: flex; gap: 10px; }
.nav__cta .btn { padding: 11px 18px; font-size: 14.5px; }

.nav__toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 24px; height: 2.5px; border-radius: 2px;
  background: #fff; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px var(--pad) 24px;
  background: var(--green-800);
  border-top: 1px solid rgba(255,255,255,.08);
  /* Full-viewport overlay below the sticky nav so background content
     doesn't peek through and it reads as a proper menu. */
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  bottom: 0;
  height: auto;
  min-height: calc(100dvh - 70px);
  z-index: 99;
  overflow-y: auto;
}
/* Respect the `hidden` attribute (the JS toggles it). Without this, the
   class's display:flex overrides [hidden] and the panel shows on desktop. */
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  color: #fff; font-weight: 600; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu .btn { margin-top: 8px; }

/* -------------------------------- Hero ----------------------------------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(168,241,64,.16), transparent 60%),
    linear-gradient(180deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff;
  padding-block: clamp(48px, 7vw, 90px) clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
/* Grid items default to min-width:auto, which lets a wide child (the
   dashboard image) blow the column past the viewport. Allow them to shrink. */
.hero__copy, .hero__visual { min-width: 0; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: .98;
  letter-spacing: .5px;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(255,255,255,.86);
  max-width: 560px;
}
.hero__sub strong { color: var(--lime); font-weight: 700; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__actions .btn--outline {
  color: #fff; border-color: rgba(255,255,255,.5);
}
.hero__actions .btn--outline:hover { background: #fff; color: var(--green); border-color: #fff; }

.hero__microcopy {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
}

.hero__visual { position: relative; }
.hero__visual-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.10);
  transform: rotate(.4deg);
}
.hero__visual-float {
  position: absolute;
  bottom: -34px;
  left: -28px;
  width: 46%;
  min-width: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  transform: rotate(-2deg);
}

/* --------------------------- Barra de dor -------------------------------- */
.painbar {
  background: var(--bg-soft);
  border-block: 1px solid var(--grey-200);
}
.painbar__inner { text-align: center; max-width: 880px; margin-inline: auto; }
.painbar__punch {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--green);
  text-wrap: balance;
}
.painbar__support {
  margin-top: 16px;
  font-size: clamp(16px, 1.8vw, 21px);
  color: var(--grey);
}
.hl-bad  { color: var(--bad); white-space: nowrap; }
.hl-good { color: #1f8a3b; font-weight: 700; white-space: nowrap; }

/* -------------------------- Calculadora ---------------------------------- */
.calc { background: var(--bg); }
.calc__card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(24px, 4vw, 48px);
  background: var(--green);
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
}
.calc__inputs { display: flex; flex-direction: column; gap: 24px; align-self: center; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.85);
}
.field__money {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  transition: border-color .15s ease, background .15s ease;
}
.field__money:focus-within { border-color: var(--lime); background: rgba(255,255,255,.10); }
.field__prefix, .field__suffix {
  color: var(--lime); font-weight: 800; font-size: 20px;
}
.field__money input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  padding: 16px 10px;
  outline: none;
  min-width: 0;
}
/* hide number spinners */
.field__money input::-webkit-outer-spin-button,
.field__money input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.field__money input[type=number] { -moz-appearance: textfield; }

.calc__output {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
}
.calc__bars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc__bar {
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc__bar--bad  { background: rgba(224,83,59,.16); border: 1px solid rgba(224,83,59,.4); }
.calc__bar--good { background: rgba(168,241,64,.16); border: 1px solid rgba(168,241,64,.45); }
.calc__bar-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); }
.calc__bar-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1;
  margin-top: 4px;
}
.calc__bar--bad .calc__bar-value  { color: #ff9a86; }
.calc__bar--good .calc__bar-value { color: var(--lime); }
.calc__bar-note { font-size: 12.5px; color: rgba(255,255,255,.6); }

.calc__result {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}
.calc__result strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35em;
  letter-spacing: .5px;
}
.calc__result-sub {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
}
.calc__result-sub strong { color: #fff; }
.calc__output .btn { margin-top: 24px; width: 100%; }

.calc__disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--grey);
}

/* ---------------------------- Oferta / Stack ----------------------------- */
.offer { background: var(--bg-soft); }
.offer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.offer__item {
  padding: 26px 22px;
}
.offer__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lime);
  font-size: 24px;
  margin-bottom: 16px;
}
.offer__item h3 { font-size: 18px; color: var(--green); margin-bottom: 8px; line-height: 1.25; }
.offer__item p  { font-size: 15px; color: var(--grey); }
/* "add-on" badge (e.g. on the native app item, which is optional). */
.offer__addon {
  display: inline-block;
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); background: var(--lime);
  padding: 2px 8px; border-radius: var(--radius-pill);
  vertical-align: middle; margin-left: 6px;
}

.offer__showcase {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 1000px;
}
.offer__showcase img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}
.offer__showcase figcaption,
.demo__main figcaption,
.demo__side figcaption,
.proof__showcase figcaption {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: var(--grey);
}

/* --------------------------- Mecanismo (pilares) ------------------------- */
.mechanism {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(168,241,64,.12), transparent 60%),
    var(--green);
  color: #fff;
}
.mechanism__anchor { font-weight: 600; color: #fff !important; }
.mechanism__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p  { color: rgba(255,255,255,.82); font-size: 15.5px; }

/* ---------------------------- Tabela comparativa ------------------------- */
.compare { background: var(--bg); }
/* Scroll hint above the table — only meaningful on narrow screens. */
.compare__hint {
  display: none;
  text-align: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
}
.compare__scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* Right-edge fade to signal "scroll for more". */
.compare__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,48,36,.10));
  pointer-events: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.compare__table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-200);
}
.compare__table th,
.compare__table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid var(--grey-200);
}
.compare__table thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
}
.compare__table tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-cream);
}
.compare__table .compare__us {
  background: rgba(168,241,64,.14);
  color: var(--green);
}
.compare__table thead th.compare__us {
  background: var(--green);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .5px;
}
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }
/* Corner header: keep desktop look (visually empty) but provide a real
   label that surfaces on mobile where the column needs a heading. */
.compare__table thead th.compare__corner { color: transparent; }
.tick  { color: #1f8a3b; font-weight: 800; }
.cross { color: var(--bad); font-weight: 800; }
.compare__note {
  text-align: center;
  margin-top: 24px;
  max-width: 720px;
  margin-inline: auto;
  color: var(--grey);
  font-size: 16px;
}

/* ------------------------------ Como funciona ---------------------------- */
.steps { background: var(--bg-soft); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; color: var(--green); margin-bottom: 10px; }
.step p  { font-size: 15.5px; color: var(--grey); margin-bottom: 20px; }
.step__shot { margin-top: auto; }
.step__shot img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

/* --------------------------- Demonstração / mockups ---------------------- */
.demo {
  background:
    radial-gradient(800px 400px at 80% 100%, rgba(168,241,64,.10), transparent 60%),
    var(--green);
  color: #fff;
}
.demo__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.demo__main { grid-column: span 6; }
.demo__main img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.demo__side { grid-column: span 3; }
.demo__side img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}
.demo__main figcaption,
.demo__side figcaption { color: rgba(255,255,255,.72); }
.demo__cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* -------------------------------- FAQ ------------------------------------ */
.faq { background: var(--bg); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-soft);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq__item[open] { border-color: var(--lime); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  transition: transform .2s ease;
  flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--lime); }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p { color: var(--grey); font-size: 16px; }

/* ------------------------------ Garantias -------------------------------- */
.guarantees { background: var(--bg-soft); }
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.guarantee { padding: 28px 24px; text-align: center; }
.guarantee:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guarantee__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-pill);
  background: var(--lime); font-size: 26px; margin-bottom: 16px;
}
.guarantee h3 { font-size: 18px; color: var(--green); margin-bottom: 8px; line-height: 1.25; }
.guarantee p  { font-size: 15px; color: var(--grey); }

/* ------------------------------ Prova ------------------------------------ */
.proof { background: var(--bg); }
.proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.proof__logos li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  min-width: 160px;
}
.proof__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .5px;
  color: var(--green);
}
.proof__logos small { font-size: 12.5px; color: var(--grey); }
.proof__showcase { max-width: 980px; margin-inline: auto; }
.proof__showcase img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

/* ----------------------------- CTA final --------------------------------- */
.final-cta {
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(168,241,64,.18), transparent 60%),
    var(--green);
  color: #fff;
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: .4px;
  text-wrap: balance;
}
.final-cta__recap {
  margin: 22px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 19px);
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.final-cta__microcopy {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
}

/* ------------------------------- Rodapé ---------------------------------- */
.footer {
  background: var(--green-800);
  color: rgba(255,255,255,.8);
  padding-top: clamp(48px, 6vw, 72px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand img {
  height: 40px; width: auto;
}
.footer__tagline { margin-top: 16px; max-width: 280px; font-size: 15px; }
.footer__col h4 {
  color: #fff; font-size: 14px; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.footer__col a, .footer__contact span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  padding: 6px 0;
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--lime); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-block: 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}

/* ============================ Responsive ================================= */
@media (max-width: 1024px) {
  .offer__grid     { grid-template-columns: repeat(2, 1fr); }
  .guarantees__grid{ grid-template-columns: repeat(2, 1fr); }
  .nav__links      { gap: 18px; }
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 36px; }
  .hero__visual-float { bottom: -22px; left: 0; }

  .calc__card { grid-template-columns: 1fr; }
  .mechanism__grid { grid-template-columns: 1fr; }
  .steps__grid     { grid-template-columns: 1fr; }
  .step__shot { max-width: 420px; }

  .demo__side { grid-column: span 3; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  /* Large phones: single-column offer/guarantee cards so they aren't cramped. */
  .offer__grid, .guarantees__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .calc__bars { grid-template-columns: 1fr; }
  .demo__grid { grid-template-columns: 1fr; }
  .demo__main, .demo__side { grid-column: 1 / -1; }
  .hero__actions .btn, .final-cta__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }

  /* ---- Comparison table: scroll hint + sticky label column ---- */
  .compare__hint { display: block; }
  .compare__table thead th.compare__corner { color: var(--green); }
  .compare__table th,
  .compare__table td { padding: 12px 14px; font-size: 14px; }
  .compare__table thead th { font-size: 14px; }
  .compare__table thead th.compare__us { font-size: 17px; }
  /* Pin the row-label column so labels stay readable while scrolling. */
  .compare__table thead th:first-child,
  .compare__table tbody th[scope="row"] {
    position: sticky;
    left: 0;
    z-index: 1;
  }
  /* Sticky cells need an opaque background + a separating edge. */
  .compare__table thead th:first-child { background: var(--bg-soft); }
  .compare__table tbody th[scope="row"] {
    background: var(--bg-cream);
    box-shadow: 1px 0 0 var(--grey-200);
  }

  /* ---- Product screenshots: show wide desktop captures at a readable
         intrinsic size inside a horizontal scroll frame, instead of
         shrinking them to mush. A subtle border hints at the scroll. ---- */
  .step__shot,
  .offer__showcase,
  .demo__main,
  .demo__side,
  .proof__showcase {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .step__shot img,
  .offer__showcase img,
  .demo__main img,
  .demo__side img,
  .proof__showcase img {
    min-width: 620px;
    max-width: none;
    width: 620px;
  }
  /* GIF mockups are already small/legible - keep them fitting the card. */
  .demo__side:has(img[src$=".gif"]) { overflow-x: visible; }
  .demo__side img[src$=".gif"],
  .hero__visual-float img {
    min-width: 0;
    width: 100%;
  }
  /* Hero dashboard is an impression shot, not a read-the-UI shot: let it
     fit the full width on mobile (no scroll frame, no forced min-width). */
  .hero__visual-main {
    overflow: hidden;
    transform: none;
  }
  .hero__visual-main img { min-width: 0; width: 100%; max-width: 100%; }

  /* Roomier footer tap targets (>=44px rows). */
  .footer__col a, .footer__contact span { padding: 10px 0; }
}

/* --------------------------- Motion preferences -------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .btn:hover, .card:hover, .offer__item:hover, .guarantee:hover { transform: none; }
}
