/* ══════════════════════════════════════════════════════════
   Fluxo Menu — landing editorial
   Fundo creme, tipografia forte, roxo da marca e um amarelo
   de apoio. Vive separada do design system do app (fluxo.css)
   porque a pagina de venda tem outra voz visual.
   ══════════════════════════════════════════════════════════ */

:root {
  --cream:      #FAF9F6;
  --cream-2:    #F3F0E9;
  --paper:      #FFFFFF;
  --ink:        #17131F;
  --ink-2:      #4B4557;
  --ink-3:      #7C7589;
  --line:       #E4E0D8;
  --line-2:     #D6D1C6;

  --purple:     #6D28D9;
  --purple-dk:  #4C1D95;
  --purple-soft:#F1EAFE;
  --purple-line:#DCCDFB;

  --yellow:     #FFD34E;
  --yellow-dk:  #E8B71E;

  --ok:         #0F7B4F;
  --amber:      #C77700;

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 30px;

  --sh:    0 2px 8px rgba(23,19,31,.05);
  --sh-lg: 0 18px 44px -14px rgba(23,19,31,.20), 0 6px 14px -8px rgba(23,19,31,.10);
  --sh-xl: 0 44px 90px -28px rgba(23,19,31,.34);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, .plan-price, .step-number {
  font-family: 'Manrope', 'DM Sans', -apple-system, sans-serif;
  letter-spacing: -.03em;
  line-height: 1.04;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1200px, 100% - (var(--gutter) * 2)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--cream);
  padding: 10px 18px; border-radius: 999px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3);
}
.tiny-label {
  display: block; font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--ok); box-shadow: 0 0 0 3px rgba(15,123,79,.16);
}
.status-dot.amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(199,119,0,.16); }
.purple-text { color: var(--purple); }

/* ── Botoes ────────────────────────────────────────────── */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 650; font-size: 16px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { padding: 11px 19px; font-size: 14.5px; }
.button-primary { background: var(--purple); color: #fff; box-shadow: 0 8px 20px -8px rgba(109,40,217,.6); }
.button-primary:hover { background: var(--purple-dk); box-shadow: 0 14px 28px -10px rgba(109,40,217,.62); }
.button-outline { background: var(--paper); color: var(--ink); border-color: var(--line-2); }
.button-outline:hover { border-color: var(--purple); color: var(--purple); }
.button-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 26px -12px rgba(232,183,30,.9); }
.button-yellow:hover { background: var(--yellow-dk); }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.42); }
.button-light-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.play-icon { font-size: 10px; }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 650; color: var(--purple);
  border-bottom: 1.5px solid var(--purple-line);
  padding-bottom: 3px;
  transition: gap .18s var(--ease), border-color .18s var(--ease);
}
.text-link:hover { gap: 11px; border-color: var(--purple); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }

/* ── Cabecalho ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,249,246,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.site-header:has(.mobile-nav:not([hidden])) { border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
/* Enquadra a arte original, cujas margens ocupam metade do arquivo. */
.brand-logo {
  display: block;
  position: relative;
  width: 148px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.brand-logo img {
  position: absolute;
  width: 190%;
  max-width: none;
  height: auto;
  left: -45%;
  top: -104%;
}
.desktop-nav { display: flex; gap: 30px; margin-left: 18px; font-size: 15.5px; font-weight: 550; color: var(--ink-2); }
.desktop-nav a { position: relative; padding: 4px 0; }
.desktop-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--purple); transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.login-link { font-weight: 600; font-size: 15.5px; color: var(--ink-2); }
.login-link:hover { color: var(--purple); }

.menu-toggle {
  display: none; width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--paper);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 17px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.4px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column;
  padding: 8px var(--gutter) 22px;
  border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 14px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; color: var(--purple); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 56px; align-items: center;
  padding: 66px 0 84px;
}
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(48px, 6vw, 82px); margin: 20px 0 22px; }
.word-highlight { position: relative; display: inline-block; color: var(--purple); }
.word-highlight svg { position: absolute; left: -2%; bottom: -.14em; width: 104%; height: auto; overflow: visible; }
.word-highlight path { fill: none; stroke: var(--yellow); stroke-width: 7; stroke-linecap: round; }
.hero-description { font-size: clamp(17px, 1.35vw, 19.5px); color: var(--ink-2); max-width: 47ch; margin-bottom: 30px; }
.hero-assurance {
  display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 26px;
  font-size: 14.5px; font-weight: 550; color: var(--ink-3);
}
.hero-assurance span span[aria-hidden] { color: var(--ok); font-weight: 700; }

.hero-stage { position: relative; display: block; padding: 8px 0 4px; }
.stage-caption {
  display: block; text-align: center; margin-bottom: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--ink-3);
}
.phone-preview {
  position: relative; width: min(330px, 100%); margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 34px; padding: 9px; box-shadow: var(--sh-xl);
  overflow: hidden;
  transform: rotate(-1.6deg);
  transition: transform .35s var(--ease);
}
.hero-stage:hover .phone-preview { transform: rotate(0deg) translateY(-6px); }
.phone-status {
  display: flex; justify-content: space-between;
  padding: 4px 14px 10px; font-size: 11px; font-weight: 700; color: var(--ink-3);
}
.phone-cover { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 10; }
.phone-cover img { width: 100%; height: 100%; object-fit: cover; }
.phone-cover-tag {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  color: #fff; font-size: 13px; font-weight: 650; letter-spacing: -.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.phone-content { padding: 16px 12px 12px; }
.restaurant-avatar {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px;
  background: var(--purple); color: #fff; font-weight: 800; font-size: 19px;
  margin-top: -34px; border: 3px solid var(--paper); position: relative;
}
.restaurant-title { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.restaurant-title strong { font-family: 'Manrope', sans-serif; font-size: 19px; letter-spacing: -.02em; }
.open-label { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 650; color: var(--ok); }
.phone-content > p { font-size: 13px; color: var(--ink-2); margin-top: 3px; }
.phone-meta { display: flex; gap: 7px; font-size: 11.5px; color: var(--ink-3); margin-top: 7px; }
.mini-categories { display: flex; gap: 7px; margin: 13px 0 11px; }
.mini-categories span {
  font-size: 11.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--cream-2); color: var(--ink-2);
}
.mini-categories .active { background: var(--ink); color: var(--cream); }
.phone-product {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 16px; padding: 11px;
}
.phone-product h3 { font-size: 15px; margin: 4px 0 2px; }
.phone-product p { font-size: 12px; color: var(--ink-3); margin-bottom: 6px; }
.phone-product strong { font-size: 14.5px; font-variant-numeric: tabular-nums; }
.phone-product img { width: 74px; height: 74px; border-radius: 12px; object-fit: cover; flex: none; }
.phone-cart {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 13px 16px; border-radius: 16px;
  background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 600;
}
.phone-cart > span:first-child { display: inline-flex; align-items: center; gap: 9px; }
.phone-cart > span:first-child > span { font-weight: 550; }
.phone-cart strong { font-variant-numeric: tabular-nums; }

.floating-order {
  position: absolute; right: -6px; bottom: 74px;
  display: flex; gap: 11px; align-items: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 13px 16px; box-shadow: var(--sh-lg);
  animation: float-in .7s var(--ease) .35s both;
  max-width: 258px;
}
.order-check {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  border-radius: 50%; background: var(--ok); color: #fff; font-size: 14px; font-weight: 700;
}
.floating-order strong { display: block; font-size: 14px; margin-top: 3px; }
.floating-order p { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.floating-order b { color: var(--ink); font-variant-numeric: tabular-nums; }

.stage-sticker {
  position: absolute; left: -8px; top: 42px;
  background: var(--yellow); color: var(--ink);
  padding: 14px 17px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.3; font-weight: 600;
  transform: rotate(-7deg); box-shadow: var(--sh-lg);
}
.stage-sticker svg { position: absolute; right: -34px; bottom: -26px; width: 40px; height: 40px; overflow: visible; }
.stage-sticker path { fill: none; stroke: var(--ink); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.preview-label {
  display: block; text-align: center; margin-top: 22px;
  font-size: 12.5px; color: var(--ink-3);
}
.hero-stage:hover .preview-label { color: var(--purple); }

@keyframes float-in { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

/* ── Faixa de beneficios ───────────────────────────────── */
.benefit-strip { background: var(--ink); color: var(--cream); }
.benefit-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding: 19px 0; font-size: 14.5px; font-weight: 550;
}
.benefit-strip span { display: inline-flex; align-items: center; gap: 9px; color: rgba(250,249,246,.76); }
.benefit-strip span:first-child { font-family: 'Manrope', sans-serif; font-weight: 750; color: var(--cream); margin-right: auto; letter-spacing: -.02em; }
.benefit-strip i { font-style: normal; color: var(--yellow); }

/* ── Secoes ────────────────────────────────────────────── */
.section { padding: 92px 0; }
.section-heading { max-width: 620px; }
.section-heading h2 { font-size: clamp(34px, 4vw, 52px); margin: 14px 0; }
.section-heading p { color: var(--ink-2); font-size: 17.5px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.split-heading {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
  max-width: none; align-items: end;
}
.split-heading p { padding-bottom: 8px; }
.section-footnote { margin-top: 26px; font-size: 13.5px; color: var(--ink-3); }

/* ── Exemplos ──────────────────────────────────────────── */
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.example-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.example-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--purple-line); }
.example-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.example-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.example-card:hover .example-image img { transform: scale(1.05); }
.example-tag {
  position: absolute; left: 14px; top: 14px;
  background: rgba(250,249,246,.94); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 750; letter-spacing: .13em;
}
.example-arrow {
  position: absolute; right: 14px; top: 14px;
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); color: var(--purple); font-weight: 700;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.example-card:hover .example-arrow, .example-card:focus-visible .example-arrow { opacity: 1; transform: none; }
.example-content { padding: 22px 22px 24px; }
.example-content h3 { display: flex; justify-content: space-between; align-items: baseline; font-size: 22px; }
.example-content h3 span { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: 0; }
.example-content p { font-size: 14.5px; color: var(--ink-2); margin: 8px 0 16px; }
.example-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 650; color: var(--purple); }

/* ── Como funciona ─────────────────────────────────────── */
.workflow-section { background: var(--cream-2); padding: 92px 0; }
.workflow-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center; }
.workflow-copy h2 { font-size: clamp(34px, 4vw, 52px); margin: 14px 0 18px; }
.workflow-copy > p { color: var(--ink-2); margin-bottom: 24px; max-width: 42ch; }
.feature-note { display: block; margin-top: 20px; font-size: 13px; color: var(--ink-3); }

.workflow-visual {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden;
}
.workflow-top {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
  background: var(--cream); font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.window-dots { color: var(--line-2); font-size: 9px; letter-spacing: 1px; }
.sample-badge {
  margin-left: auto; font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase;
  background: var(--purple-soft); color: var(--purple-dk); padding: 5px 10px; border-radius: 999px;
}
.order-board { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 20px; }
.board-column { min-width: 0; }
.board-heading {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
}
.board-heading span:last-child {
  margin-left: auto; background: var(--cream-2); color: var(--ink-2);
  min-width: 22px; text-align: center; border-radius: 999px; padding: 2px 7px; font-size: 11.5px;
}
.sample-order { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 15px; background: var(--paper); }
.sample-order-top { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); }
.sample-order-top strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.sample-order h3 { font-size: 16px; margin: 8px 0 2px; }
.sample-order > p { font-size: 12.5px; color: var(--ink-3); }
.sample-items { display: flex; flex-direction: column; gap: 3px; margin: 12px 0; padding: 12px 0; border-block: 1px dashed var(--line); font-size: 13.5px; }
.sample-items small { font-size: 12px; color: var(--ink-3); padding-left: 14px; }
.sample-total { display: flex; justify-content: space-between; font-size: 13.5px; }
.sample-total strong { font-size: 16px; font-variant-numeric: tabular-nums; }
.sample-action {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 11px; border-radius: 999px;
  background: var(--purple); color: #fff; font-size: 13.5px; font-weight: 650;
}
.board-empty {
  display: grid; place-items: center; gap: 8px; text-align: center;
  border: 1.5px dashed var(--line-2); border-radius: var(--r-lg);
  padding: 34px 16px; font-size: 13.5px; color: var(--ink-3);
}
.board-empty span { font-size: 22px; }
.order-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); display: flex; gap: 7px; }

/* ── Passos ────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.steps-grid article {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px 26px 32px;
}
.step-number {
  display: block; font-size: 15px; font-weight: 800; color: var(--purple);
  letter-spacing: 0; margin-bottom: 18px;
}
.steps-grid h3 { font-size: 21px; margin-bottom: 9px; }
.steps-grid p { font-size: 15px; color: var(--ink-2); }

/* ── Planos ────────────────────────────────────────────── */
.plans-section { background: var(--cream-2); padding: 92px 0; }
.plans-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px; margin: 48px auto 0; max-width: 880px;
  align-items: start;
}
.plan-card {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 32px 28px 30px; display: flex; flex-direction: column;
}
.plan-featured { border: 1.5px solid var(--purple); box-shadow: var(--sh-lg); }
.plan-ribbon {
  position: absolute; top: -12px; left: 28px;
  background: var(--purple); color: #fff;
  padding: 6px 13px; border-radius: 999px;
  font-size: 10px; font-weight: 750; letter-spacing: .12em;
}
.plan-card h3 { font-size: 23px; margin: 12px 0 16px; max-width: 16ch; }
.plan-price { font-size: 46px; font-variant-numeric: tabular-nums; }
.plan-price span { font-size: 16px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.plan-card > p { font-size: 14.5px; color: var(--ink-2); margin: 10px 0 20px; }
.plan-card ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; font-size: 15px; }
.plan-card li { position: relative; padding-left: 26px; color: var(--ink-2); }
.plan-card li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--purple); font-weight: 700; font-size: 14px;
}
.plan-card .button { margin-top: auto; width: 100%; }
.plan-card small { display: block; text-align: center; margin-top: 12px; font-size: 12.5px; color: var(--ink-3); }
.plans-section .section-footnote { text-align: center; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-top: 1px solid var(--line-2); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-2); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-family: 'Manrope', sans-serif; font-size: 18.5px; font-weight: 700; letter-spacing: -.02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; flex: none; font-size: 25px; font-weight: 400; color: var(--purple);
  transition: transform .22s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { padding-bottom: 24px; max-width: 62ch; color: var(--ink-2); font-size: 16px; }

/* ── CTA final ─────────────────────────────────────────── */
.final-section { padding-bottom: 92px; }
.final-cta {
  position: relative; overflow: hidden;
  background: var(--purple); color: #fff;
  border-radius: 36px; padding: 74px 56px 78px; text-align: center;
}
.final-cta .eyebrow { color: rgba(255,255,255,.66); }
.final-cta h2 { font-size: clamp(32px, 4.4vw, 56px); margin: 16px 0; }
.final-cta > p { color: rgba(255,255,255,.78); font-size: 17.5px; margin-bottom: 32px; }
.final-cta .button-row { justify-content: center; }
.cta-spark {
  position: absolute; right: -30px; top: -40px;
  font-size: 210px; line-height: 1; color: rgba(255,255,255,.09);
  pointer-events: none;
}

/* ── Rodape ────────────────────────────────────────────── */
.site-footer {
  display: grid; grid-template-columns: 1fr auto; gap: 28px 40px;
  padding: 40px 0 56px; border-top: 1px solid var(--line);
  align-items: center;
}
.site-footer p { font-size: 14px; color: var(--ink-3); margin-top: 10px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 14.5px; color: var(--ink-2); }
.site-footer nav a:hover { color: var(--purple); }
.site-footer small { grid-column: 1 / -1; font-size: 13px; color: var(--ink-3); }

/* ── Responsivo ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero { gap: 36px; }
  .demo-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid .example-card:last-child { grid-column: 1 / -1; }
  .steps-grid article:last-child { grid-column: 1 / -1; }
  .workflow-grid { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .button, .text-link { min-height: 44px; }
  .desktop-nav, .login-link { display: none; }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 40px 0 60px; }
  .hero-copy { max-width: none; }
  .hero h1 br { display: none; }
  .hero-stage { margin-top: 22px; }
  .stage-sticker { left: 0; top: 10px; font-size: 12.5px; }
  .stage-sticker svg { display: none; }
  .floating-order { right: 0; bottom: 40px; max-width: 230px; }
  .section, .workflow-section, .plans-section { padding: 62px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .section-heading h2 br, .workflow-copy h2 br, .final-cta h2 br { display: none; }
  .demo-grid, .steps-grid, .plans-grid { grid-template-columns: 1fr; }
  .demo-grid .example-card:last-child, .steps-grid article:last-child { grid-column: auto; }
  .order-board { grid-template-columns: 1fr; }
  .final-cta { padding: 52px 24px 56px; border-radius: 28px; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .header-actions .button-small { padding-inline: 12px; }
  .benefit-strip .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .benefit-strip span:first-child { margin-right: 0; }
  .button-row .button { width: 100%; }
  .floating-order { position: static; margin: 16px auto 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .button:hover, .example-card:hover, .hero-stage:hover .phone-preview { transform: none; }
}
