/* ============================================================
   HABITFY — Landing Page
   Design system extraído do app real (verde sálvia + creme)
   Mobile-first · White mode · Premium
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand greens */
  --forest-900: #0F2916;
  --forest-800: #15331E;
  --forest-700: #1C4527;
  --forest-600: #235C33;
  --green-500: #3E9B4F;
  --green-400: #56B567;
  --green-300: #7BC987;

  /* Sage (UI do app) */
  --sage-600: #7E9579;
  --sage-500: #8FA68A;
  --sage-400: #A6B89F;
  --sage-300: #C5D0BC;
  --sage-200: #DCE3D5;
  --sage-100: #E9EEE3;

  /* Warm neutrals */
  --bg: #F6EEE7;
  --bg-2: #F1E7DD;
  --surface: #FFFFFF;
  --surface-soft: #FBF6F0;
  --cream-emoji: #F3EAE2;

  /* Ink / text */
  --ink: #16201A;
  --ink-2: #44514A;
  --muted: #7C887E;

  /* Lines */
  --border: #ECE3D9;
  --border-2: #E2D8CC;

  /* Accent / semantic */
  --accent: var(--forest-700);
  --accent-strong: var(--forest-800);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadows — soft, layered (Soft UI evolution) */
  --sh-xs: 0 1px 2px rgba(21, 51, 30, .05);
  --sh-sm: 0 4px 14px rgba(21, 51, 30, .06);
  --sh-md: 0 14px 40px -12px rgba(21, 51, 30, .14);
  --sh-lg: 0 30px 70px -24px rgba(21, 51, 30, .26);
  --sh-cta: 0 12px 30px -8px rgba(21, 51, 30, .45);

  /* Layout */
  --maxw: 1160px;
  --gutter: 22px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .45s;

  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--sage-300); color: var(--forest-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 8.4vw, 4.2rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 5.4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 11vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 8vw, 90px); }
.bg-cream { background: var(--bg); }
.bg-white { background: var(--surface); }
.bg-soft { background: var(--surface-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--sage-400));
}
.section-head { max-width: 660px; margin-bottom: clamp(36px, 6vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 18px; font-size: clamp(1.02rem, 2.4vw, 1.2rem); color: var(--ink-2); }
.lead { color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background-color .3s, color .3s;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--green-400); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest-700) 0%, var(--forest-800) 60%, var(--forest-900) 100%);
  box-shadow: var(--sh-cta);
  position: relative;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(86,181,103,.55), rgba(86,181,103,0) 45%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -8px rgba(21,51,30,.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  color: var(--forest-800);
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--border-2), var(--sh-xs);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--sage-400), var(--sh-sm); }

.btn-lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-arrow svg { transition: transform .3s var(--ease-out); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600;
  font-family: var(--font-head);
  background: var(--sage-100);
  color: var(--forest-700);
  box-shadow: inset 0 0 0 1px var(--sage-200);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(62,155,79,.18); }
.chip-discount {
  background: linear-gradient(135deg, var(--green-500), var(--forest-700));
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(62,155,79,.6);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 238, 231, .85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(21,51,30,.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 25px; width: auto; }

.nav-links { display: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { --pad-y: 11px; --pad-x: 20px; font-size: .94rem; }
.nav-login { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 12px;
}
.nav-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--forest-800); transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 99;
  background: rgba(250, 246, 240, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--gutter) 28px;
  display: grid; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease-out), opacity .3s;
  box-shadow: var(--sh-md);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 12px 8px; border-radius: 12px;
}
.mobile-menu a:not(.btn):active { background: var(--sage-100); }
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu .btn-primary { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 104px; padding-bottom: clamp(48px, 9vw, 90px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.hero-bg .g1 { width: 460px; height: 460px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(123,201,135,.5), transparent 70%); }
.hero-bg .g2 { width: 420px; height: 420px; bottom: -160px; left: -150px; background: radial-gradient(circle, rgba(143,166,138,.45), transparent 70%); }
.hero-bg .g3 { width: 280px; height: 280px; top: 30%; left: 55%; background: radial-gradient(circle, rgba(214,229,198,.6), transparent 70%); }

.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 44px; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }

.hero-copy { text-align: center; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl {
  color: var(--forest-700);
  background-image: linear-gradient(90deg, rgba(123,201,135,.45), rgba(197,208,188,.55));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% .32em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-bottom: .04em;
}
.hero-sub { font-size: clamp(1.06rem, 3vw, 1.28rem); color: var(--ink-2); max-width: 540px; margin: 0 auto 30px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; max-width: 360px; margin: 0 auto; }
.hero-price-line { margin-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .94rem; color: var(--muted); }
.hero-price-line .price-now { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.hero-price-line .price-old { text-decoration: line-through; opacity: .7; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; margin-top: 26px; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--ink-2); font-weight: 500; }
.hero-trust .t svg { width: 17px; height: 17px; color: var(--green-500); flex: none; }

/* Hero phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phones { position: relative; }
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head);
}
.float-card .fc-ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card .fc-t { font-size: .78rem; color: var(--muted); font-weight: 500; line-height: 1.2; }
.float-card .fc-v { font-size: .98rem; color: var(--ink); font-weight: 700; line-height: 1.2; }
.fc-streak { top: 8%; left: -8px; }
.fc-streak .fc-ic { background: linear-gradient(135deg, #FFE6B0, #F7C66B); color: #B8770C; }
.fc-mood { bottom: 12%; right: -6px; }
.fc-mood .fc-ic { background: var(--sage-100); color: var(--forest-700); }

/* Phone frame */
.phone {
  position: relative;
  width: min(300px, 78vw);
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(155deg, #20271F, #0B120C);
  box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #0B120C; border-radius: var(--r-pill); z-index: 2;
}
.phone img { width: 100%; border-radius: 38px; display: block; }
.phone--sm { width: min(210px, 56vw); border-radius: 36px; }
.phone--sm::before { width: 66px; height: 19px; top: 12px; }
.phone--sm img { border-radius: 29px; }

/* ============================================================
   MARQUEE / VALUE STRIP
   ============================================================ */
.value-strip { border-block: 1px solid var(--border); background: var(--surface-soft); }
.value-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; padding-block: 34px; }
.value-item { display: flex; gap: 13px; align-items: flex-start; }
.value-item .vi-ic { flex: none; width: 42px; height: 42px; border-radius: 13px; background: var(--sage-100); display: grid; place-items: center; color: var(--forest-700); box-shadow: inset 0 0 0 1px var(--sage-200); }
.value-item .vi-ic svg { width: 21px; height: 21px; }
.value-item h4 { font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.value-item p { font-size: .85rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature {
  display: grid; gap: 34px; align-items: center;
  padding-block: clamp(40px, 7vw, 70px);
}
.feature + .feature { border-top: 1px solid var(--border); }
.feature-media { position: relative; display: flex; justify-content: center; }
.feature-copy .eyebrow { margin-bottom: 16px; }
.feature-copy h3 { font-size: clamp(1.6rem, 4.6vw, 2.3rem); letter-spacing: -0.03em; margin-bottom: 16px; color: var(--ink); }
.feature-copy p { font-size: 1.06rem; color: var(--ink-2); margin-bottom: 22px; }
.feature-list { display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.feature-list li svg { flex: none; width: 22px; height: 22px; color: var(--green-500); margin-top: 1px; }
.feature-list li strong { display: block; color: var(--ink); font-weight: 600; }

/* soft halo behind feature phones */
.feature-media::before {
  content: ""; position: absolute; z-index: 0;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,166,138,.30), transparent 70%);
  filter: blur(28px);
}
.feature-media .phone, .feature-media .mock { position: relative; z-index: 1; }

/* Tarefas CSS mock */
.mock {
  width: min(320px, 86vw);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 22px 20px 24px;
}
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-head .mh-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.mock-head .mh-date { font-size: .8rem; color: var(--muted); font-weight: 600; }
.task {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 14px; border-radius: var(--r-md);
  background: var(--surface-soft); border: 1px solid var(--border);
  margin-bottom: 11px;
}
.task .tbox { flex: none; width: 24px; height: 24px; border-radius: 8px; border: 2px solid var(--sage-400); display: grid; place-items: center; transition: .25s; }
.task .tbox svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.task.done .tbox { background: var(--sage-500); border-color: var(--sage-500); }
.task.done .tbox svg { opacity: 1; }
.task .tlabel { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem; }
.task.done .tlabel { color: var(--muted); text-decoration: line-through; }
.task .ttag { margin-left: auto; font-size: .72rem; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); background: var(--sage-100); color: var(--forest-700); }

/* ============================================================
   DEMO GALLERY
   ============================================================ */
.gallery-scroll {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item { scroll-snap-align: center; flex: 0 0 auto; }
.gallery-item .phone { width: min(250px, 64vw); }
.gallery-caption { text-align: center; margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); }
.gallery-dots { display: flex; gap: 8px; justify-content: center; margin-top: 6px; }
.gallery-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-300); transition: .3s; }
.gallery-dots button.active { background: var(--forest-700); width: 22px; border-radius: 4px; }
.gallery-hint { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; gap: 16px; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--sage-300); }
.benefit-card .bc-ic {
  width: 50px; height: 50px; border-radius: 15px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sage-100), #fff);
  box-shadow: inset 0 0 0 1px var(--sage-200);
  color: var(--forest-700);
}
.benefit-card .bc-ic svg { width: 25px; height: 25px; }
.benefit-card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.benefit-card p { font-size: .96rem; color: var(--ink-2); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap { display: grid; justify-items: center; }
.price-card {
  width: 100%; max-width: 440px;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.price-card .pc-top {
  padding: 30px 28px 26px;
  background: linear-gradient(160deg, var(--forest-700), var(--forest-900));
  color: #fff; position: relative; overflow: hidden;
}
.price-card .pc-top::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  top: -90px; right: -70px; background: radial-gradient(circle, rgba(123,201,135,.45), transparent 70%);
}
.price-card .pc-badge {
  display: inline-flex; align-items: center; gap: 7px; position: relative; z-index: 1;
  background: rgba(255,255,255,.16); color: #fff;
  padding: 6px 13px; border-radius: var(--r-pill); font-size: .8rem; font-weight: 700;
  font-family: var(--font-head); margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.price-card .pc-plan { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 600; font-size: .95rem; opacity: .85; }
.price-amount { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 8px; margin-top: 6px; }
.price-amount .cur { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 9px; }
.price-amount .val { font-family: var(--font-head); font-weight: 800; font-size: 3.6rem; line-height: .9; letter-spacing: -0.04em; }
.price-amount .per { font-size: .95rem; opacity: .8; margin-bottom: 9px; }
.price-old-row { position: relative; z-index: 1; margin-top: 12px; display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.price-old-row .old { text-decoration: line-through; opacity: .7; }
.price-old-row .save { background: var(--green-400); color: var(--forest-900); font-weight: 800; padding: 3px 10px; border-radius: var(--r-pill); font-family: var(--font-head); font-size: .8rem; }

.price-card .pc-body { padding: 26px 28px 30px; }
.price-features { display: grid; gap: 13px; margin-bottom: 24px; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; color: var(--ink-2); }
.price-features li svg { flex: none; width: 21px; height: 21px; color: var(--green-500); margin-top: 1px; }
.pc-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.pc-note svg { width: 15px; height: 15px; color: var(--sage-500); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  display: grid; gap: 26px; align-items: center;
  background: linear-gradient(150deg, var(--surface-soft), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 6vw, 50px);
  box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
}
.guarantee-seal {
  width: 124px; height: 124px; border-radius: 50%; flex: none; justify-self: center;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 35% 30%, #fff, var(--sage-100));
  box-shadow: var(--sh-md), inset 0 0 0 2px var(--sage-200);
  position: relative;
}
.guarantee-seal::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 2px dashed var(--sage-300);
}
.guarantee-seal .gs-num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--forest-700); line-height: 1; }
.guarantee-seal .gs-txt { font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-600); }
.guarantee h2 { font-size: clamp(1.5rem, 4.4vw, 2.1rem); margin-bottom: 12px; }
.guarantee p { font-size: 1.04rem; color: var(--ink-2); }

/* ============================================================
   TESTIMONIALS (placeholders editáveis)
   ============================================================ */
.placeholder-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF7E6; color: #8A6A1A;
  border: 1px dashed #E8CF93;
  border-radius: var(--r-pill); padding: 7px 15px;
  font-size: .8rem; font-weight: 600; font-family: var(--font-head);
  margin-top: 16px;
}
.placeholder-note svg { width: 16px; height: 16px; }
.testi-grid { display: grid; gap: 16px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-xs);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-card[data-placeholder] { border-style: dashed; border-color: var(--sage-300); background: var(--surface-soft); }
.testi-stars { display: flex; gap: 3px; color: #F4B740; }
.testi-stars svg { width: 18px; height: 18px; }
.testi-quote { font-size: 1.02rem; color: var(--ink); line-height: 1.55; font-family: var(--font-head); font-weight: 500; }
.testi-quote .ph { color: var(--muted); font-weight: 500; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-author .ta-av { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-200); overflow: hidden; flex: none; box-shadow: inset 0 0 0 1px var(--sage-300); }
.testi-author .ta-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-author .ta-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.testi-author .ta-role { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CREATOR (Gabriela)
   ============================================================ */
.creator {
  display: grid; gap: 30px; align-items: center;
}
.creator-photo { position: relative; justify-self: center; max-width: 380px; width: 100%; }
.creator-photo img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 4/5; object-fit: cover; }
.creator-photo .cp-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 10px 18px;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--forest-800); white-space: nowrap;
}
.creator-photo .cp-badge svg { width: 18px; height: 18px; color: var(--green-500); }
.creator-copy .eyebrow { margin-bottom: 14px; }
.creator-copy h2 { margin-bottom: 6px; }
.creator-name-role { font-family: var(--font-head); font-weight: 600; color: var(--sage-600); margin-bottom: 18px; font-size: 1.05rem; }
.creator-copy p { font-size: 1.04rem; color: var(--ink-2); margin-bottom: 16px; }
.creator-copy .ph-text { color: var(--muted); font-style: italic; }
.creator-quote {
  border-left: 3px solid var(--sage-400); padding: 6px 0 6px 18px; margin: 22px 0;
  font-family: var(--font-head); font-weight: 500; font-size: 1.1rem; color: var(--ink); font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color: var(--sage-300); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--ink);
}
.faq-q .faq-ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sage-100); display: grid; place-items: center; transition: transform .35s var(--ease), background-color .3s; }
.faq-q .faq-ic svg { width: 16px; height: 16px; color: var(--forest-700); }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--sage-500); }
.faq-item.open .faq-q .faq-ic svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--ink-2); font-size: .99rem; line-height: 1.6; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; }
.final-cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--forest-700), var(--forest-900));
  border-radius: var(--r-xl);
  padding: clamp(40px, 8vw, 76px) clamp(24px, 5vw, 60px);
  text-align: center; color: #fff;
  box-shadow: var(--sh-lg);
}
.final-cta-card .glow {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.final-cta-card .fg1 { width: 320px; height: 320px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(86,181,103,.5), transparent 70%); }
.final-cta-card .fg2 { width: 280px; height: 280px; bottom: -130px; left: -90px; background: radial-gradient(circle, rgba(143,166,138,.4), transparent 70%); }
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-card .eyebrow { color: var(--green-300); justify-content: center; }
.final-cta-card .eyebrow::before { background: var(--green-400); }
.final-cta-card h2 { color: #fff; margin: 14px auto 18px; max-width: 640px; }
.final-cta-card p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 30px; font-size: 1.08rem; }
.final-cta-card .btn-primary {
  background: #fff; color: var(--forest-800);
  box-shadow: 0 14px 34px -10px rgba(0,0,0,.45);
}
.final-cta-card .btn-primary::after { background: linear-gradient(135deg, rgba(123,201,135,.35), transparent 50%); }
.final-cta-card .btn-primary:hover { color: var(--forest-900); }
.final-cta-card .fc-price { margin-top: 18px; font-size: .92rem; color: rgba(255,255,255,.75); }
.final-cta-card .fc-price b { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-soft); border-top: 1px solid var(--border); padding-block: 50px 30px; }
.footer-top { display: grid; gap: 30px; }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; color: var(--muted); max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.footer-col h5 { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .92rem; color: var(--ink-2); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--forest-700); }
.footer-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
  font-size: .83rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--forest-700); }

/* ============================================================
   SCROLL REVEAL
   Conteúdo é visível por padrão. As animações só ativam quando o
   JS adiciona .reveal-ready ao <html> — assim, se o JS falhar ou
   demorar, nada fica invisível.
   ============================================================ */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-ready [data-reveal].in { opacity: 1; transform: none; }
.reveal-ready [data-reveal-delay="1"] { transition-delay: .08s; }
.reveal-ready [data-reveal-delay="2"] { transition-delay: .16s; }
.reveal-ready [data-reveal-delay="3"] { transition-delay: .24s; }
.reveal-ready [data-reveal-delay="4"] { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .value-strip .container { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
  .hero-actions .btn { flex: 0 1 auto; }
}

@media (min-width: 860px) {
  :root { --gutter: 32px; }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .nav-links a {
    font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-2);
    padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background-color .2s;
  }
  .nav-links a:hover { color: var(--forest-800); background: var(--sage-100); }
  .nav-login { display: inline-flex; font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--ink-2); padding: 9px 6px; }
  .nav-login:hover { color: var(--forest-800); }
  .nav-toggle { display: none; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 30px; }
  .hero-copy { text-align: left; }
  .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; margin-inline: 0; }
  .hero-price-line { align-items: flex-start; }
  .hero-trust { justify-content: flex-start; }

  .value-strip .container { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }

  .feature { grid-template-columns: 1fr 1fr; gap: 56px; }
  .feature.reverse .feature-media { order: 2; }
  .feature.reverse .feature-copy { order: 1; }

  .guarantee { grid-template-columns: auto 1fr; gap: 40px; text-align: left; }
  .guarantee-seal { justify-self: start; }

  .creator { grid-template-columns: .85fr 1.15fr; gap: 50px; }

  .footer-top { grid-template-columns: 1.4fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1040px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .phone { width: 320px; }
}

/* Larger fluid hero on wide screens */
@media (min-width: 1240px) {
  .hero { padding-top: 120px; }
}

/* ============================================================
   LEGAL PAGES (Termos de Uso / Política de Privacidade)
   ============================================================ */
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 238, 231, .9);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.legal-nav .nav-inner { height: 64px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-2);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background-color .2s;
}
.legal-back:hover { color: var(--forest-800); background: var(--sage-100); }
.legal-back svg { width: 18px; height: 18px; }

.legal-hero { padding: clamp(34px, 7vw, 60px) 0 14px; }
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 { font-size: clamp(2rem, 7vw, 3.1rem); }
.legal-updated { margin-top: 14px; color: var(--muted); font-size: .9rem; }

.legal-content { max-width: 820px; padding-bottom: clamp(56px, 10vw, 96px); }
.legal-content h2 {
  font-size: clamp(1.2rem, 3.6vw, 1.5rem); margin: 40px 0 12px; scroll-margin-top: 84px;
}
.legal-content h2:first-of-type { margin-top: 18px; }
.legal-content h3 { font-size: 1.06rem; margin: 24px 0 8px; color: var(--ink); }
.legal-content p { color: var(--ink-2); font-size: 1rem; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px; padding: 0; display: grid; gap: 9px; }
.legal-content li { display: flex; gap: 11px; color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
.legal-content li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--sage-400); margin-top: .62em; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 2px; }

.legal-toc {
  background: var(--surface-soft); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px; margin: 4px 0 8px;
}
.legal-toc h4 {
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 700;
}
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; }
.legal-toc a { color: var(--ink-2); text-decoration: none; font-size: .96rem; }
.legal-toc a:hover { color: var(--forest-700); text-decoration: underline; }

.legal-callout {
  background: var(--sage-100); border: 1px solid var(--sage-200);
  border-radius: var(--r-md); padding: 16px 18px; margin: 18px 0;
  font-size: .95rem; color: var(--forest-800);
}
.legal-callout strong { color: var(--forest-900); }

/* ============================================================
   LEGAL MODALS (Termos / Privacidade em popup)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(15, 25, 18, .52);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  display: flex; flex-direction: column;
  width: 100%; max-width: 760px; max-height: 92vh;
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  transform: translateY(26px);
  transition: transform .38s var(--ease-out);
}
.modal-overlay.open .modal { transform: none; }

.modal-header {
  flex: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px; border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.modal-title { font-size: 1.18rem; letter-spacing: -0.02em; }
.modal-close {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-2);
  background: var(--surface-soft); box-shadow: inset 0 0 0 1px var(--border);
  transition: background-color .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--sage-100); color: var(--forest-800); }
.modal-close:active { transform: scale(.94); }
.modal-close svg { width: 20px; height: 20px; }

.modal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 22px 24px 30px; }
.modal-body .legal-content { max-width: none; padding: 0; }
.modal-body .legal-content h2 { font-size: 1.12rem; margin: 28px 0 10px; scroll-margin-top: 0; }
.modal-body .legal-content > p:first-of-type,
.modal-body .legal-updated { margin-top: 0; }
.modal-body .legal-content h2:first-of-type { margin-top: 16px; }

body.modal-open { overflow: hidden; }

@media (min-width: 700px) {
  .modal-overlay { align-items: center; padding: 26px; }
  .modal { border-radius: var(--r-xl); max-height: 85vh; transform: translateY(0) scale(.965); }
  .modal-overlay.open .modal { transform: scale(1); }
  .modal-header { padding: 20px 26px; }
  .modal-body { padding: 26px 30px 34px; }
}
