/* ============================================================
   OdontoPro — site institucional
   Design system compartilhado por todas as páginas
   ============================================================ */

:root {
  --ink: #0a1e28;
  --ink-soft: #24404d;
  --muted: #5b7381;
  --line: #dde8ec;
  --bg: #f5f9fa;
  --card: #ffffff;
  --teal: #0d9488;
  --teal-dark: #0b7268;
  --teal-deep: #084c44;
  --petrol: #072028;
  --mint: #2dd4bf;
  --cyan: #22d3ee;
  --gold: #f5b544;
  --accent: #ea580c;
  --accent-2: #f97316;
  --danger: #e05252;
  --ok: #2e9e5b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow: 0 1px 2px rgba(10, 30, 40, .05), 0 8px 24px rgba(10, 30, 40, .07);
  --shadow-lg: 0 2px 4px rgba(10, 30, 40, .06), 0 18px 48px rgba(10, 30, 40, .14);
  --shadow-glow: 0 20px 54px rgba(234, 88, 12, .24);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1160px;
  /* spacing scale (4/8px base) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 40px; --sp-8: 48px; --sp-9: 64px; --sp-10: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 124px; }

/* ---------- Acessibilidade: foco visível ---------- */
:focus-visible {
  outline: 3px solid var(--mint); outline-offset: 2px; border-radius: 6px;
}
.btn:focus-visible { outline-offset: 3px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(13, 148, 136, .1);
  border: 1px solid rgba(13, 148, 136, .25);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 12px; border: 0; cursor: pointer;
  text-decoration: none !important; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 8px 20px rgba(234, 88, 12, .35);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(234, 88, 12, .45); transform: translateY(-3px); }
.btn-ghost {
  color: var(--ink); background: #fff; border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark-ghost {
  color: #eafffb; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.btn-dark-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-gold {
  color: #3d2c00; background: linear-gradient(135deg, #fcd34d, var(--gold));
  box-shadow: 0 6px 18px rgba(245, 181, 68, .4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 181, 68, .5); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; border-radius: 14px; }
.btn-sm { padding: 9px 16px; font-size: .88rem; border-radius: 9px; }
.btn-whatsapp { color: #fff; background: #22a95c; box-shadow: 0 6px 18px rgba(34,169,92,.35); }
.btn-whatsapp:hover { background: #1e9b53; transform: translateY(-2px); }

/* ---------- Barra de promo ---------- */
.promo-bar {
  display: none;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-dark));
  color: #d9fff8; text-align: center; font-size: .92rem; font-weight: 600;
  padding: 9px 44px; position: relative;
}
.promo-bar.on { display: block; }
.promo-bar button {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #d9fff8; font-size: 1.1rem; cursor: pointer; opacity: .8;
}
.promo-bar button:hover { opacity: 1; }

/* ---------- Navegação ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.7); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px);
  border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(10,30,40,.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.22rem; color: var(--ink); text-decoration: none !important; letter-spacing: -.02em; }
.brand .logo-mark {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 12px rgba(13,148,136,.35);
}
.brand .logo-mark svg { width: 21px; height: 21px; }
.brand em { font-style: normal; color: var(--teal-dark); }
.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; text-decoration: none !important; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-cta { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.nav-burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 4.5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(45, 212, 191, .2), transparent 60%),
    radial-gradient(620px 380px at 10% 105%, rgba(234, 88, 12, .16), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(34, 211, 238, .12), transparent 60%),
    linear-gradient(165deg, #071b22 0%, #0a2530 45%, #0c2f36 100%);
  color: #f0fcfa;
  padding: 88px 0 136px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 18px 0 20px; color: #fff; letter-spacing: -.035em; font-weight: 800; }
.hero h1 .hl { background: linear-gradient(90deg, var(--mint), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 1.16rem; color: #b8d8d4; max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,212,191,.12); border: 1px solid rgba(45,212,191,.35);
  color: #9ef0e4; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 16px; border-radius: 999px;
}
.hero-ctas { display: flex; gap: 14px; margin: 32px 0 26px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; list-style: none; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: #9dc4be; font-size: .92rem; font-weight: 600; }
.hero-trust svg { width: 17px; height: 17px; color: var(--mint); flex: none; }

/* Mockup do app */
.mockup { position: relative; filter: drop-shadow(0 30px 60px rgba(0,0,0,.45)); }
.app-window {
  background: #fbfdfd; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  font-size: 11.5px; color: var(--ink);
}
.app-titlebar { display: flex; align-items: center; gap: 8px; background: #0d2b33; color: #cfe9e4; padding: 9px 14px; font-weight: 600; }
.app-titlebar .dots { display: flex; gap: 5px; margin-left: auto; }
.app-titlebar .dots i { width: 9px; height: 9px; border-radius: 50%; background: #2a4d55; }
.app-body { display: grid; grid-template-columns: 148px minmax(0, 1fr); min-height: 350px; }
.app-side { background: #0f333c; color: #9fc7c0; padding: 12px 0; }
.app-side .item { padding: 7px 16px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.app-side .item.on { background: rgba(45,212,191,.16); color: #cffcf3; border-left: 3px solid var(--mint); padding-left: 13px; }
.app-side .item i { width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: .55; flex: none; }
.app-main { padding: 14px 16px; background: #f4f8f9; }
.app-main h5 { font-size: 12.5px; margin-bottom: 10px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.app-main h5 .chip { font-size: 9.5px; background: #e0f2f0; color: var(--teal-dark); border-radius: 99px; padding: 2px 9px; font-weight: 700; }
.kpi-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 12px; }
.kpi {
  background: #fff; border: 1px solid #e3edef; border-radius: 9px; padding: 8px 10px;
}
.kpi b { display: block; font-size: 13.5px; letter-spacing: -.01em; }
.kpi span { color: var(--muted); font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.kpi .up { color: var(--ok); font-weight: 700; font-size: 9.5px; font-style: normal; }
.agenda-mock { background: #fff; border: 1px solid #e3edef; border-radius: 9px; padding: 10px 12px; }
.agenda-mock .row { display: flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px dashed #e8f0f1; }
.agenda-mock .row:last-child { border-bottom: 0; }
.agenda-mock .hour { font-weight: 700; color: var(--muted); width: 34px; font-size: 10px; }
.agenda-mock .pill { flex: 1; border-radius: 7px; padding: 5px 9px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.agenda-mock .st { font-size: 8.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; border-radius: 99px; padding: 2px 7px; background: rgba(255,255,255,.65); }
.pill.p1 { background: #e0f5f2; color: #0b5e55; }
.pill.p2 { background: #fff4d9; color: #7a5a12; }
.pill.p3 { background: #e7ecfd; color: #2f479e; }
.mock-float {
  position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 12px 15px; font-size: 11px; display: flex; gap: 10px; align-items: center;
  border: 1px solid #e5efef;
}
.mock-float.wa { right: -14px; bottom: 44px; animation: floaty 5s ease-in-out infinite; }
.mock-float.pay { left: -18px; bottom: -16px; animation: floaty 6s ease-in-out 1.2s infinite; }
.mock-float .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; color: #fff; }
.mock-float .ic.green { background: #22a95c; }
.mock-float .ic.teal { background: var(--teal); }
.mock-float b { display: block; font-size: 11.5px; color: var(--ink); }
.mock-float span { color: var(--muted); font-size: 10px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Faixa de números (cartão flutuante sobre o hero) ---------- */
.stats-band { padding: 0 0 44px; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  text-align: center; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  margin-top: -64px; position: relative;
}
.stat { background: #fff; padding: 26px 16px; transition: background .2s var(--ease); }
.stat:hover { background: #fbfffe; }
.stat b { display: block; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; color: var(--teal-dark); }
.stat span { color: var(--muted); font-weight: 600; font-size: .88rem; }

/* ---------- Cards de features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(13,148,136,.32); }
.fcard .fic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(45,212,191,.18));
  color: var(--teal-dark); margin-bottom: 18px;
}
.fcard .fic svg { width: 24px; height: 24px; }
.fcard h3 { font-size: 1.13rem; margin-bottom: 9px; }
.fcard p { color: var(--muted); font-size: .95rem; }
.fcard .more { display: inline-block; margin-top: 12px; font-weight: 700; font-size: .88rem; }

/* ---------- Workflow ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative; box-shadow: var(--shadow);
}
.flow-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--mint)); color: #fff; font-weight: 800; font-size: .9rem;
  box-shadow: 0 4px 10px rgba(13,148,136,.4);
}
.flow-step h3 { font-size: 1.03rem; margin: 8px 0 8px; }
.flow-step p { color: var(--muted); font-size: .92rem; }

/* ---------- Seções alternadas (deep dive) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 90px; }
.split.rev > .split-media { order: 2; }
.split h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; color: var(--ink-soft); }
.check-list li svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 3px; }
.check-list li b { color: var(--ink); }
.split-media { position: relative; }
.media-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px; overflow: hidden;
}

/* Odontograma mock */
.odo-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 7px; margin: 8px 0 14px; }
.tooth {
  aspect-ratio: 1; border-radius: 8px; border: 1.5px solid #d8e6e8; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: var(--muted); background: #fbfdfd;
}
.tooth.c1 { background: #ffe9e0; border-color: #f2b49d; color: #a34a26; }
.tooth.c2 { background: #e2f4ff; border-color: #99cdea; color: #21618f; }
.tooth.c3 { background: #e8fbea; border-color: #a4dcab; color: #2c7038; }
.tooth.c4 { background: #f3e9ff; border-color: #cbaaee; color: #6a3aa5; }
.legend-row { display: flex; flex-wrap: wrap; gap: 8px; }
.legend-row .lg { font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.lg.l1 { background: #ffe9e0; color: #a34a26; } .lg.l2 { background: #e2f4ff; color: #21618f; }
.lg.l3 { background: #e8fbea; color: #2c7038; } .lg.l4 { background: #f3e9ff; color: #6a3aa5; }

/* Fiscal mock */
.calc-mock { font-size: 12.5px; }
.calc-mock .line { display: flex; justify-content: space-between; padding: 8px 2px; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.calc-mock .line b { font-variant-numeric: tabular-nums; }
.calc-mock .total { border: 0; margin-top: 6px; background: #ecfdf7; border-radius: 9px; padding: 11px 13px; color: var(--teal-deep); font-weight: 800; }
.calc-mock .total b { font-size: 15px; }

/* Privacy mock */
.shield-mock { text-align: center; padding: 16px 8px; }
.shield-mock .big { width: 84px; height: 84px; margin: 0 auto 16px; color: var(--teal); }
.privacy-tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.privacy-tags span {
  background: #eef7f6; border: 1px solid #d4eae7; color: var(--teal-deep);
  border-radius: 99px; padding: 6px 14px; font-size: .82rem; font-weight: 700;
}

/* WhatsApp chat mock */
.chat-mock { background: #e7ded3; border-radius: var(--radius); padding: 20px 18px; display: grid; gap: 10px; }
.chat-bubble {
  max-width: 88%; background: #fff; border-radius: 12px 12px 12px 3px;
  padding: 10px 13px; font-size: .87rem; color: #222; box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.chat-bubble.me { margin-left: auto; background: #d7f8c8; border-radius: 12px 12px 3px 12px; }
.chat-bubble small { display: block; text-align: right; color: #7d8a80; font-size: .68rem; margin-top: 4px; }

/* ---------- Depoimentos ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow); position: relative;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.quote p { color: var(--ink-soft); font-size: .96rem; font-style: italic; }
.quote footer { margin-top: 18px; display: flex; gap: 12px; align-items: center; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .95rem;
}
.quote footer b { display: block; font-size: .92rem; }
.quote footer span { color: var(--muted); font-size: .82rem; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.hot {
  border: 2px solid var(--accent); box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: scale(1.02);
}
.plan.hot:hover { transform: scale(1.02) translateY(-6px); }
.plan .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(234,88,12,.4);
}
.plan h3 { font-size: 1.25rem; }
.plan .plan-desc { color: var(--muted); font-size: .9rem; margin: 6px 0 20px; min-height: 42px; }
.plan .price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.plan .price b { font-size: 2.35rem; letter-spacing: -.03em; }
.plan .price span { color: var(--muted); font-weight: 600; font-size: .9rem; }
.plan .price-note { color: var(--teal-dark); font-weight: 700; font-size: .85rem; margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.plan ul li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-soft); align-items: flex-start; }
.plan ul li svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 3px; }
.plan ul li.no { color: #a9b8bf; }
.plan ul li.no svg { color: #c6d2d7; }
.plan .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 19px 54px 19px 24px; font-weight: 700;
  position: relative; font-size: 1rem; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--teal); transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); font-size: .96rem; }
.faq-item .faq-body a { font-weight: 600; }

/* ---------- CTA final ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(45,212,191,.22), transparent 60%),
    linear-gradient(150deg, #071b22, #0c3038);
  color: #fff; border-radius: 24px; padding: 64px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { color: #a9cdc7; max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .hero-ctas { justify-content: center; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: #071820; color: #8fb0ac; padding: 56px 0 32px; margin-top: 84px; position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--accent)); opacity: .55;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #dff5f1; font-size: .95rem; margin-bottom: 16px; }
.footer a { color: #8fb0ac; display: block; margin-bottom: 9px; font-size: .92rem; }
.footer a:hover { color: var(--mint); text-decoration: none; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { font-size: .9rem; max-width: 320px; }
.footer-lgpd { font-size: .82rem; color: #6f918c; max-width: 640px; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  background:
    radial-gradient(700px 340px at 85% -20%, rgba(45,212,191,.16), transparent 60%),
    linear-gradient(160deg, #071b22, #0b2a33);
  color: #fff; padding: 72px 0 64px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0 14px; letter-spacing: -.03em; }
.page-hero p { color: #a9cdc7; max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- Formulários ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .88rem; }
.field label small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: .97rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  background: #fbfdfd; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 96px; }
.form-msg { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-weight: 600; font-size: .92rem; }
.form-msg.err { background: #fdecec; color: #9c2b2b; border: 1px solid #f3c5c5; }

.success-panel { display: none; text-align: center; padding: 26px 10px 6px; }
.success-panel.on { display: block; }
.success-panel .okic {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #067857;
  display: grid; place-items: center;
}
.success-panel .okic svg { width: 38px; height: 38px; }
.success-panel h3 { font-size: 1.45rem; margin-bottom: 10px; }
.success-panel p { color: var(--muted); max-width: 460px; margin: 0 auto 22px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Tabela comparativa ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .93rem; }
.cmp-table th, .cmp-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; font-weight: 600; color: var(--ink-soft); }
.cmp-table thead th { background: #f2f8f8; font-weight: 800; color: var(--ink); }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table .yes { color: var(--teal); font-weight: 800; }
.cmp-table .no { color: #c2ced3; }

/* ---------- Feature page ---------- */
.mod-nav {
  position: sticky; top: 68px; z-index: 40; background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); overflow-x: auto; white-space: nowrap;
}
.mod-nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; gap: 6px; }
.mod-nav a {
  padding: 13px 14px; font-size: .87rem; font-weight: 700; color: var(--muted);
  text-decoration: none !important; border-bottom: 2.5px solid transparent;
}
.mod-nav a:hover { color: var(--teal-dark); }
.mod-section { padding: 64px 0 8px; }
.mod-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow); margin-bottom: 26px;
}
.mod-head { display: flex; gap: 18px; align-items: center; margin-bottom: 10px; }
.mod-head .fic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(45,212,191,.2)); color: var(--teal-dark);
}
.mod-head .fic svg { width: 27px; height: 27px; }
.mod-head h2 { font-size: 1.5rem; }
.mod-head p { color: var(--muted); font-size: .95rem; margin-top: 2px; }
.mod-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 36px; margin-top: 22px; }
.mod-cols .check-list { margin: 0; }

/* alternância visual entre seções (ritmo "zebra" nos ícones) */
.mod-section:nth-of-type(even) .mod-head .fic {
  background: linear-gradient(135deg, rgba(234,88,12,.14), rgba(249,115,22,.16)); color: #b5490f;
}

/* ---------- Novidades (recursos lançados recentemente) ---------- */
.tag-new {
  display: inline-flex; align-items: center; gap: 4px; font-size: .66rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 99px; padding: 3px 9px; vertical-align: middle; margin-left: 7px;
  box-shadow: 0 3px 8px rgba(234,88,12,.35); white-space: nowrap;
}
.novidades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nov-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .2s var(--ease);
}
.nov-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(234,88,12,.35); }
.nov-card .fic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(234,88,12,.14), rgba(249,115,22,.16));
  color: #b5490f; margin-bottom: 16px;
}
.nov-card .fic svg { width: 23px; height: 23px; }
.nov-card .ribbon {
  position: absolute; top: 16px; right: 16px; font-size: .64rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 99px; padding: 4px 10px; box-shadow: 0 4px 10px rgba(234,88,12,.35);
}
.nov-card h3 { font-size: 1.04rem; margin-bottom: 8px; padding-right: 60px; }
.nov-card p { color: var(--muted); font-size: .9rem; }
.nov-card .plan-tag {
  display: inline-flex; margin-top: 14px; font-size: .74rem; font-weight: 700;
  color: var(--teal-dark); background: rgba(13,148,136,.1); border-radius: 99px; padding: 4px 11px;
}

/* ---------- Animações de entrada ----------
   .in é aplicado pelo IntersectionObserver; .done é aplicado depois da
   transição, devolvendo ao elemento sua própria transition (hover etc.). */
.reveal:not(.done) { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal:not(.in) { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal:not(.in), .reveal:not(.done) { opacity: 1; transform: none; transition: none; }
  .mock-float { animation: none; }
  html { scroll-behavior: auto; }
  .nav.open .nav-links { animation: none; }
  .btn, .fcard, .plan, .quote, .nov-card, .stat { transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .lead { max-width: none; }
  .features-grid, .quote-grid, .plans, .novidades-grid { grid-template-columns: repeat(2, 1fr); }
  .plan.hot { transform: none; }
  .plan.hot:hover { transform: translateY(-6px); }
  .flow { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 34px; }
  .split.rev > .split-media { order: 0; }
  .mod-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 92px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; position: relative; z-index: 80; }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* Menu mobile em tela cheia, com alvos de toque grandes */
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: fixed; inset: 68px 0 0 0; z-index: 65;
    background: rgba(7, 27, 34, .98); backdrop-filter: blur(18px);
    padding: 26px 26px 130px; gap: 2px; overflow-y: auto;
    animation: navIn .3s var(--ease);
  }
  .nav.open .nav-links a {
    color: #eafffb; font-size: 1.4rem; font-weight: 700; padding: 18px 6px;
    border-bottom: 1px solid rgba(255,255,255,.09); text-decoration: none !important;
  }
  .nav.open .nav-links a.active, .nav.open .nav-links a:hover { color: var(--mint); }
  .nav.open .nav-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    display: flex; gap: 12px; padding: 16px 20px calc(18px + env(safe-area-inset-bottom));
    background: rgba(7, 27, 34, .98); backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.open .nav-cta .btn { flex: 1; display: flex; }
  .nav.open .nav-cta .btn-ghost {
    display: inline-flex; color: #eafffb; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22);
  }
  @keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .features-grid, .quote-grid, .plans, .flow, .stats-grid, .novidades-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .plan.hot { transform: none; }
  .plan.hot:hover { transform: translateY(-6px); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mock-float.pay { left: -6px; }
  .mock-float.wa { right: -4px; }
  .mod-card { padding: 26px 22px; }
}
@media (max-width: 560px) {
  .app-body { grid-template-columns: minmax(0, 1fr); }
  .app-side { display: none; }
  .kpi b { font-size: 12px; }
  .agenda-mock .pill { flex-wrap: wrap; }
}

/* ============================================================
   ADMIN — painel do dono
   ============================================================ */
body.admin-body { background: #0c1f27; color: #dcebe8; min-height: 100vh; }
.admin-shell { display: grid; grid-template-columns: 232px 1fr; min-height: 100vh; }
.admin-side {
  background: #081820; border-right: 1px solid rgba(255,255,255,.07);
  padding: 22px 14px; display: flex; flex-direction: column; gap: 4px;
}
.admin-side .brand { color: #fff; margin: 2px 8px 22px; font-size: 1.1rem; }
.admin-side button.tab {
  display: flex; align-items: center; gap: 11px; width: 100%;
  background: none; border: 0; color: #93b3ae; font-family: var(--font);
  font-weight: 600; font-size: .93rem; text-align: left;
  padding: 11px 13px; border-radius: 10px; cursor: pointer; transition: .15s;
}
.admin-side button.tab svg { width: 18px; height: 18px; flex: none; }
.admin-side button.tab:hover { background: rgba(255,255,255,.05); color: #d8efeb; }
.admin-side button.tab.on { background: rgba(45,212,191,.14); color: #7df0dd; }
.admin-side .side-foot { margin-top: auto; padding: 12px 8px 4px; font-size: .78rem; color: #4f6d69; }
.admin-side .side-foot a { color: #6fa39c; }
.admin-main { padding: 30px 34px 60px; overflow-x: hidden; }
.admin-main h1 { font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.admin-main .sub { color: #7fa19b; font-size: .92rem; margin-bottom: 26px; }
.admin-panel { display: none; }
.admin-panel.on { display: block; }

.acard {
  background: #102831; border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  padding: 24px; margin-bottom: 20px;
}
.acard h2 { color: #eafffb; font-size: 1.06rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.acard h2 .hint { font-size: .78rem; color: #6f918c; font-weight: 500; margin-left: auto; }

.akpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.akpi { background: #102831; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 18px 20px; }
.akpi b { display: block; font-size: 1.7rem; color: #fff; letter-spacing: -.02em; }
.akpi span { color: #7fa19b; font-size: .82rem; font-weight: 600; }
.akpi .delta { font-size: .78rem; font-weight: 700; color: var(--mint); }

.atable-wrap { overflow-x: auto; }
.atable { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 640px; }
.atable th { text-align: left; color: #6f918c; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.atable td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.06); color: #cfe4e0; vertical-align: middle; }
.atable tr:hover td { background: rgba(255,255,255,.025); }
.atable .empty td { text-align: center; color: #5d7d78; padding: 34px 12px; }
.badge { display: inline-block; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; letter-spacing: .03em; white-space: nowrap; }
.badge.b-novo { background: rgba(34,211,238,.16); color: #67e0f2; }
.badge.b-contatado { background: rgba(245,181,68,.16); color: #f7ce85; }
.badge.b-demo { background: rgba(167,139,250,.18); color: #c4b0fb; }
.badge.b-cliente { background: rgba(45,212,191,.16); color: #7df0dd; }
.badge.b-perdido { background: rgba(224,82,82,.15); color: #ef9a9a; }
.badge.b-aguardando { background: rgba(245,181,68,.16); color: #f7ce85; }
.badge.b-pago { background: rgba(45,212,191,.16); color: #7df0dd; }
.badge.b-entregue { background: rgba(103,224,242,.15); color: #8ce6f5; }
.badge.b-cancelado { background: rgba(224,82,82,.15); color: #ef9a9a; }

.admin-main select, .admin-main input, .admin-main textarea {
  font-family: var(--font); background: #0a1e26; color: #e6f5f2;
  border: 1.5px solid rgba(255,255,255,.14); border-radius: 9px; padding: 9px 12px; font-size: .9rem;
}
.admin-main select:focus, .admin-main input:focus, .admin-main textarea:focus {
  outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(45,212,191,.15);
}
.admin-main label { font-size: .82rem; font-weight: 700; color: #a8c8c3; display: block; margin-bottom: 6px; }
.aform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
.aform-grid .full { grid-column: 1 / -1; }
.aform-grid input, .aform-grid textarea { width: 100%; }
.acheck { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #cfe4e0; font-weight: 600; }
.acheck input { width: auto; accent-color: var(--teal); transform: scale(1.2); }

.abtn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font);
  font-weight: 700; font-size: .87rem; padding: 10px 18px; border-radius: 10px;
  border: 0; cursor: pointer; transition: .15s;
}
.abtn.primary { background: linear-gradient(135deg, var(--teal), #14b8a6); color: #fff; }
.abtn.primary:hover { filter: brightness(1.1); }
.abtn.ghost { background: rgba(255,255,255,.07); color: #cfe4e0; border: 1px solid rgba(255,255,255,.14); }
.abtn.ghost:hover { background: rgba(255,255,255,.13); }
.abtn.danger { background: rgba(224,82,82,.14); color: #f1a2a2; border: 1px solid rgba(224,82,82,.3); }
.abtn.danger:hover { background: rgba(224,82,82,.25); }
.abtn.xs { padding: 5px 10px; font-size: .76rem; border-radius: 7px; }

.license-box {
  font-family: "Cascadia Code", Consolas, monospace; background: #081820; color: #7df0dd;
  border: 1px dashed rgba(45,212,191,.4); border-radius: 10px; padding: 10px 14px;
  font-size: .92rem; letter-spacing: .04em; display: inline-block;
}

/* Gate de login do admin */
.gate {
  min-height: 100vh; display: grid; place-items: center; padding: 24px;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(45,212,191,.14), transparent 60%),
    linear-gradient(160deg, #071b22, #0b2630);
}
.gate-card {
  width: 100%; max-width: 400px; background: #0e2833; border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 38px 34px; box-shadow: 0 24px 70px rgba(0,0,0,.5); text-align: center;
}
.gate-card .brand { justify-content: center; color: #fff; margin-bottom: 8px; }
.gate-card p { color: #7fa19b; font-size: .9rem; margin-bottom: 24px; }
.gate-card input {
  width: 100%; background: #0a1e26; color: #e6f5f2; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 13px 15px; font-size: 1rem; font-family: var(--font); margin-bottom: 14px;
}
.gate-card input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(45,212,191,.15); }
.gate-card .abtn { width: 100%; justify-content: center; padding: 13px; font-size: .95rem; }
.gate-err { display: none; color: #ef9a9a; font-size: .85rem; font-weight: 600; margin-bottom: 12px; }
.gate-err.on { display: block; }

.spark { width: 100%; height: 120px; }
.mini-note { font-size: .8rem; color: #6f918c; margin-top: 10px; }
.mini-note a { color: #7df0dd; }

.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: #0d2f2b; color: #b8f5ea; border: 1px solid rgba(45,212,191,.4);
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: .9rem;
  opacity: 0; transition: .3s ease; z-index: 100; pointer-events: none; box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 860px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; flex-wrap: wrap; align-items: center; position: sticky; top: 0; z-index: 50; }
  .admin-side .brand { margin: 0 12px 0 4px; }
  .admin-side button.tab { width: auto; padding: 9px 12px; }
  .admin-side .side-foot { display: none; }
  .akpis, .aform-grid { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 22px 18px 50px; }
}
@media (max-width: 560px) {
  .akpis, .aform-grid { grid-template-columns: 1fr; }
}
