/*
 * PetShop AI — landing page de venda.
 *
 * A mesma família visual do Admin (`frontend/src/app/globals.css` e `design/design-modelo.html`):
 * grafite frio como tinta, um único acento coral, cartões brancos sobre um shell cinza-claro
 * e a Instrument Serif em itálico só como acento de display — aqui ela cabe, porque a página
 * vende; nas telas de trabalho do produto ela foi recusada.
 *
 * Cada módulo do produto tem a cor do seu item de menu no Admin (agenda safira, pets ocre,
 * financeiro verde…), para que quem assina reconheça lá dentro o que viu aqui fora.
 */

:root {
  --canvas: #e9ebee;
  --shell: #f4f5f7;
  --card: #ffffff;
  --ink: #232427;
  --ink-strong: #171719;
  --muted: #5d6068;
  --subtle: #7d8089;
  --line: rgb(35 36 39 / 0.08);
  --line-strong: rgb(35 36 39 / 0.14);

  --accent: #e34a32;
  --accent-soft: #fbe9e5;
  --accent-ink: #a8321f;

  --success: #1f7a4d;
  --success-soft: #e6f4ec;

  --t-brand: #b0503e;
  --t-brand-soft: #fff1ee;
  --t-brand-ring: #ffd4cb;
  --t-people: #7e5db1;
  --t-people-soft: #f6f2ff;
  --t-people-ring: #e4d9fd;
  --t-pet: #966700;
  --t-pet-soft: #fbf3e8;
  --t-pet-ring: #f2dcbb;
  --t-time: #466fbd;
  --t-time-soft: #eff5ff;
  --t-time-ring: #cfe0ff;
  --t-money: #22864a;
  --t-money-soft: #edf8ef;
  --t-money-ring: #c8ead0;
  --t-metric: #00818c;
  --t-metric-soft: #e8f8fa;
  --t-metric-ring: #baeaef;
  --t-health: #a94d79;
  --t-health-soft: #fef0f6;
  --t-health-ring: #fbd3e3;
  --t-system: #6e7179;
  --t-system-soft: #f3f4f7;
  --t-system-ring: #dddfe5;

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', ui-serif, Georgia, serif;

  --r-card: 24px;
  --r-shell: 40px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card:
    0 1px 0 rgb(255 255 255 / 0.9) inset, 0 1px 2px rgb(35 36 39 / 0.04),
    0 12px 32px -18px rgb(35 36 39 / 0.22);
  --shadow-float:
    0 1px 0 rgb(255 255 255 / 0.9) inset, 0 2px 6px rgb(35 36 39 / 0.05),
    0 30px 60px -28px rgb(35 36 39 / 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

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

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

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

/* ═══ Moldura ════════════════════════════════════════════════════════════════
 * O shell de cantos largos do design-modelo. No celular ele cede a margem inteira:
 * 16px de canvas dos dois lados custavam uma coluna de texto que não sobra.
 */
.shell {
  margin: 16px;
  border-radius: var(--r-shell);
  background: var(--shell);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-tight {
  padding: 72px 0;
}

/* A atmosfera: dois halos, um frio à esquerda e um coral à direita. */
.bloom {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 9999px;
  filter: blur(8px);
}

.bloom-cool {
  width: 720px;
  height: 720px;
  left: -260px;
  top: 80px;
  background: radial-gradient(circle, rgb(35 36 39 / 0.07) 0%, transparent 62%);
}

.bloom-warm {
  width: 900px;
  height: 900px;
  right: -320px;
  top: -260px;
  background: radial-gradient(circle, rgb(227 74 50 / 0.16) 0%, transparent 60%);
}

/* ═══ Navegação ══════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 24px;
  margin-top: 28px;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 20px;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.78);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  backdrop-filter: saturate(1.4) blur(18px);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.8) inset,
    0 10px 30px -16px rgb(35 36 39 / 0.3);
  transition: box-shadow 0.3s var(--ease);
}

.nav.is-scrolled {
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.8) inset,
    0 0 0 1px var(--line),
    0 16px 40px -18px rgb(35 36 39 / 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #ee6a55 0%, var(--accent) 70%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.35) inset,
    0 -1px 0 rgb(120 30 18 / 0.35) inset,
    0 6px 14px -6px rgb(227 74 50 / 0.7);
}

.brand-mark .icon {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.brand-ai {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 14px;
  color: var(--muted);
  transition:
    color 0.2s,
    background-color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgb(35 36 39 / 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-login {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--muted);
  border-radius: 9999px;
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 9999px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line) inset;
  cursor: pointer;
  place-items: center;
}

.mobile-menu {
  display: none;
}

/* ═══ Botões ═════════════════════════════════════════════════════════════════
 * Os mesmos objetos do Admin: gradiente curto de luz de cima, brilho especular de 1px
 * no topo, aresta escura embaixo, e uma faixa de brilho que cruza no hover.
 */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 9999px;
  padding: 12px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    filter 0.25s;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / 0.22) 50%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.btn-dark:hover::before {
  transform: translateX(140%);
}

.btn-dark {
  color: #fff;
  background-image: linear-gradient(180deg, #2c2d31 0%, var(--ink-strong) 62%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.14) inset,
    0 -1px 0 rgb(0 0 0 / 0.5) inset,
    0 10px 24px -12px rgb(23 23 25 / 0.7);
}

.btn-dark:hover {
  transform: translateY(-1px);
  filter: brightness(1.14);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.2) inset,
    0 -1px 0 rgb(0 0 0 / 0.5) inset,
    0 16px 32px -14px rgb(23 23 25 / 0.75);
}

.btn-light {
  color: var(--ink);
  background: var(--card);
  box-shadow:
    0 0 0 1px var(--line) inset,
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 8px 20px -14px rgb(35 36 39 / 0.3);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px var(--line-strong) inset,
    0 14px 28px -14px rgb(35 36 39 / 0.35);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 0.06s;
}

/* Sobre o fundo grafite o botão escuro sumiria: vira porcelana. */
.on-dark .btn-light {
  background: #fff;
  color: var(--ink-strong);
}

.on-dark .btn-ghost-dark {
  color: #fff;
  background: rgb(255 255 255 / 0.06);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.16) inset;
}

.on-dark .btn-ghost-dark:hover {
  transform: translateY(-1px);
  background: rgb(255 255 255 / 0.12);
}

/* ═══ Peças de texto ═════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 9999px;
  background: var(--card);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 500;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.9) inset,
    0 6px 16px -10px rgb(35 36 39 / 0.3);
}

.eyebrow .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink-strong);
  text-wrap: balance;
}

.h2 .serif {
  font-size: 1.08em;
  color: var(--ink);
}

.lead {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* ═══ Hero ═══════════════════════════════════════════════════════════════════ */
.hero {
  padding: 88px 0 40px;
  text-align: center;
}

.hero h1 {
  margin: 26px auto 0;
  max-width: 900px;
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--ink-strong);
}

/* O coral do "AI" da marca: a palavra do título ecoa o logo. */
.hero h1 .hl {
  color: var(--accent);
}

.hero h1 .serif {
  display: inline-block;
  font-size: 1.1em;
  letter-spacing: -0.02em;
  padding-right: 0.06em;
  color: var(--ink);
}

.hero .lead {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: 19px;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13.5px;
  color: var(--subtle);
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-note .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  color: var(--success);
}

/* ─── A cena do produto ────────────────────────────────────────────────────── */
.stage {
  position: relative;
  max-width: 1040px;
  margin: 72px auto 0;
  padding: 0 24px;
  text-align: left;
  perspective: 1800px;
}

.window {
  position: relative;
  border-radius: 28px;
  background: var(--card);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.9) inset,
    0 0 0 1px var(--line),
    0 50px 100px -40px rgb(35 36 39 / 0.45),
    0 20px 40px -24px rgb(35 36 39 / 0.2);
  overflow: hidden;
  transform: rotateX(6deg);
  transform-origin: 50% 0%;
  transition: transform 1.2s var(--ease-out);
}

.stage.is-visible .window {
  transform: rotateX(0deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfbfc, #f6f7f9);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 11px;
  height: 11px;
  border-radius: 9999px;
  background: #dfe1e5;
}

.window-url {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgb(35 36 39 / 0.05);
  font-size: 12px;
  color: var(--subtle);
  text-align: center;
}

.app {
  display: grid;
  grid-template-columns: 196px 1fr;
  min-height: 460px;
}

.app-side {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #fafbfc;
}

.app-side .brand {
  font-size: 14px;
  padding: 0 8px 16px;
}

.app-side .brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.app-side .brand-mark .icon {
  width: 15px;
  height: 15px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
}

.side-item.is-active {
  background: var(--card);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 6px 14px -10px rgb(35 36 39 / 0.35);
}

.chip {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--tone);
  background: var(--tone-soft);
  box-shadow: 0 0 0 1px var(--tone-ring) inset;
  flex-shrink: 0;
}

.chip .icon {
  width: 15px;
  height: 15px;
}

.tone-brand {
  --tone: var(--t-brand);
  --tone-soft: var(--t-brand-soft);
  --tone-ring: var(--t-brand-ring);
}
.tone-people {
  --tone: var(--t-people);
  --tone-soft: var(--t-people-soft);
  --tone-ring: var(--t-people-ring);
}
.tone-pet {
  --tone: var(--t-pet);
  --tone-soft: var(--t-pet-soft);
  --tone-ring: var(--t-pet-ring);
}
.tone-time {
  --tone: var(--t-time);
  --tone-soft: var(--t-time-soft);
  --tone-ring: var(--t-time-ring);
}
.tone-money {
  --tone: var(--t-money);
  --tone-soft: var(--t-money-soft);
  --tone-ring: var(--t-money-ring);
}
.tone-metric {
  --tone: var(--t-metric);
  --tone-soft: var(--t-metric-soft);
  --tone-ring: var(--t-metric-ring);
}
.tone-health {
  --tone: var(--t-health);
  --tone-soft: var(--t-health-soft);
  --tone-ring: var(--t-health-ring);
}
.tone-system {
  --tone: var(--t-system);
  --tone-soft: var(--t-system-soft);
  --tone-ring: var(--t-system-ring);
}

.app-main {
  padding: 22px 24px 24px;
  background: var(--shell);
}

.app-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.app-eyebrow {
  font-size: 11px;
  color: var(--subtle);
  letter-spacing: 0.02em;
}

.app-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-strong);
}

.app-sub {
  font-size: 12px;
  color: var(--muted);
}

.app-btn {
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, #2c2d31 0%, var(--ink-strong) 62%);
  box-shadow: 0 6px 14px -8px rgb(23 23 25 / 0.7);
  white-space: nowrap;
}

.days {
  display: flex;
  gap: 4px;
  margin: 16px 0 14px;
}

.day {
  flex: 1;
  padding: 6px 0;
  border-radius: 12px;
  text-align: center;
  font-size: 10px;
  color: var(--subtle);
  line-height: 1.3;
}

.day b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.day.is-active {
  background: var(--card);
  box-shadow: 0 8px 18px -12px rgb(35 36 39 / 0.35);
}

.board {
  display: grid;
  grid-template-columns: 44px repeat(3, 1fr);
  gap: 8px;
  border-radius: 18px;
  background: var(--card);
  padding: 12px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.board-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.board-hours {
  display: grid;
  grid-template-rows: repeat(5, 52px);
  font-size: 10px;
  color: var(--subtle);
  padding-top: 2px;
}

.board-col {
  display: grid;
  grid-template-rows: repeat(10, 26px);
  gap: 0;
  position: relative;
}

.appt {
  margin: 2px 0;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.3;
  background: var(--tone-soft);
  box-shadow: 0 0 0 1px var(--tone-ring) inset;
  border-left: 3px solid var(--tone);
  overflow: hidden;
}

.appt b {
  display: block;
  font-weight: 600;
  color: var(--ink-strong);
}

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

.appt-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  padding: 1px 6px;
  border-radius: 9999px;
  background: #fff;
  font-size: 9.5px;
  color: var(--t-metric);
}

.appt-tag .icon {
  width: 11px;
  height: 11px;
}

.now-line {
  position: absolute;
  left: 52px;
  right: 12px;
  top: 158px;
  height: 0;
  border-top: 1.5px solid var(--accent);
  pointer-events: none;
}

.now-line::before {
  content: '';
  position: absolute;
  left: -5px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(227 74 50 / 0.18);
}

/* Os cartões que flutuam fora da janela. */
.float {
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  background: rgb(255 255 255 / 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.9) inset,
    0 0 0 1px var(--line),
    var(--shadow-float);
  animation: bob 7s ease-in-out infinite;
}

.float-chat {
  right: -18px;
  bottom: -44px;
  width: 300px;
  padding: 14px;
}

.float-notif {
  left: -26px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  animation-delay: -3.5s;
}

.float-notif small {
  display: block;
  font-size: 11px;
  color: var(--subtle);
  line-height: 1.3;
}

.float-notif strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.float-money {
  right: -30px;
  top: -34px;
  padding: 14px 16px;
  animation-delay: -1.8s;
}

.float-money small {
  font-size: 11px;
  color: var(--subtle);
}

.float-money strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.float-money em {
  font-style: normal;
  font-size: 11px;
  color: var(--success);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.chat-head .chip {
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  color: #fff;
  background: #25a55f;
  box-shadow: none;
}

.chat-head b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.chat-head small {
  font-size: 11px;
  color: var(--success);
}

.bubbles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bubble {
  max-width: 86%;
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.bubble-in {
  align-self: flex-start;
  background: #f1f2f4;
  border-bottom-left-radius: 4px;
}

.bubble-out {
  align-self: flex-end;
  background: #e3f5e9;
  color: #173d27;
  border-bottom-right-radius: 4px;
}

.bubble-ok {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.bubble-ok .icon {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  stroke-width: 2.2;
  color: var(--success);
}

/* ═══ Faixa de públicos ══════════════════════════════════════════════════════ */
.audience {
  padding: 96px 0 24px;
  text-align: center;
}

.audience-list {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.7);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.9) inset;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ═══ Bento dos módulos ══════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 2px 4px rgb(35 36 39 / 0.04),
    0 28px 50px -24px rgb(35 36 39 / 0.3);
}

.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
.span-4 {
  grid-column: span 4;
}

.card .chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.card .chip .icon {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}

.card p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
}

.ticks {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.ticks li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}

.ticks .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  stroke-width: 2.2;
  color: var(--tone, var(--success));
}

/* Miniaturas dentro dos cartões do bento. */
.mini {
  margin-top: 22px;
  border-radius: 16px;
  background: var(--shell);
  padding: 14px;
  box-shadow: 0 0 0 1px var(--line) inset;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
}

.mini-row + .mini-row {
  margin-top: 6px;
}

.mini-row small {
  color: var(--subtle);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

.pill-ok {
  background: var(--success-soft);
  color: var(--success);
}

.pill-warn {
  background: #fff4e0;
  color: #8a5a00;
}

.pill-accent {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.pill-time {
  background: var(--t-time-soft);
  color: var(--t-time);
}

.pill-neutral {
  background: rgb(35 36 39 / 0.06);
  color: var(--muted);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 92px;
  padding: 6px 4px 0;
}

.bars i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: #6b93cf;
  transform-origin: bottom;
  transform: scaleY(0.2);
  transition: transform 1s var(--ease-out);
}

.bars i.is-today {
  background: #466fbd;
}

.is-visible .bars i {
  transform: scaleY(1);
}

.bars-legend {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px 0;
  font-size: 10.5px;
  color: var(--subtle);
}

/* ═══ Destaques (IA, Portal) ═════════════════════════════════════════════════ */
.spot {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.spot.reverse .spot-media {
  order: -1;
}

.spot-list {
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.spot-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}

.spot-list .chip {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.spot-list .chip .icon {
  width: 19px;
  height: 19px;
}

.spot-list h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
}

.spot-list p {
  margin-top: 2px;
  font-size: 15px;
  color: var(--muted);
}

.spot-media {
  position: relative;
}

/* O telefone da conversa com o agente. */
.phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 48px;
  background: linear-gradient(180deg, #2b2c30, #141416);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.12) inset,
    0 60px 90px -40px rgb(23 23 25 / 0.55),
    0 24px 40px -24px rgb(23 23 25 / 0.35);
}

.phone-screen {
  border-radius: 38px;
  overflow: hidden;
  background: #efeae2;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.wa-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 44px 16px 12px;
  background: #0f6b52;
  color: #fff;
}

.wa-top .avatar {
  width: 36px;
  height: 36px;
  font-size: 14px;
  background: var(--accent);
}

.wa-top b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.wa-top small {
  font-size: 11.5px;
  opacity: 0.8;
}

.wa-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px 20px;
  background-image: radial-gradient(rgb(0 0 0 / 0.035) 1px, transparent 1px);
  background-size: 14px 14px;
}

.wa-msg {
  max-width: 82%;
  padding: 8px 10px 6px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0.08);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.wa-msg time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: rgb(0 0 0 / 0.45);
  margin-top: 2px;
}

.wa-in {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 3px;
}

.wa-out {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 3px;
}

.wa-card {
  margin: 6px 0 2px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f5f6f7;
  border-left: 3px solid var(--accent);
  font-size: 12px;
}

.wa-card b {
  display: block;
  color: var(--ink-strong);
}

.wa-sys {
  align-self: center;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff7d6;
  font-size: 11px;
  color: #6b5a14;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.is-visible .wa-msg,
.is-visible .wa-sys {
  opacity: 1;
  transform: none;
}

.is-visible .wa-body > :nth-child(1) {
  transition-delay: 0.2s;
}
.is-visible .wa-body > :nth-child(2) {
  transition-delay: 0.9s;
}
.is-visible .wa-body > :nth-child(3) {
  transition-delay: 1.7s;
}
.is-visible .wa-body > :nth-child(4) {
  transition-delay: 2.4s;
}
.is-visible .wa-body > :nth-child(5) {
  transition-delay: 3.1s;
}
.is-visible .wa-body > :nth-child(6) {
  transition-delay: 3.6s;
}

.badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--line),
    var(--shadow-float);
  font-size: 13px;
  line-height: 1.3;
  animation: bob 8s ease-in-out infinite;
}

.badge-float small {
  display: block;
  font-size: 11px;
  color: var(--subtle);
}

.badge-float b {
  font-weight: 600;
}

.badge-a {
  left: -8px;
  top: 34px;
}

.badge-b {
  right: -12px;
  bottom: -22px;
  animation-delay: -4s;
}

/* Portal do tutor + site: duas telas encaixadas. */
.duo {
  position: relative;
  min-height: 560px;
}

.site-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 88%;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    var(--shadow-float);
}

.site-hero {
  padding: 26px 24px 22px;
  background:
    radial-gradient(circle at 85% 10%, rgb(227 74 50 / 0.22), transparent 55%),
    linear-gradient(180deg, #fbf7f5, #ffffff);
}

.site-hero small {
  font-size: 11px;
  color: var(--accent-ink);
  font-weight: 500;
}

.site-hero h4 {
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.site-hero p {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 260px;
}

.site-hero .row {
  margin-top: 14px;
  display: flex;
  gap: 6px;
}

.fake-btn {
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
}

.fake-btn.alt {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line) inset;
}

.site-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 24px 22px;
}

.site-services div {
  padding: 10px;
  border-radius: 12px;
  background: var(--shell);
  font-size: 11.5px;
}

.site-services b {
  display: block;
  font-size: 12px;
}

.site-services span {
  color: var(--subtle);
}

.portal-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  padding: 9px;
  border-radius: 38px;
  background: linear-gradient(180deg, #2b2c30, #141416);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.12) inset,
    0 50px 80px -30px rgb(23 23 25 / 0.55);
}

.portal-screen {
  border-radius: 30px;
  overflow: hidden;
  background: var(--shell);
  padding: 32px 12px 14px;
  min-height: 420px;
}

.portal-screen .hello {
  font-size: 11px;
  color: var(--subtle);
  padding: 0 4px;
}

.portal-screen h5 {
  margin: 2px 0 10px;
  padding: 0 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.p-card {
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 18px -14px rgb(35 36 39 / 0.4);
  font-size: 11.5px;
}

.p-card + .p-card {
  margin-top: 8px;
}

.p-card .top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-card .chip {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.p-card b {
  display: block;
  font-size: 12px;
}

.p-card small {
  color: var(--subtle);
  font-size: 10.5px;
}

.p-card .fake-btn {
  display: block;
  text-align: center;
  margin-top: 8px;
  background: var(--ink-strong);
}

/* ═══ Todos os recursos ══════════════════════════════════════════════════════ */
.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.catalog .card {
  padding: 26px;
}

.catalog .card:hover {
  transform: none;
}

.catalog-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.catalog-head .chip {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.catalog-head .chip .icon {
  width: 20px;
  height: 20px;
}

.catalog-head h3 {
  margin: 0;
  font-size: 17px;
}

.catalog-head .plan-tag {
  margin-left: auto;
}

.catalog .ticks {
  margin-top: 16px;
  gap: 7px;
}

.catalog .ticks li {
  font-size: 14px;
  color: var(--muted);
}

/*
 * O selo vai DENTRO do texto, e não como irmão dele: o <li> é flex, e um item flex
 * a mais esticava o selo na altura das duas linhas quando o texto quebrava.
 */
.catalog .ticks .plan-tag {
  display: inline-block;
  line-height: 1.5;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10.5px;
  vertical-align: 1px;
}

.catalog .ticks .icon {
  width: 15px;
  height: 15px;
}

.plan-tag {
  padding: 3px 9px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.plan-tag.all {
  background: rgb(35 36 39 / 0.06);
  color: var(--muted);
}

.plan-tag.pro {
  background: var(--t-time-soft);
  color: var(--t-time);
}

.plan-tag.ent {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

/* ═══ Faixa escura: segurança ════════════════════════════════════════════════ */
.dark-band {
  margin: 0 16px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgb(227 74 50 / 0.22), transparent 45%),
    radial-gradient(circle at 0% 100%, rgb(70 111 189 / 0.18), transparent 45%),
    linear-gradient(180deg, #1d1e22, #141416);
  color: #fff;
  overflow: hidden;
}

.dark-band .kicker {
  color: rgb(255 255 255 / 0.55);
}

.dark-band .h2 {
  color: #fff;
}

.dark-band .h2 .serif {
  color: rgb(255 255 255 / 0.88);
}

.dark-band .lead {
  color: rgb(255 255 255 / 0.66);
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sec-item {
  padding: 24px;
  border-radius: 20px;
  background: rgb(255 255 255 / 0.04);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.08) inset;
  transition: background-color 0.3s;
}

.sec-item:hover {
  background: rgb(255 255 255 / 0.07);
}

.sec-item .icon {
  width: 24px;
  height: 24px;
  color: #ff8a73;
}

.sec-item h4 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
}

.sec-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.6);
}

/* ═══ Planos ═════════════════════════════════════════════════════════════════ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  position: relative;
}

.plan-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-strong);
}

.plan-pitch {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
  min-height: 46px;
}

.price {
  margin-top: 26px;
  min-height: 66px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink-strong);
}

.price .cur {
  font-size: 20px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 10px;
}

.price .val {
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.price .per {
  font-size: 15px;
  color: var(--subtle);
}

.price .serif {
  font-size: 48px;
  line-height: 1.1;
}

.price-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--subtle);
}

.plan .btn {
  margin-top: 26px;
  width: 100%;
}

.plan-divider {
  margin: 28px 0 20px;
  height: 1px;
  background: var(--line);
}

.plan-inc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
}

.plan .ticks {
  margin-top: 14px;
  gap: 10px;
}

.plan .ticks li {
  font-size: 14.5px;
}

.plan .ticks .icon {
  color: var(--success);
}

/* O Pro é o destacado: vestido de grafite, a única peça escura da fileira. */
.plan-featured {
  background:
    radial-gradient(circle at 100% 0%, rgb(227 74 50 / 0.35), transparent 50%),
    linear-gradient(180deg, #232428, #161618);
  color: #fff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.1) inset,
    0 40px 80px -36px rgb(23 23 25 / 0.7);
  transform: translateY(-12px);
}

.plan-featured .plan-name,
.plan-featured .price {
  color: #fff;
}

.plan-featured .plan-pitch,
.plan-featured .price .per,
.plan-featured .price-note,
.plan-featured .plan-inc {
  color: rgb(255 255 255 / 0.62);
}

.plan-featured .plan-divider {
  background: rgb(255 255 255 / 0.12);
}

.plan-featured .ticks li {
  color: rgb(255 255 255 / 0.9);
}

.plan-featured .ticks .icon {
  color: #7fd6a2;
}

.plan-featured .btn-light {
  box-shadow: 0 10px 24px -12px rgb(0 0 0 / 0.6);
}

.popular {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 6px 14px -6px rgb(227 74 50 / 0.8);
}

.seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  background: rgb(35 36 39 / 0.06);
  color: var(--muted);
}

.plan-featured .seats {
  background: rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.85);
}

.plans-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--subtle);
}

/* Tabela comparativa. */
.compare {
  margin-top: 72px;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.compare-scroll {
  overflow-x: auto;
}

.compare table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.compare th,
.compare td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare th:first-child,
.compare td:first-child {
  text-align: left;
  width: 46%;
}

.compare thead th {
  position: sticky;
  top: 0;
  background: #fafbfc;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-strong);
  padding-top: 20px;
  padding-bottom: 20px;
}

.compare thead th:first-child {
  font-weight: 500;
  color: var(--subtle);
}

.compare .col-pro {
  background: rgb(70 111 189 / 0.04);
}

.compare tbody tr.group td {
  padding-top: 22px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  text-align: left;
  background: #fff;
}

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

.compare .yes .icon {
  margin: 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  color: var(--success);
}

.compare .no {
  color: #c4c6cc;
}

.compare .txt {
  font-size: 13.5px;
  color: var(--ink);
}

/* ═══ FAQ ════════════════════════════════════════════════════════════════════ */
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.faq .section-head {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-strong);
}

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

.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: var(--shell);
  flex-shrink: 0;
  transition:
    transform 0.35s var(--ease-out),
    background-color 0.2s;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.35s var(--ease-out);
}

.faq-item[open] .faq-plus {
  background: var(--accent-soft);
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after {
  background: var(--accent-ink);
}

.faq-body {
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--muted);
  max-width: 62ch;
}

/* ═══ CTA final ══════════════════════════════════════════════════════════════ */
.final {
  margin: 0 16px;
  border-radius: 32px;
  padding: 96px 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 120%, rgb(227 74 50 / 0.55), transparent 60%),
    linear-gradient(180deg, #1d1e22, #121214);
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 70%);
  pointer-events: none;
}

.final > * {
  position: relative;
}

.final .h2 {
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
}

.final .h2 .serif {
  color: #ffd2c8;
}

.final .lead {
  color: rgb(255 255 255 / 0.68);
  max-width: 560px;
  margin: 20px auto 0;
}

.final .hero-cta {
  margin-top: 34px;
}

.final .hero-note {
  color: rgb(255 255 255 / 0.55);
}

.final .hero-note .icon {
  color: #7fd6a2;
}

/* ═══ Rodapé ═════════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer p {
  margin-top: 14px;
  max-width: 300px;
  font-size: 14px;
  color: var(--muted);
}

.footer h5 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-strong);
}

.footer li + li {
  margin-top: 8px;
}

.footer li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer li a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--subtle);
}

/* ═══ Entrada por rolagem ════════════════════════════════════════════════════
 * Só existe com JS: sem ele, `.js` nunca entra no <html> e nada nasce escondido.
 */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ═══ Responsivo ═════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .float-money {
    right: 8px;
  }
  .float-notif {
    left: 8px;
  }
  .float-chat {
    right: 8px;
  }
  .sec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .mobile-menu {
    max-width: 1160px;
    margin: 8px auto 0;
    padding: 10px;
    border-radius: 24px;
    background: rgb(255 255 255 / 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px -20px rgb(35 36 39 / 0.4);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 2px;
  }

  .mobile-menu a:not(.btn) {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .mobile-menu a:not(.btn):hover {
    background: var(--shell);
  }

  .mobile-menu .btn {
    margin-top: 8px;
  }

  .app {
    grid-template-columns: 1fr;
  }

  .app-side {
    display: none;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-2,
  .span-3,
  .span-4 {
    grid-column: span 1;
  }

  .bento .wide {
    grid-column: span 2;
  }

  .spot,
  .faq {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .spot.reverse .spot-media {
    order: 0;
  }

  .faq .section-head {
    position: static;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .plan-featured {
    transform: none;
  }

  .plan-pitch {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    margin: 0;
    border-radius: 0;
  }

  .dark-band,
  .final {
    margin: 0;
    border-radius: 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-wrap {
    padding: 0 12px;
    margin-top: 12px;
    top: 12px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero .lead {
    font-size: 17px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stage {
    padding: 0 12px;
    margin-top: 48px;
  }

  .window-url {
    display: none;
  }

  .app-main {
    padding: 16px 12px;
  }

  .board {
    grid-template-columns: 36px repeat(2, 1fr);
  }

  .board > .hide-sm {
    display: none;
  }

  .now-line {
    left: 44px;
  }

  .float-money,
  .float-notif {
    display: none;
  }

  .float-chat {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -28px 12px 0;
  }

  .bento,
  .catalog,
  .sec-grid {
    grid-template-columns: 1fr;
  }

  .bento .wide {
    grid-column: span 1;
  }

  .card {
    padding: 24px;
  }

  .badge-a,
  .badge-b {
    display: none;
  }

  .duo {
    min-height: 0;
  }

  .site-card {
    position: relative;
    width: 100%;
  }

  .portal-phone {
    position: relative;
    margin: -60px auto 0;
  }

  .final {
    padding: 80px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .window {
    transform: none;
  }
}
