/* Aura Lembretes — landing
   Tokens espelhados de _referencia/design-system/colors_and_type.css (que por sua
   vez espelha globals.css do webapp). Regras de marca que valem aqui:
     · fundo nunca é branco puro — cartão é branco, página é creme
     · nada de gradiente de fundo
     · o disco amarelo cheio aparece UMA vez na página (hero)
     · ícones são Lucide, traço 2px, tamanhos 18/20/22/24
   ====================================================================== */

:root {
  /* Verdes */
  --ink: #01332e;
  --ink-2: #1b4840;
  --ink-3: #025c53;
  --leaf: #2f7a6a;
  --leaf-soft: #e0e9c7;

  /* Papel */
  --paper: #fefdf0;
  --paper-2: #f6f3e3;
  --paper-3: #ecf1d9;
  --white: #ffffff;

  /* Acentos das sub-marcas */
  --yellow: #f7e933;
  --yellow-hi: #fff04a;
  --mint: #3de2a7;
  --blue: #2f84f6;

  /* Semânticos */
  --success: #1f8a5b;
  --success-soft: #d6f1e0;
  --warning-soft: #fde9c8;
  --danger: #c0392b;
  --danger-soft: #fadbd6;
  --info-soft: #d8e6ff;

  /* Linhas e textos de apoio */
  --line: rgba(1, 51, 46, 0.1);
  --line-strong: rgba(1, 51, 46, 0.22);
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #5a6e69;
  --muted-dark: rgba(255, 255, 255, 0.7);

  /* Elevação */
  --shadow-sm: 0 2px 4px rgba(1, 51, 46, 0.06), 0 1px 2px rgba(1, 51, 46, 0.04);
  --shadow-md: 0 4px 12px rgba(1, 51, 46, 0.08), 0 2px 4px rgba(1, 51, 46, 0.04);
  --shadow-lg: 0 12px 28px rgba(1, 51, 46, 0.12), 0 4px 8px rgba(1, 51, 46, 0.06);
  --shadow-hover: 0 16px 36px rgba(1, 51, 46, 0.16);
  --shadow-yellow: 0 12px 28px rgba(247, 233, 51, 0.45);

  /* Forma */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 999px;

  /* Movimento */
  --ease: cubic-bezier(0.2, 0.7, 0.25, 1);
  --dur: 200ms;

  --wrap: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--ink-2);
  text-decoration-color: var(--line-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--ink-3);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip,
.vh {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
}

/* ── Layout base ────────────────────────────────────────────────────── */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.wrap.narrow {
  max-width: 46rem;
}

.center {
  text-align: center;
}

.section {
  padding: clamp(3.5rem, 2rem + 5vw, 6.5rem) 0;
}

.section-soft {
  background: var(--paper-2);
}

.section-sage {
  background: var(--paper-3);
}

.section-dark {
  background: var(--ink);
  color: var(--muted-dark);
}

/* ── Tipografia ─────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 1.4rem + 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex: 0 0 auto;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.25rem, 1rem + 3vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
}

h2 + .lead {
  margin: 1rem 0 0;
}

.lead {
  font-size: 1.16rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.hl {
  color: var(--ink-3);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: var(--paper);
}

.section-dark .eyebrow {
  color: var(--yellow);
}

.section-dark .lead,
.section-dark .muted {
  color: var(--muted-dark);
}

.section-dark a {
  color: var(--yellow);
}

.section-dark .hl {
  color: var(--yellow);
}

/* ── Ícones (Lucide, traço 2px) ─────────────────────────────────────── */

.ic {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ic-fill {
  fill: currentColor;
  stroke: none;
}

/* ── Botões ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 1.03rem;
}

.btn-block {
  width: 100%;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.btn-yellow:hover {
  background: var(--yellow-hi);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}

.btn-ink {
  background: var(--ink-2);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-ink:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(1, 51, 46, 0.04);
  color: var(--ink);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
}

/* ── Navbar ─────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(254, 253, 240, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 4.5rem;
}

.nav-logo {
  display: flex;
  flex: 0 0 auto;
}

.nav-logo img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink-2);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  border-bottom-color: var(--yellow);
}

.nav-right .btn {
  white-space: nowrap;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-portal {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-2);
  white-space: nowrap;
}

/* Menu mobile sem JS: <details> nativo. */
.nav-toggle {
  display: none;
  margin-left: auto;
}

.nav-toggle > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--ink);
}

.nav-toggle > summary::-webkit-details-marker {
  display: none;
}

.nav-toggle .ic-close,
.nav-toggle[open] .ic-open {
  display: none;
}

.nav-toggle[open] .ic-close {
  display: block;
}

.nav-drop {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem 1.5rem;
  display: grid;
  gap: 0.25rem;
}

.nav-drop a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 600;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.nav-drop .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-inner {
    position: relative;
  }
}

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(3rem, 1rem + 7vw, 5.5rem) 0 clamp(3.5rem, 1rem + 7vw, 6rem);
}

.hero h1 {
  color: var(--paper);
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.hero h1 .yellow {
  color: var(--yellow);
}

.hero-lead {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted-dark);
  margin: 1.4rem 0 2.25rem;
  max-width: 34rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust .ic {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

/* O disco amarelo é o motivo de marca — um por página, nunca repetido. */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(30rem, 118%);
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  z-index: 0;
}

.hero-art .phone {
  position: relative;
  z-index: 1;
}

@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    margin-top: 3rem;
  }

  .phone {
    width: min(19rem, 100%);
  }

  .hero-disc {
    width: min(21rem, 94%);
  }

  .hero-lead {
    margin-bottom: 1.75rem;
  }
}

/* ── Mock de celular / WhatsApp ─────────────────────────────────────── */

.phone {
  width: min(21rem, 100%);
  background: #0b1f1c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2.4rem;
  padding: 0.65rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
}

.phone-screen {
  background: #ece5dd;
  border-radius: 1.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wa-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #075e54;
  color: #fff;
  padding: 0.8rem 0.9rem;
}

.wa-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.wa-avatar svg {
  width: 1.35rem;
  height: 1.35rem;
}

.wa-name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.wa-status {
  font-size: 0.7rem;
  opacity: 0.75;
  line-height: 1.25;
}

.wa-chat {
  flex: 1;
  padding: 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wa-day {
  align-self: center;
  background: rgba(255, 255, 255, 0.85);
  color: #667781;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  margin-bottom: 0.15rem;
}

.bubble {
  max-width: 86%;
  padding: 0.5rem 0.65rem 0.35rem;
  border-radius: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(11, 20, 26, 0.13);
}

.bubble.out {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}

.bubble.in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}

.bubble .ts {
  font-size: 0.6rem;
  color: #667781;
  text-align: right;
  margin-top: 0.1rem;
}

.wa-card {
  background: rgba(1, 51, 46, 0.05);
  border-left: 3px solid var(--ink-3);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.35rem;
}

.wa-card.money {
  border-left-color: var(--blue);
}

.wa-card .tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.wa-card.money .tag {
  color: var(--blue);
}

.wa-card .t {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.wa-card .m {
  font-size: 0.68rem;
  color: #667781;
}

.wa-audio {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wa-play {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--ink-2);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.wa-play .ic {
  width: 11px;
  height: 11px;
}

.wa-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.wa-wave span {
  width: 2px;
  border-radius: 2px;
  background: #8fa3a0;
}

.wa-dur {
  font-size: 0.62rem;
  font-weight: 700;
  color: #667781;
}

.wa-compose {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem 0.85rem;
  background: #f0f2f5;
}

.wa-field {
  flex: 1;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  color: #8696a0;
}

.wa-mic {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #00a884;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.wa-mic .ic {
  width: 15px;
  height: 15px;
}

/* ── Faixa de confiança ─────────────────────────────────────────────── */

.strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 1.5rem 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strip-item .ic {
  width: 18px;
  height: 18px;
  color: var(--ink-3);
}

.strip img {
  height: 21px;
  width: auto;
  opacity: 0.75;
}

/* ── Grade de cartões ───────────────────────────────────────────────── */

.grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.card-ico {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: var(--paper-2);
  color: var(--ink-3);
}

.card-ico .ic {
  width: 22px;
  height: 22px;
}

.card-ico.tone-yellow {
  background: rgba(247, 233, 51, 0.32);
  color: #6b6206;
}

.card-ico.tone-mint {
  background: var(--success-soft);
  color: #0d4a31;
}

.card-ico.tone-blue {
  background: var(--info-soft);
  color: #1438a1;
}

.card-ico.tone-sage {
  background: var(--paper-3);
  color: var(--ink-3);
}

.card-ico.tone-warm {
  background: var(--warning-soft);
  color: #7a4a0c;
}

.card-ico.tone-rose {
  background: var(--danger-soft);
  color: #7a1f15;
}

.card-example {
  margin: 1.15rem 0 0;
  padding: 0.6rem 0.8rem;
  background: var(--paper-2);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.87rem;
  color: var(--ink-2);
}

/* ── Seções split (texto + visual) ──────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.split.reverse .split-visual {
  order: -1;
}

.bullets {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.bullets li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.99rem;
}

.bullets .check {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-top: 0.12rem;
}

.bullets .check .ic {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.section-dark .bullets .check {
  background: var(--yellow);
  color: var(--ink);
}

.split-actions {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-visual {
    order: 0;
  }
}

/* ── Mocks de produto (colagem) ─────────────────────────────────────── */

.mock {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
}

.mock-stack {
  position: relative;
  display: grid;
  gap: 1rem;
}

@media (min-width: 901px) {
  .mock-stack {
    gap: 0;
  }

  .mock-stack > .mock:first-child {
    width: 84%;
    padding-bottom: 1.9rem;
  }

  .mock-stack > .mock:last-child {
    width: 84%;
    margin-left: auto;
    margin-top: -1rem;
    z-index: 1;
  }
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.mock-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-title .ic {
  width: 15px;
  height: 15px;
  color: var(--ink-3);
}

.mock-nav {
  display: flex;
  gap: 0.25rem;
}

.mock-nav span {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  color: var(--ink-3);
  display: grid;
  place-items: center;
}

.mock-nav .ic {
  width: 11px;
  height: 11px;
}

/* Calendário */
.cal-week,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-week {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cal-days span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  position: relative;
}

.cal-days .out {
  color: #b9c4c1;
  font-weight: 400;
}

.cal-days .ev::after {
  content: "";
  position: absolute;
  bottom: 12%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-3);
}

.cal-days .today {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.cal-days .today::after {
  background: var(--ink);
}

/* Linhas de lembrete */
.mock-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}

.mock-row:first-of-type {
  border-top: 0;
}

.mock-row .ico {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--paper-2);
  color: var(--ink-3);
}

.mock-row .ico .ic {
  width: 14px;
  height: 14px;
}

.mock-row .ico.imp {
  background: var(--danger-soft);
  color: #b3372a;
}

.mock-row .ico.rec {
  background: #ece4f5;
  color: #4a2d80;
}

.mock-row .t,
.mock-row .w {
  display: block;
}

.mock-row .t {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.mock-row .w {
  font-size: 0.68rem;
  color: var(--muted);
}

.mock-row .hour {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-3);
  flex: 0 0 auto;
}

/* Financeiro */
.mock-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mock-amount .cur {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.mock-bar {
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  overflow: hidden;
  margin: 0.75rem 0 0.9rem;
}

.mock-bar > i {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--ink-3);
}

.mock-cats {
  display: grid;
  gap: 0.4rem;
}

.mock-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-2);
}

.mock-cat .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.mock-cat .v {
  margin-left: auto;
  font-weight: 700;
  color: var(--ink);
}

.mock-delta {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0d4a31;
  background: var(--success-soft);
  padding: 0.15rem 0.45rem;
  border-radius: var(--r-sm);
}

/* ── Passo a passo ──────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  list-style: none;
  counter-reset: step;
  margin: 0 0 2.75rem;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 3.5rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: var(--shadow-sm);
}

/* trilho conectando os passos — só no desktop, onde ficam lado a lado */
@media (min-width: 900px) {
  .steps li::after {
    content: "";
    position: absolute;
    top: 1.3rem;
    left: 3.1rem;
    right: -1.5rem;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--line-strong) 0 6px,
      transparent 6px 12px
    );
  }

  .steps li:last-child::after {
    display: none;
  }
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── Comparativo ────────────────────────────────────────────────────── */

.table-scroll {
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

table.compare {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare th,
.compare td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare thead th {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line-strong);
}

.compare thead th.own {
  color: var(--ink);
  background: rgba(247, 233, 51, 0.28);
}

.compare tbody th {
  font-weight: 600;
  color: var(--ink);
}

.compare td {
  color: var(--muted);
}

.compare td.own {
  color: var(--ink-2);
  font-weight: 600;
  background: rgba(247, 233, 51, 0.09);
}

.compare tr:last-child th,
.compare tr:last-child td {
  border-bottom: 0;
}

.compare .yes,
.compare .no {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.compare .yes .ic {
  width: 17px;
  height: 17px;
  color: var(--success);
  stroke-width: 3;
}

.compare .no .ic {
  width: 17px;
  height: 17px;
  color: #b9c4c1;
}

/* ── Depoimentos ────────────────────────────────────────────────────── */

.quote {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.stars .ic {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.quote blockquote {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
}

.who {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.89rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.who .avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex: 0 0 auto;
}

.who .name {
  display: block;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.who .role {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

/* ── Planos ─────────────────────────────────────────────────────────── */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.plan-featured {
  outline: 2px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.85rem;
  margin: 0;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-pill);
}

.plan h3 {
  font-size: 1.3rem;
}

.plan-desc {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 2.6rem;
}

.price {
  margin: 1.1rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price .cur {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.price .per {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.plan-sub {
  margin: 0.6rem 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-3);
}

.plan-features {
  list-style: none;
  margin: 0 0 1.85rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.65rem;
  font-size: 0.94rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.plan-features .ic {
  width: 16px;
  height: 16px;
  stroke-width: 3;
  color: var(--success);
  margin-top: 0.28rem;
}

.plan-features li.off {
  color: #9ba8a4;
}

.plan-features li.off .ic {
  color: #cbd4d1;
  stroke-width: 2;
}

.pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pay img {
  height: 22px;
  width: auto;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
/* <details> nativo: sem JS, acessível por padrão. */

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 0 1.35rem;
  transition: box-shadow var(--dur) var(--ease);
}

.faq details[open] {
  box-shadow: var(--shadow-md);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-size: 1.01rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2.5px solid var(--ink-3);
  border-bottom: 2.5px solid var(--ink-3);
  rotate: 45deg;
  translate: 0 -0.2rem;
  transition: rotate var(--dur) var(--ease);
}

.faq details[open] summary::after {
  rotate: -135deg;
  translate: 0 0.15rem;
}

.faq details > p {
  margin: 0;
  padding: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 46rem;
}

.gcal {
  max-width: 46rem;
  padding-top: clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
}

.gcal h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.gcal p {
  color: var(--muted);
}

.brand-legal {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Blocos de destaque em fundo escuro ─────────────────────────────── */

.panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}

.panel h3 {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.panel p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted-dark);
}

.panel .ic {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  margin-bottom: 0.85rem;
}

/* ── CTA final ──────────────────────────────────────────────────────── */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(3.5rem, 2rem + 4vw, 5.5rem) 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
}

.cta h2 {
  color: var(--paper);
  max-width: 22ch;
}

.cta h2 .yellow {
  color: var(--yellow);
}

.cta p {
  margin: 1rem 0 2.25rem;
  color: var(--muted-dark);
  font-size: 1.12rem;
  max-width: 44ch;
}

/* Arco C como decoração — é o símbolo da marca, não o disco cheio. */
.cta-arc {
  position: absolute;
  right: -4rem;
  top: 50%;
  translate: 0 -50%;
  width: 19rem;
  opacity: 0.09;
  pointer-events: none;
}

.cta-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-dark);
}

/* ── Footer ─────────────────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  color: var(--muted-dark);
  border-top: 1px solid var(--line-dark);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}

.foot-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 1.15fr) 2fr;
  gap: 3rem;
}

.foot-brand img {
  width: 150px;
}

.foot-brand p {
  margin: 1rem 0 0;
  max-width: 26rem;
}

.foot-brand .legal-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 2rem;
}

.foot h3 {
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
}

.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.foot a {
  color: var(--muted-dark);
  text-decoration: none;
}

.foot a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
}

.foot-copy {
  max-width: var(--wrap);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 800px) {
  .foot-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Páginas legais (geradas pelo build.mjs) ────────────────────────── */

.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.legal-nav img {
  width: 150px;
}

.legal h1 {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 2.75rem 0 0.75rem;
}

.legal h3 {
  font-size: 1.05rem;
  margin: 2rem 0 0.5rem;
}

.legal p,
.legal li {
  margin: 0 0 1rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

.legal footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
