/* ====================================================================
   Nomade Drive Brasil — light professional theme
   Palette: green / white / gray / dark
   ==================================================================== */

/* ====================================================================
   Fase 47 — Sticky CTA mobile (botão flutuante "Pedir orçamento")
   ==================================================================== */
.sticky-cta-mobile {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 80px;            /* não cobre o wa-float */
  z-index: 90;
  background: linear-gradient(135deg, #145f3e 0%, #1a7a4f 100%);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px -6px rgba(20, 95, 62, 0.5);
  display: none;          /* só aparece via JS após scroll */
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--font-d, sans-serif);
  transition: transform 0.18s, box-shadow 0.18s;
}
.sticky-cta-mobile.is-visible { display: flex; animation: slideUpStickyCta 0.3s ease; }
.sticky-cta-mobile:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(20, 95, 62, 0.65); }
.sticky-cta-mobile span { font-size: 15px; font-weight: 700; }
.sticky-cta-mobile small { font-size: 11px; opacity: 0.88; font-weight: 500; }
@keyframes slideUpStickyCta {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Desktop: nunca mostra */
@media (min-width: 900px) {
  .sticky-cta-mobile { display: none !important; }
}

/* Fase 47 — Hero stats de prova social */
.hero__proof { color: var(--ink, #14201b); }
.hero__proof > div { line-height: 1.3; }


:root {
  --green:    #1a7a4f;
  --green-d:  #145f3e;
  --green-l:  #e8f3ed;
  --ink:      #14201b;
  --muted:    #5b6b63;
  --bg:       #ffffff;
  --surface:  #f4f7f5;
  --line:     #e3e9e5;
  --dark:     #112019;
  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 6px 24px -10px rgba(20,40,30,.18);
  --shadow-lg:0 16px 44px -16px rgba(20,40,30,.28);
  --font-d: "Sora", system-ui, sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* scroll-padding-top: garante que anchor links nao caiam atras do nd-nav
   sticky. Altura do nav e ~64px desktop / ~60px mobile + folga. */
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* o atributo hidden deve sempre vencer regras de display de classes (.btn, .auth-form, etc.) */
[hidden] { display: none !important; }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.2; font-weight: 700; }
ul, ol { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-d); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  text-align: center;
}
.btn--solid { background: var(--green); color: #fff; }
.btn--solid:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: #fff; color: var(--green-d); border-color: var(--green); }
.btn--outline:hover { background: var(--green-l); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn.is-disabled { opacity: .55; pointer-events: none; cursor: not-allowed; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: url("images/favicon.svg") center / contain no-repeat;
}
.brand__mark svg { display: none; }
.brand__name { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--ink); }
.brand__name span { color: var(--green); }
.brand__img { height: 42px; width: auto; display: block; }
@media (max-width: 600px) { .brand__img { height: 38px; } }
.nav__links { display: flex; gap: 22px; margin-left: auto; font-size: 14.5px; font-weight: 500; }
.nav__links a { color: var(--muted); transition: color .14s ease; }
.nav__links a:hover { color: var(--green-d); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav.scrolled { box-shadow: var(--shadow); }

/* ---------- mobile drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(10,20,15,.5); backdrop-filter: blur(2px);
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(86vw, 360px); background: #fff;
  transform: translateX(100%); transition: transform .26s ease;
  display: flex; flex-direction: column;
  padding: 18px 20px 24px; box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.drawer__title { font-family: var(--font-d); font-weight: 700; font-size: 16px; }
.drawer__close { width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; border-radius: 9px; font-size: 24px; line-height: 1; cursor: pointer; color: var(--ink); }
.drawer__nav { display: flex; flex-direction: column; gap: 8px; }
.drawer__cta {
  display: block; padding: 14px 16px; border-radius: var(--radius-sm);
  font-family: var(--font-d); font-weight: 700; font-size: 15px;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
}
.drawer__cta--primary { background: var(--green); color: #fff; border-color: var(--green); }
.drawer__link {
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 15px; color: var(--muted); font-weight: 500;
}
.drawer__link:hover, .drawer__cta:hover { background: var(--green-l); }
.drawer__whats {
  margin-top: 16px; text-align: center; padding: 14px;
  background: #25d366; color: #fff; border-radius: var(--radius-sm);
  font-family: var(--font-d); font-weight: 700;
}

/* ---------- hero ---------- */
/* nd-nav sticky — sem compensador (era 104px do legado nav fixed). */
.hero { padding: 28px 0 38px; background: linear-gradient(180deg, var(--green-l), #fff 70%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.badge {
  display: inline-block; background: #fff; color: var(--green-d);
  border: 1px solid var(--green); border-radius: 999px;
  font-family: var(--font-d); font-weight: 700; font-size: 12.5px;
  padding: 6px 14px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(28px, 4.2vw, 46px); font-weight: 800; letter-spacing: -.5px; }
.hero__sub { font-size: 17px; color: var(--muted); margin: 16px 0 24px; max-width: 540px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 24px; }
.hero__badges li { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.hero__visual {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: var(--surface);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual.is-empty { display: flex; align-items: center; justify-content: center; }
.hero__visual.is-empty::after { content: "Nomade Drive Brasil"; color: var(--muted); font-family: var(--font-d); }

/* hero — carrossel automático de carros do portfólio */
.hero-rail { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.hero-slide.is-active { opacity: 1; }
.hero-slide:hover img { transform: scale(1.02); transition: transform .4s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.hero-slide__cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(17,32,25,.88); color: #fff;
  font-family: var(--font-d); font-size: 13px; font-weight: 600;
  padding: 7px 13px; border-radius: 999px;
  transition: background .2s;
}
.hero-slide:hover .hero-slide__cap { background: rgba(212, 175, 55, .95); color: #111; }
.hero-dots { position: absolute; right: 14px; bottom: 14px; z-index: 3; display: flex; gap: 7px; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.55); transition: background .14s;
}
.hero-dots button.is-active { background: #fff; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.88); color: var(--ink);
  font-family: var(--font-d); font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(17,32,25,.18); transition: background .14s, transform .14s;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }
.hero-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.hero-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

/* ---------- sections ---------- */
.section { padding: 52px 0; }
.section--surface { background: var(--surface); }
.section__head { max-width: 680px; margin: 0 auto 30px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-d); font-weight: 700;
  font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.section__head h2 { font-size: clamp(24px, 3.2vw, 34px); }
.section__head p { color: var(--muted); margin-top: 12px; font-size: 16px; }
.note { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.note--center { text-align: center; max-width: 680px; margin: 22px auto 0; }
.link-arrow { color: var(--green-d); font-family: var(--font-d); font-weight: 700; font-size: 14px; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- quick paths ---------- */
.paths-section { padding: 44px 0; }
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.path-card__ico { font-size: 30px; }
.path-card h3 { font-size: 18px; }
.path-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.path-card__go { color: var(--green-d); font-family: var(--font-d); font-weight: 700; font-size: 14px; margin-top: 6px; }

/* ---------- trust bar ---------- */
.trustbar { background: var(--dark); padding: 26px 0; }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.trustbar__item { display: flex; flex-direction: column; color: #fff; }
.trustbar__item strong { font-family: var(--font-d); font-size: 15px; }
.trustbar__item span { font-size: 12.5px; color: #9fb3a8; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; position: relative;
}
.step__num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--font-d); font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- fleet ---------- */
.fleet-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.fleet-filter {
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-d); font-weight: 600; font-size: 13.5px; transition: .14s;
}
.fleet-filter:hover { border-color: var(--green); color: var(--green-d); }
.fleet-filter.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.fleet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fleet-car {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.fleet-car:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.fleet-car__img { aspect-ratio: 3 / 2; background: var(--surface); overflow: hidden; }
.fleet-car__img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-car__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fleet-car__cat {
  font-family: var(--font-d); font-weight: 700; font-size: 11px;
  letter-spacing: .5px; text-transform: uppercase; color: var(--green);
}
.fleet-car__name { font-size: 16px; font-family: var(--font-d); font-weight: 700; }
.fleet-car__meta { font-size: 13px; color: var(--muted); }
.fleet-car__price { font-family: var(--font-d); font-weight: 800; font-size: 17px; color: var(--ink); margin-top: 2px; }
.fleet-car__price small { font-size: 12px; color: var(--muted); font-weight: 600; }
.fleet-car__est { font-size: 11.5px; color: var(--muted); }
.fleet-car__cta { margin-top: 8px; }

/* ---------- aspiracional ---------- */
.aspiracional {
  margin-top: 34px; display: flex; gap: 22px; align-items: center;
  background: var(--dark); border-radius: var(--radius); padding: 24px 28px;
}
.aspiracional__tag {
  font-family: var(--font-d); font-weight: 700; font-size: 11px;
  letter-spacing: .8px; text-transform: uppercase; color: #f5b841;
  border: 1px solid rgba(245,184,65,.4); border-radius: 999px;
  padding: 6px 12px; flex-shrink: 0;
}
.aspiracional__body h3 { color: #fff; font-size: 17px; }
.aspiracional__body p { color: #9fb3a8; font-size: 13.5px; margin: 4px 0 8px; }
.aspiracional__body .link-arrow { color: #f5b841; }

/* ---------- tiers / preços ---------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 8px;
}
.tier--featured { border-color: var(--green); box-shadow: var(--shadow); }
.tier__cat { font-family: var(--font-d); font-weight: 700; font-size: 13px; color: var(--green); text-transform: uppercase; letter-spacing: .6px; }
.tier__price { font-family: var(--font-d); font-weight: 800; font-size: 21px; color: var(--ink); }
.tier__price small { font-size: 13px; color: var(--muted); font-weight: 600; }
.tier__desc { color: var(--muted); font-size: 13.5px; }
.discount-strip {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 24px;
}
.discount-strip span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 13.5px; color: var(--muted);
}
.discount-strip strong { color: var(--green-d); font-family: var(--font-d); }
.precos-cta { text-align: center; margin-top: 30px; }

/* ---------- generic cards ---------- */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.card h3 { font-size: 16.5px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14px; }

/* ---------- coverage table ---------- */
.cover-table {
  margin-top: 30px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.cover-table h3 { font-size: 17px; margin-bottom: 14px; }
.cover-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cover-table th, .cover-table td { text-align: left; padding: 11px 10px; border-bottom: 1px solid var(--line); }
.cover-table thead th {
  font-family: var(--font-d); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .5px; color: var(--muted);
}
.cover-table .ct-mid { text-align: center; }
.cover-table tbody td:first-child { color: var(--ink); }
.cover-table tbody td:nth-child(2) { color: var(--green); font-weight: 700; }
.cover-table tbody td:last-child { color: var(--muted); }
.cover-table .note { margin-top: 14px; }

/* ---------- ganhe ---------- */
.ganhe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.ganhe-elig {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.ganhe-elig h3 { font-size: 17px; margin-bottom: 14px; }
.checklist { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.checklist li { position: relative; padding-left: 28px; font-size: 14px; color: var(--muted); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; background: var(--green-l); color: var(--green-d);
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.owner-steps { display: flex; flex-direction: column; gap: 12px; }
.owner-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.owner-steps__n {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: #fff;
  font-family: var(--font-d); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.owner-steps strong { font-family: var(--font-d); font-size: 14.5px; display: block; }
.owner-steps p { color: var(--muted); font-size: 13px; }

/* ---------- simulador ---------- */
.sim { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.sim__controls, .sim__results {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.sim-field { margin-bottom: 18px; }
.sim-field:last-child { margin-bottom: 0; }
.sim-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.sim-field label strong { color: var(--green-d); }
.sim-field .opt { color: var(--muted); font-weight: 400; }
.sim-field input[type="number"] {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-b); font-size: 14.5px; color: var(--ink);
}
.sim-field input[type="number"]:focus { outline: none; border-color: var(--green); }
.sim-field input[type="range"] { width: 100%; accent-color: var(--green); }
.tier-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tier-opt {
  padding: 11px 8px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-d); font-weight: 600; font-size: 13.5px; color: var(--muted); transition: .14s;
}
.tier-opt:hover { border-color: var(--green); }
.tier-opt.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.sim-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--muted); padding: 9px 0; border-bottom: 1px solid var(--line);
}
.sim-row strong { font-family: var(--font-d); color: var(--ink); }
.sim-row--neg strong { color: #c0392b; }
.sim-row--cash {
  background: var(--green-l); margin: 8px -12px; padding: 13px 12px;
  border-radius: var(--radius-sm); border-bottom: none;
}
.sim-row--cash span, .sim-row--cash strong { color: var(--green-d); font-size: 15.5px; }
.sim-row--cash strong { font-size: 18px; }
.sim-divider {
  font-size: 12px; color: var(--muted); margin: 14px 0 6px;
  padding-top: 12px; border-top: 1px dashed var(--line); line-height: 1.45;
}
.sim-row--net { border-bottom: none; padding-top: 12px; }
.sim-row--net span, .sim-row--net strong { color: var(--ink); font-size: 15.5px; }
.sim-row--net strong { font-size: 17px; }
.sim-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.sim-scn {
  text-align: center; padding: 12px 6px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
}
.sim-scn span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); font-weight: 600; }
.sim-scn strong { font-family: var(--font-d); font-size: 14px; color: var(--ink); }
.sim-scn--hl { border-color: var(--green); background: var(--green-l); }
.sim-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sim-hint {
  margin: 7px 0 0; font-size: 12px; font-weight: 600; color: var(--green-d);
}
.sim-alert {
  margin-top: 4px; background: #fff4e0; border: 1px solid #f0d79a;
  border-radius: var(--radius-sm); padding: 11px 13px;
}
.sim-alert p { margin: 0; font-size: 12.5px; line-height: 1.5; color: #8a6116; }
.sim-alert p + p { margin-top: 7px; }
.sim-result-card {
  margin: 12px 0 6px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
}
.sim-result-line {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 13px; font-size: 14px; color: var(--muted);
}
.sim-result-line strong { font-family: var(--font-d); color: var(--ink); white-space: nowrap; }
.sim-result-line em { font-style: normal; font-size: 12px; color: var(--muted); }
.sim-result-line--reserve { background: var(--surface); border-top: 1px solid var(--line); }
.sim-result-line--cash {
  background: var(--green); border-top: 1px solid var(--green-d); padding: 16px 13px;
}
.sim-result-line--cash span { color: #eafff5; font-weight: 600; font-size: 14.5px; }
.sim-result-line--cash strong { color: #fff; font-size: 22px; }
.reserve-cards .card { position: relative; }
.reserve-pct {
  display: inline-block; margin-bottom: 8px; padding: 3px 11px;
  background: var(--green-l); color: var(--green-d);
  border-radius: 999px; font-family: var(--font-d); font-weight: 700; font-size: 13px;
}

/* ---------- parceiro ---------- */
.parceiro-rules {
  margin-top: 26px; background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--green); border-radius: var(--radius-sm); padding: 20px 24px;
}
.parceiro-rules strong { font-family: var(--font-d); font-size: 14.5px; }
.parceiro-rules p { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

/* ---------- forms ---------- */
.form-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.form-tab {
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-d); font-weight: 600; font-size: 14px; transition: .14s;
}
.form-tab:hover { border-color: var(--green); }
.form-tab.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.form {
  display: block; max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.form.is-active { display: block; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: 13px; font-weight: 600; color: var(--ink); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-b); font-size: 14.5px; color: var(--ink); background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; }
.form__err { color: #c0392b; font-size: 13px; margin: 14px 0 0; }
.form .btn { margin-top: 20px; }

/* ---------- local ---------- */
.local { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.local__copy h2 { font-size: clamp(22px, 3vw, 30px); }
.local__copy p { color: var(--muted); margin: 12px 0 20px; }
.local__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.local__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 28px; text-align: center; display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow);
}
.local__pin { font-size: 40px; }
.local__card strong { font-family: var(--font-d); font-size: 18px; }
.local__card span { color: var(--muted); font-size: 13.5px; }

/* ---------- testimonials soon ---------- */
.testi-soon {
  text-align: center; max-width: 620px; margin: 0 auto;
  background: var(--surface); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 40px 28px;
}
.testi-soon h2 { font-size: 24px; margin: 6px 0 10px; }
.testi-soon p { color: var(--muted); font-size: 15px; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__group {
  font-family: var(--font-d); font-size: 12.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: var(--green);
  margin: 26px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.faq__group:first-child { margin-top: 0; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 8px; padding: 0 18px;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 0;
  font-family: var(--font-d); font-weight: 600; font-size: 14.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] { border-color: var(--green); }
.faq details p { color: var(--muted); font-size: 14px; padding: 0 0 16px; }

/* ---------- cta final ---------- */
.cta-final { background: var(--dark); padding: 58px 0; text-align: center; color: #fff; }
.cta-final h2 { font-size: clamp(24px, 3.4vw, 34px); }
.cta-final p { color: #9fb3a8; margin: 12px 0 26px; font-size: 16px; }
.cta-final__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-final .btn--outline:hover { background: rgba(255,255,255,.1); }

/* ---------- footer ---------- */
.footer { background: #0c1812; color: #fff; padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #8fa399; font-size: 13px; margin-top: 14px; max-width: 320px; }
.footer__col h4 { font-size: 14px; margin-bottom: 14px; }
.footer__col a { display: block; color: #8fa399; font-size: 13.5px; padding: 4px 0; transition: color .14s; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__legal p { color: #6f8077; font-size: 12px; text-align: center; max-width: 760px; margin: 0 auto; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.4);
  transition: transform .16s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { order: -1; aspect-ratio: 16/10; }
  .paths { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .fleet { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .cards--3 { grid-template-columns: 1fr; }
  .ganhe-grid { grid-template-columns: 1fr; }
  .sim { grid-template-columns: 1fr; }
  .local { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding: 40px 0; }
  .hero { padding: 24px 0 32px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .fleet { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .field--full { grid-column: 1; }
  .trustbar__inner { gap: 14px 22px; }
  .trustbar__item { flex: 1 1 40%; }
  .aspiracional { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 22px; }
  .cta-final__btns { flex-direction: column; }
  .cta-final__btns .btn { width: 100%; }
  .sim-scenarios { grid-template-columns: 1fr; }
  /* coverage table -> cards on mobile */
  .cover-table table, .cover-table thead, .cover-table tbody, .cover-table tr, .cover-table td { display: block; }
  .cover-table thead { display: none; }
  .cover-table tr { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; padding: 10px 12px; }
  .cover-table td { border: none; padding: 3px 0; }
  .cover-table td:first-child { font-weight: 700; font-family: var(--font-d); }
  .cover-table td:nth-child(2)::before { content: "Incluso: "; color: var(--muted); font-weight: 400; }
  .cover-table td:last-child::before { content: "Franquia: "; color: var(--muted); }
  .cover-table .ct-mid { text-align: left; }
}

/* ====================================================================
   CAR DETAIL PAGE (car.html)
   ==================================================================== */
/* nd-nav sticky — sem compensador de fixed. */
.car-page { padding: 16px 0 40px; min-height: 70vh; }
.car-back {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px;
  color: var(--muted); margin-bottom: 18px; font-weight: 500;
}
.car-back:hover { color: var(--green-d); }
.car-missing { text-align: center; padding: 60px 0; }
.car-missing h1 { font-size: 26px; margin-bottom: 10px; }
.car-missing p { color: var(--muted); margin-bottom: 20px; }

.car-gallery { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.car-gallery__main {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius);
  overflow: hidden; background: var(--surface); border: 1px solid var(--line);
}
.car-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.car-gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.car-gallery__nav--prev { left: 12px; }
.car-gallery__nav--next { right: 12px; }
.car-gallery__counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(10,20,15,.7); color: #fff; font-size: 12px;
  padding: 4px 10px; border-radius: 999px;
}
.car-gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.car-gallery__thumb {
  aspect-ratio: 16/10; border: 2px solid transparent; border-radius: var(--radius-sm);
  overflow: hidden; padding: 0; cursor: pointer; background: var(--surface);
}
.car-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.car-gallery__thumb.is-active { border-color: var(--green); }
.car-gallery__thumb.is-active img { opacity: 1; }

.car-detail__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.car-info { display: flex; flex-direction: column; gap: 28px; }
.car-head__cat { font-family: var(--font-d); font-weight: 700; font-size: 12px; color: var(--green); text-transform: uppercase; letter-spacing: .6px; }
.car-head h1 { font-size: 28px; margin: 6px 0; }
.car-head__meta { color: var(--muted); font-size: 14px; }
.car-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; list-style: none; }
.car-quick li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.car-quick span { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); font-weight: 600; }
.car-quick strong { font-family: var(--font-d); font-size: 14px; }
.car-section h2 { font-size: 18px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.car-section p { color: var(--muted); font-size: 14.5px; }
.car-condition { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.car-condition div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.car-condition span { display: block; font-size: 10.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.car-condition strong { font-family: var(--font-d); font-size: 15px; color: var(--green-d); }
.car-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.car-features li { font-size: 13.5px; color: var(--muted); padding-left: 22px; position: relative; }
.car-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.car-included { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; font-size: 13.5px; color: var(--muted); }

.car-book { position: sticky; top: 90px; }
.car-book__inner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.car-book__price { font-family: var(--font-d); font-weight: 800; font-size: 26px; color: var(--ink); }
.car-book__price small { font-size: 14px; color: var(--muted); font-weight: 600; }
.car-book__est { font-size: 12px; color: var(--muted); margin: 4px 0 14px; }
.car-book__field { margin-bottom: 14px; }
.car-book__field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; }
.car-book__field input, .car-book__field select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-b); font-size: 14px;
}
.car-book__field input:focus, .car-book__field select:focus { outline: none; border-color: var(--green); }
.car-book__summary { background: var(--green-l); border-radius: var(--radius-sm); padding: 12px 14px; margin: 14px 0; }
.car-book__sumrow { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 3px 0; }
.car-book__sumrow strong { color: var(--green-d); font-family: var(--font-d); }
.car-book__note { font-size: 11.5px; color: var(--muted); margin-top: 10px; }
.car-share { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.car-share strong { font-size: 12px; text-transform: uppercase; color: var(--muted); letter-spacing: .5px; }
.car-share__btns { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.share-btn {
  flex: 1; min-width: 90px; text-align: center; padding: 9px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  font-size: 12.5px; font-family: var(--font-b); color: var(--ink);
}
.share-btn:hover { border-color: var(--green); color: var(--green-d); }
.car-others { margin-top: 44px; }
.car-others h2 { font-size: 20px; margin-bottom: 16px; }
.car-others__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.other-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: .16s; }
.other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
.other-card__img { aspect-ratio: 3/2; background: var(--surface); }
.other-card__img img { width: 100%; height: 100%; object-fit: cover; }
.other-card__body { padding: 12px 14px; }
.other-card__body strong { font-family: var(--font-d); font-size: 13.5px; display: block; }
.other-card__body span { font-size: 12px; color: var(--muted); }
.car-pilot-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-family: var(--font-d); font-weight: 700; font-size: 11px;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}

@media (max-width: 1000px) {
  .car-detail__grid { grid-template-columns: 1fr; }
  .car-book { position: static; }
  .car-others__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .car-quick { grid-template-columns: 1fr 1fr; }
  .car-features, .car-included { grid-template-columns: 1fr; }
  .car-condition { grid-template-columns: 1fr; }
  .car-others__grid { grid-template-columns: 1fr; }
  .car-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ====================================================================
   TERMOS / LEGAL PAGE
   ==================================================================== */
.legal-page { padding: 100px 0 60px; }
.legal-page h1 { font-size: 30px; margin-bottom: 8px; }
.legal-intro { color: var(--muted); margin-bottom: 10px; }
.legal-warn {
  background: #fff7e6; border: 1px solid #f0d79a; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13px; color: #8a6d1f; margin-bottom: 32px;
}
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.legal-toc a {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; color: var(--green-d); font-weight: 600;
}
.legal-toc a:hover { background: var(--green-l); }
.legal-section { margin-bottom: 36px; scroll-margin-top: 90px; }
.legal-section h2 { font-size: 21px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--green-l); }
.legal-section h3 { font-size: 15px; margin: 16px 0 4px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.legal-section ul { list-style: disc; padding-left: 22px; }

/* ====================================================================
   NAV — ajuste para 9 itens + link ativo
   ==================================================================== */
.nav__links { gap: 17px; }
.nav__links a { font-size: 13.5px; }
.nav__links a.is-current { color: var(--green-d); font-weight: 700; }
@media (max-width: 1150px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

/* ====================================================================
   PÁGINAS INTERNAS — hero
   ==================================================================== */
.page-hero {
  padding: 100px 0 22px;
  background: linear-gradient(180deg, var(--green-l), #fff);
}
.page-hero h1 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin: 14px 0 12px; max-width: 780px; }
.page-hero p { color: var(--muted); font-size: 16px; max-width: 700px; }

/* ---- protection cards (shield) ---- */
.prot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prot-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
}
.prot-card__ico { font-size: 28px; display: block; margin-bottom: 8px; }
.prot-card h3 { font-size: 16px; margin-bottom: 6px; }
.prot-card p { color: var(--muted); font-size: 13.5px; }

/* ---- cota x caução ---- */
.compare-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-2__col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.compare-2__col--alt { border-color: var(--green); box-shadow: var(--shadow); }
.compare-2__col h3 { font-size: 19px; }
.compare-2__tag {
  display: inline-block; font-family: var(--font-d); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .5px; padding: 4px 11px; border-radius: 999px;
  background: var(--surface); color: var(--muted); margin: 8px 0 14px;
}
.compare-2__tag--alt { background: var(--green-l); color: var(--green-d); }
.compare-2__col ul { display: flex; flex-direction: column; gap: 9px; }
.compare-2__col li { font-size: 13.5px; color: var(--muted); padding-left: 20px; position: relative; }
.compare-2__col li::before { content: "•"; position: absolute; left: 4px; top: -3px; color: var(--green); font-size: 18px; }

/* ---- fluxo de sinistro ---- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flow__step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.flow__num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff;
  font-family: var(--font-d); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.flow__step h3 { font-size: 16px; margin-bottom: 6px; }
.flow__step p { color: var(--muted); font-size: 13.5px; }

/* ---- oficinas CTA ---- */
.oficinas-cta {
  text-align: center; margin-top: 30px;
  background: var(--green-l); border-radius: var(--radius); padding: 26px;
}
.oficinas-cta p { font-family: var(--font-d); font-weight: 600; margin-bottom: 12px; color: var(--ink); }

/* ---- admin ---- */
.admin-locked {
  text-align: center; max-width: 640px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 28px;
}
.admin-locked__ico { font-size: 44px; }
.admin-locked .badge { margin: 10px 0; }
.admin-locked h1 { font-size: 28px; margin: 6px 0 10px; }
.admin-locked p { color: var(--muted); margin-bottom: 18px; }
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.admin-mod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.admin-mod__tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--muted); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; margin-bottom: 8px;
}
.admin-mod h3 { font-size: 16px; margin-bottom: 5px; }
.admin-mod p { color: var(--muted); font-size: 13px; }

@media (max-width: 1000px) {
  .prot-cards { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .compare-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .prot-cards, .flow, .admin-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 18px 0 18px; }
}

/* ====================================================================
   INCREMENTO — hub por perfil, banners, novas páginas
   ==================================================================== */
.drawer__cta {
  display: flex; flex-direction: column; gap: 2px;
  padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
}
.drawer__cta strong { font-family: var(--font-d); font-size: 14.5px; color: var(--ink); }
.drawer__cta span { font-size: 12px; color: var(--muted); }
.drawer__cta--primary { background: var(--green); border-color: var(--green); }
.drawer__cta--primary strong { color: #fff; }
.drawer__cta--primary span { color: rgba(255,255,255,.85); }

/* banners rotativos */
.banners-section { padding: 26px 0 8px; }
.banner-rail { position: relative; }
.banner { display: none; }
.banner.is-active { display: block; animation: bannerIn .4s ease; }
@keyframes bannerIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.banner__body {
  border-radius: var(--radius); padding: 32px 36px;
  background: linear-gradient(135deg, var(--green-l), #fff 80%);
  border: 1px solid var(--line);
}
.banner--alt  .banner__body { background: linear-gradient(135deg, #eef4ff, #fff 80%); }
.banner--alt2 .banner__body { background: linear-gradient(135deg, #fff4e6, #fff 80%); }
.banner--alt3 .banner__body { background: linear-gradient(135deg, #e8f7f1, #fff 80%); }
.banner__eyebrow {
  display: inline-block; font-family: var(--font-d); font-weight: 700;
  font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--green-d); margin-bottom: 8px;
}
.banner__body h2 { font-size: clamp(20px, 2.6vw, 28px); margin-bottom: 8px; }
.banner__body p { color: var(--muted); font-size: 15px; max-width: 620px; margin-bottom: 16px; }
.banner-ctrls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }
.banner-arrow {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--green-d); font-size: 18px; line-height: 1;
}
.banner-arrow:hover { border-color: var(--green); }
.banner-dots { display: flex; gap: 7px; }
.banner-dot { width: 9px; height: 9px; border-radius: 50%; cursor: pointer; border: none; background: var(--line); padding: 0; }
.banner-dot.is-active { background: var(--green); }

/* paths: 4 cards (Fase 62 removeu "Sou oficina") */
.paths { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .paths { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .paths { grid-template-columns: 1fr; } }

/* teaser */
.teaser { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.teaser--rev .teaser__copy { order: 2; }
.teaser__copy h2 { font-size: clamp(22px, 3vw, 30px); margin: 8px 0 12px; }
.teaser__copy p { color: var(--muted); margin-bottom: 18px; }
.teaser__list {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
}
.teaser__list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--muted); }
.teaser__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; width: 18px; height: 18px;
  background: var(--green-l); color: var(--green-d); border-radius: 50%;
  font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .teaser { grid-template-columns: 1fr; } .teaser--rev .teaser__copy { order: 0; } }

/* aceite */
.aceite {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.aceite__item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); cursor: pointer;
}
.aceite__item input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }
.aceite__btn { margin-top: 20px; width: 100%; opacity: .45; pointer-events: none; transition: opacity .2s ease; }
.aceite__btn.is-enabled { opacity: 1; pointer-events: auto; }
.aceite--shake { animation: shake .45s ease; }
@keyframes shake { 0%,100%{transform:none} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

.sim-range-note { text-align: center; font-size: 13px; color: var(--green-d); font-weight: 600; margin: 6px 0 10px; }

/* steps 6 / flow 5 */
.steps--6 { grid-template-columns: repeat(3, 1fr); }
.flow--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .steps--6 { grid-template-columns: 1fr 1fr; } .flow--5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps--6 { grid-template-columns: 1fr; } .flow--5 { grid-template-columns: 1fr; } }

/* partner cards */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.partner-card__ico { font-size: 26px; }
.partner-card h3 { font-size: 17px; }
.partner-card__who { color: var(--muted); font-size: 13px; }
.partner-card__benef {
  font-family: var(--font-d); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .5px; color: var(--green-d); margin-top: 8px;
}
.partner-card ul { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.partner-card li { position: relative; padding-left: 20px; font-size: 13px; color: var(--muted); }
.partner-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
@media (max-width: 980px) { .partner-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .partner-grid { grid-template-columns: 1fr; } }

/* status flow + tabelas + pills */
.status-flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.status-step {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.status-step--ok { background: var(--green-l); border-color: var(--green); color: var(--green-d); }
.status-arrow { color: var(--muted); font-weight: 700; }
.demo-table, .admin-table {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.demo-row, .admin-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13.5px; align-items: center;
}
.demo-row:last-child, .admin-row:last-child { border-bottom: none; }
.demo-row--head, .admin-row--head {
  background: var(--surface); font-family: var(--font-d); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted);
}
.pill {
  display: inline-block; font-style: normal; font-size: 11.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
}
.pill--ok   { background: #e8f7ee; color: #15663f; border-color: #bfe6cf; }
.pill--info { background: #e9f1ff; color: #2a4d99; border-color: #c6d8f7; }
.pill--wait { background: #fff4e0; color: #8a6116; border-color: #f0d79a; }
.pill--warn { background: #fff0e0; color: #9a5a16; border-color: #f2c79a; }
.pill--no   { background: #fdeaea; color: #a3302a; border-color: #f0c2c0; }
@media (max-width: 620px) {
  .demo-row, .admin-row { grid-template-columns: 1fr 1fr; gap: 6px; font-size: 12.5px; }
  .demo-row--head, .admin-row--head { display: none; }
  .demo-row span:first-child, .admin-row span:first-child { grid-column: 1 / -1; font-weight: 700; font-family: var(--font-d); }
}

/* two-col / check-list / status-pills */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-list li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--muted); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
@media (max-width: 560px) { .check-list { grid-template-columns: 1fr; } }
.status-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }

/* report box */
.report-box {
  display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  background: var(--green-l); border: 1px solid var(--green); border-radius: var(--radius); padding: 28px 32px;
}
.report-box__copy { flex: 1; min-width: 260px; }
.report-box h2 { font-size: clamp(20px, 2.6vw, 26px); margin: 4px 0 8px; }
.report-box p { color: var(--muted); font-size: 14px; }

/* admin dashboard */
.admin-body { background: var(--surface); }
.admin-shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.admin-side {
  background: var(--dark); color: #fff; padding: 22px 18px;
  display: flex; flex-direction: column; gap: 18px; position: sticky; top: 0; height: 100vh;
  /* Scroll interno quando menu passa da altura da viewport (cresceu muito com Cockpit/Leads/etc.) */
  overflow-y: auto;
  /* Custom scrollbar discreta no fundo escuro */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.admin-side::-webkit-scrollbar { width: 6px; }
.admin-side::-webkit-scrollbar-track { background: transparent; }
.admin-side::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.18); border-radius: 999px;
}
.admin-side::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.32); }
.admin-side__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-d); font-size: 15px; }
.admin-side__brand .brand__mark { width: 32px; height: 32px; }
.admin-side__nav { display: flex; flex-direction: column; gap: 3px; }
.admin-side__group { padding: 14px 14px 6px; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; color: #6b8076; text-transform: uppercase; margin-top: 6px; border-top: 1px solid rgba(159,179,168,.08); }
.admin-side__group:first-child { margin-top: 0; border-top: none; padding-top: 4px; }
.admin-side__nav a { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; color: #9fb3a8; }
.admin-side__nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-side__nav a.is-current { background: var(--green); color: #fff; font-weight: 600; }
.admin-side__back { margin-top: auto; font-size: 13px; color: #9fb3a8; }
.admin-side__back:hover { color: #fff; }
.admin-main { padding: 26px 34px 60px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.admin-topbar h1 { font-size: 24px; }
.admin-topbar p { color: var(--muted); font-size: 13px; }
.admin-demo {
  background: #fff4e0; color: #8a6116; border: 1px solid #f0d79a;
  border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600;
}
.admin-block { margin-bottom: 30px; scroll-margin-top: 16px; }
.admin-block h2 { font-size: 18px; margin-bottom: 14px; }
.kpi-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.kpi small { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.kpi b { display: block; font-family: var(--font-d); font-size: 26px; color: var(--green-d); margin: 4px 0 2px; }
.kpi span { font-size: 12px; color: var(--muted); }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; overflow-x: auto; }
.admin-card p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }

/* tabelas de dados do admin (Cadastros, Leads, Frota, Reservas, etc.) */
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th, table.admin-table td {
  padding: 10px 14px; text-align: left; font-size: 13.5px;
  border-bottom: 1px solid var(--line); vertical-align: middle;
}
table.admin-table thead th {
  background: var(--surface); font-family: var(--font-d); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted);
}
table.admin-table tbody tr:last-child td { border-bottom: none; }
.cad-status {
  font: inherit; font-size: 13px; padding: 5px 8px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; max-width: 100%;
}

/* imagens de topo (hero) das paginas — Prompt complementar */
.hero-media {
  width: 100%; margin: 24px 0 4px; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.08); background: var(--surface);
}
.hero-media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
}
@media (max-width: 768px) {
  .hero-media { margin: 18px 0 4px; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

/* check-in / check-out — Fase 5 */
.insp-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 12px; background: #fff;
}
.insp-card__head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.insp-card__head strong { font-family: var(--font-d); font-size: 15px; }
.insp-card__head span { color: var(--muted); font-size: 13px; }
.insp-card__actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.insp-card__msg { color: var(--muted); font-size: 13px; margin: 6px 0; }
.insp-form { margin: 14px 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.insp-form h3 { font-family: var(--font-d); font-size: 15px; margin-bottom: 12px; }
.insp-accept { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; margin: 12px 0; }
.insp-accept input { margin-top: 3px; }
.insp-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.maint-form { margin-top: 14px; }
.maint-form .btn { margin-top: 12px; }
.case-notes {
  width: 100%; margin-top: 10px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 13.5px; resize: vertical; box-sizing: border-box;
}
@media (max-width: 1100px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   ADMIN MOBILE — sidebar vira drawer off-screen + topbar
   ============================================================ */

/* Desktop: topbar mobile + overlay + botão close ficam escondidos */
.admin-mobile-bar { display: none; }
.admin-side-overlay { display: none; }
.admin-side__close { display: none; }

/* Mobile (< 900px) */
@media (max-width: 900px) {
  .admin-mobile-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--dark, #0F3D2E);
    color: #fff;
    position: sticky; top: 0; z-index: 60;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
  }
  .admin-mobile-bar__toggle {
    width: 38px; height: 38px;
    border: 0; background: transparent; padding: 0;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    cursor: pointer;
  }
  .admin-mobile-bar__toggle span {
    display: block; width: 22px; height: 2px; background: #fff;
    border-radius: 2px; transition: transform .2s, opacity .2s;
    margin: 0 auto;
  }
  .admin-mobile-bar__title {
    font-family: var(--font-d); font-size: 14.5px;
    flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .admin-mobile-bar__title strong { color: #ffd966; }
  .admin-mobile-bar__home {
    color: rgba(255,255,255,.85); text-decoration: none;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; transition: background .15s;
  }
  .admin-mobile-bar__home:hover { background: rgba(255,255,255,.12); color: #fff; }

  /* Shell vira coluna única, sidebar absoluta */
  .admin-shell { grid-template-columns: 1fr; min-height: auto; }
  .admin-main { padding: 18px 16px 50px; }

  /* Sidebar = drawer off-screen */
  .admin-side {
    position: fixed; top: 0; left: 0;
    width: 86%; max-width: 320px; height: 100vh;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 90; box-shadow: 8px 0 30px rgba(0,0,0,.25);
    padding-top: 14px;
  }
  body.is-admin-drawer-open .admin-side { transform: translateX(0); }

  /* Overlay */
  .admin-side-overlay {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 80;
  }
  body.is-admin-drawer-open .admin-side-overlay {
    opacity: 1; pointer-events: auto;
  }

  /* Botão fechar (X) dentro da sidebar (só mobile) */
  .admin-side__close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 10px; right: 10px;
    width: 36px; height: 36px;
    background: transparent; border: 0; color: #fff;
    cursor: pointer; border-radius: 8px;
    transition: background .15s;
  }
  .admin-side__close:hover { background: rgba(255,255,255,.12); }

  /* Trava scroll do body quando drawer aberto */
  body.is-admin-drawer-open { overflow: hidden; }

  /* KPI grid no mobile: 2 colunas (era 6 fixo) */
  .kpi-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .kpi { padding: 12px 14px; }
  .kpi b { font-size: 20px; }
  .kpi small { font-size: 10.5px; }
  .kpi span { font-size: 11px; }

  /* Topbar empilha (botões abaixo do título) */
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
  .admin-topbar h1 { font-size: 20px; }
  .admin-topbar p { font-size: 12.5px; }

  /* Hero admin reduz padding + tamanho */
  .admin-main .dash-hero {
    padding: 18px 16px !important;
    margin-bottom: 18px !important;
    flex-direction: column !important;
    text-align: center;
    gap: 12px !important;
  }
  .admin-main .dash-hero .dash-hero__title { font-size: 18px !important; }
  .admin-main .dash-hero .dash-hero__sub { font-size: 13px !important; }

  /* Blocos: títulos menores + scroll horizontal em qq overflow */
  .admin-block { margin-bottom: 22px; }
  .admin-block h2 { font-size: 16px; margin-bottom: 12px; }
  .admin-card { padding: 16px 14px; }

  /* Tabelas: garante scroll horizontal limpo + fontes menores */
  .admin-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.admin-table { font-size: 12.5px; min-width: 540px; }
  table.admin-table th, table.admin-table td {
    padding: 8px 10px; font-size: 12.5px;
  }

  /* Botões dentro do admin não devem estourar */
  .admin-main .btn { padding: 9px 14px; font-size: 13.5px; }

  /* Forms e inputs no admin */
  .admin-main input, .admin-main select, .admin-main textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: 1fr !important; }
  .admin-main { padding: 14px 12px 40px; }
}

/* Grids inline (style="...grid-template-columns:repeat(N,1fr)") dentro
   de .admin-main quebram em mobile. Override força 2 cols < 900px,
   1 col < 560px. !important porque inline style tem precedência. */
@media (max-width: 900px) {
  .admin-main [style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .admin-main [style*="display:grid"][style*="repeat"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .admin-main [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* Cockpit KPIs (gradient verde card) também precisam responsive */
@media (max-width: 900px) {
  .cockpit-kpis { grid-template-columns: repeat(2, 1fr) !important; }
  .cockpit-hero { padding: 20px 18px; }
  .cockpit-hero__title { font-size: 19px; }
}
@media (max-width: 560px) {
  .cockpit-kpis { grid-template-columns: 1fr !important; }
}

/* ====================================================================
   PROPRIETÁRIOS — "Esse modelo é ideal para quem?"
   ==================================================================== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-col { display: flex; flex-direction: column; gap: 10px; }
.fit-col__head {
  font-family: var(--font-d); font-weight: 700; font-size: 14.5px;
  padding: 12px 16px; border-radius: var(--radius-sm);
}
.fit-col--yes .fit-col__head { background: var(--green-l); color: var(--green-d); border: 1px solid #bfe6cf; }
.fit-col--no  .fit-col__head { background: #fff4e0; color: #8a6116; border: 1px solid #f0d79a; }
.fit-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.fit-col--yes .fit-card { border-left: 3px solid var(--green); }
.fit-col--no  .fit-card { border-left: 3px solid #e0a73a; }
.fit-card__ico { font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.fit-card h4 { font-size: 14.5px; margin-bottom: 3px; }
.fit-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }

.why-box {
  margin: 24px 0;
  background: var(--green-l); border: 1px solid #bfe6cf;
  border-radius: var(--radius); padding: 22px 26px;
}
.why-box h3 { font-size: 17px; color: var(--green-d); margin-bottom: 6px; }
.why-box p { color: var(--ink); font-size: 14px; line-height: 1.6; }
.why-box ul { margin: 10px 0 6px; padding-left: 20px; }
.why-box li { color: var(--ink); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.why-box li:last-child { margin-bottom: 0; }
.sim-row__note { display: block; font-style: normal; font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

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

@media (max-width: 760px) {
  .fit-grid { grid-template-columns: 1fr; }
  .perfil-cta { flex-direction: column; }
  .perfil-cta .btn { width: 100%; }
}

/* ====================================================================
   POLÍTICA DE LIMPEZA E DEVOLUÇÃO
   ==================================================================== */
.why-box--warn { background: #fff4e0; border-color: #f0d79a; }
.why-box--warn h3 { color: #8a6116; }
.why-box--warn a { color: #8a6116; font-weight: 600; }
.lead-text {
  max-width: 760px; margin: 0 auto 24px; text-align: center;
  color: var(--muted); font-size: 14.5px; line-height: 1.65;
}
.block-title {
  text-align: center; font-family: var(--font-d); font-size: 17px;
  margin: 30px 0 16px;
}
.badge-strip {
  margin-top: 26px; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px;
}
.badge-strip__label {
  display: block; font-family: var(--font-d); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 10px;
}
.badge-strip .status-pills { justify-content: center; margin-bottom: 0; }

/* ====================================================================
   AUTENTICAÇÃO — login, cadastro, perfis
   ==================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.opt { color: var(--muted); font-weight: 400; }
.btn--ghost { background: var(--green-l); color: var(--green-d); }
.btn--ghost:hover { background: #d9ebe1; transform: translateY(-2px); }

.nav--solid { background: #fff; }
.nav__back { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--muted); transition: color .14s; }
.nav__back:hover { color: var(--green-d); }

/* ============================================================
 * Fase 71b — Fix GLOBAL responsividade: nav fixo (70px) cobria
 * conteudo no topo de varias paginas em mobile. Padding-top
 * extra nos heroes mais problematicos pra garantir que nada
 * fique escondido atras do nav. !important pra sobrescrever
 * declaracoes inline e specificity de outros arquivos.
 * ============================================================ */
/* Spacing reduzido — nd-nav e sticky e ocupa altura no fluxo, nao
   precisa de padding-top compensador. */
.wcm-hero,
.welcome-hero,
.gold-hero,
.signup-hero {
  padding-top: 20px !important;
}
.notif-page {
  padding-top: 18px !important;
}
@media (max-width: 640px) {
  .wcm-hero,
  .welcome-hero,
  .gold-hero,
  .signup-hero {
    padding-top: 16px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .notif-page {
    padding-top: 14px !important;
  }
}
@media (max-width: 380px) {
  .wcm-hero,
  .welcome-hero,
  .gold-hero,
  .signup-hero {
    padding-top: 12px !important;
  }
}
/* H1 responsivo dos heroes — clamp menor pra nao quebrar em iPhone SE */
.wcm-greet__name,
.welcome-hero h1,
.gold-hero h1,
.signup-hero__copy h1 {
  font-size: clamp(20px, 6vw, 36px) !important;
  line-height: 1.18 !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}
@media (max-width: 380px) {
  .wcm-greet__name,
  .welcome-hero h1,
  .gold-hero h1,
  .signup-hero__copy h1 {
    font-size: 19px !important;
  }
}

.footer--slim { padding: 26px 0; }
.footer--slim p { color: #8fa399; font-size: 12.5px; text-align: center; margin: 0; }

/* layout das telas de autenticação */
.auth { padding: 104px 0 64px; }
.auth-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
  max-width: 1000px; margin: 0 auto;
}
.auth-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.auth-visual img { display: block; width: 100%; height: auto; }

.auth-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 34px; display: flex; flex-direction: column;
}
.auth-card__title {
  font-family: var(--font-d); font-size: 28px; font-weight: 800;
  color: var(--ink); margin: 10px 0 8px; line-height: 1.15;
}
.auth-card__sub { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 20px; }

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.auth-field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-b);
  font-size: 14.5px; color: var(--ink); background: #fbfdfc;
}
.auth-field input:focus { outline: none; border-color: var(--green); background: #fff; }
.tel-group { display: flex; gap: 8px; }
.tel-group .tel-ddi { flex: 0 0 44%; max-width: 178px; }
.tel-group input { flex: 1 1 auto; min-width: 0; }
.auth-row { display: flex; justify-content: flex-end; }
.auth-link { font-size: 13px; font-weight: 600; color: var(--green-d); }
.auth-link:hover { text-decoration: underline; }
.auth-submit { width: 100%; margin-top: 4px; }
.auth-google, .auth-secondary { width: 100%; margin-top: 12px; }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 12px; margin: 18px 0;
}
.auth-divider span { white-space: nowrap; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.auth-note { font-size: 12px; color: var(--muted); line-height: 1.55; margin-top: 18px; }
.auth-alt { font-size: 14px; color: var(--muted); margin-top: 14px; text-align: center; }
.auth-alt a { color: var(--green-d); font-weight: 700; }

.auth-msg {
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 13.5px; line-height: 1.5; margin-bottom: 16px;
}
.auth-msg--error { background: #fdecea; border: 1px solid #f3c2bc; color: #a3372b; }
.auth-msg--warn  { background: #fff4e0; border: 1px solid #f0d79a; color: #8a6116; }
.auth-msg--ok    { background: var(--green-l); border: 1px solid #bfe6cf; color: var(--green-d); }

/* cadastro — escolha de perfil */
.auth--signup { padding-top: 104px; }
.auth-head { text-align: center; max-width: 680px; margin: 0 auto 26px; }
.auth-head h1 {
  font-family: var(--font-d); font-size: clamp(24px, 3.4vw, 33px);
  font-weight: 800; color: var(--ink); margin: 12px 0 10px; line-height: 1.15;
}
.auth-head p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.role-grid {
  border: 0; padding: 0; margin: 0 auto 26px; max-width: 880px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.role-card {
  position: relative; display: block; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 18px 46px 18px 20px; transition: .15s;
}
.role-card:hover { border-color: var(--green); transform: translateY(-2px); }
.role-card input { position: absolute; opacity: 0; pointer-events: none; }
.role-card__tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--green-d);
  background: var(--green-l); border-radius: 999px; padding: 4px 10px; margin-bottom: 9px;
}
.role-card__body strong {
  display: block; font-family: var(--font-d); font-size: 17px;
  color: var(--ink); margin-bottom: 6px;
}
.role-card__desc { display: block; color: var(--muted); font-size: 13px; line-height: 1.5; }
.role-card__check {
  position: absolute; top: 16px; right: 16px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 14px;
  display: none; align-items: center; justify-content: center;
}
.role-card.is-selected { border-color: var(--green); background: var(--green-l); box-shadow: 0 0 0 3px rgba(26,122,79,.12); }
.role-card.is-selected .role-card__check { display: flex; }

.auth-signup-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; max-width: 560px; margin: 0 auto;
}
.auth-signup-card .block-title { margin-top: 0; text-align: left; }

@media (max-width: 760px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .role-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 22px; }
  .auth-signup-card { padding: 24px 20px; }
}

/* ====================================================================
   ONBOARDING — perfis logados
   ==================================================================== */
.onb { padding: 104px 0 64px; }
.onb-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.onb-head h1 {
  font-family: var(--font-d); font-size: clamp(24px, 3.4vw, 33px);
  font-weight: 800; color: var(--ink); margin: 12px 0 10px; line-height: 1.15;
}
.onb-head p { color: var(--muted); font-size: 15px; line-height: 1.65; }

.onb-context {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1000px; margin: 0 auto 22px;
}
.onb-context .why-box, .onb-context .onb-info { margin: 0; }

.onb-layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px;
  max-width: 1000px; margin: 0 auto; align-items: start;
}

.onb-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px;
}
.onb-card + .onb-card { margin-top: 18px; }
.onb-card .block-title { margin-top: 0; text-align: left; }

.onb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.onb-field--full { grid-column: 1 / -1; }

.auth-field select, .auth-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-b);
  font-size: 14.5px; color: var(--ink); background: #fbfdfc;
}
.auth-field textarea { resize: vertical; min-height: 64px; }
.auth-field select:focus, .auth-field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
}
.auth-hint { margin: 0; font-size: 12px; line-height: 1.5; color: var(--muted); }

.onb-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--ink); line-height: 1.5;
  cursor: pointer; padding: 6px 0;
}
.onb-check + .onb-check { margin-top: 4px; }
.onb-check input {
  margin-top: 1px; width: 18px; height: 18px;
  accent-color: var(--green); flex-shrink: 0; cursor: pointer;
}
.onb-check span { cursor: pointer; }
.onb-card .onb-check { margin-top: 16px; }

.onb-aside { display: flex; flex-direction: column; gap: 16px; }
.onb-info {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.onb-info h3 { font-family: var(--font-d); font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.onb-info p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.onb-info p + p { margin-top: 8px; }
.onb-info ul { margin: 8px 0 0; padding-left: 18px; }
.onb-info li { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 5px; }
.onb-info a { color: var(--green-d); font-weight: 600; }
.onb-info .btn { margin-top: 12px; }

.onb-code { text-align: center; }
.onb-code__value {
  font-family: var(--font-d); font-weight: 800; font-size: 22px;
  color: var(--green-d); letter-spacing: 1px; margin: 6px 0 8px;
}

.onb-done {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px;
}
.onb-done h2 { font-family: var(--font-d); font-size: 24px; color: var(--green-d); margin-bottom: 10px; }
.onb-done p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.onb-done__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .onb-context { grid-template-columns: 1fr; }
  .onb-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .onb-grid { grid-template-columns: 1fr; }
  .onb-card { padding: 24px 20px; }
}

/* ====================================================================
   DASHBOARDS — painéis por perfil
   ==================================================================== */
/* nd-nav e sticky, ocupa altura no fluxo — nao precisa de padding-top
   compensador. Spacing reduzido (era 94px herdado de nav fixed). */
.dash { padding: 16px 0 40px; }
.dash-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.dash-nav-actions a { font-size: 14px; font-weight: 600; color: var(--muted); }
.dash-nav-actions a:hover { color: var(--green-d); }

.dash-shell {
  display: grid; grid-template-columns: 222px 1fr; gap: 22px;
  max-width: 1080px; margin: 0 auto; align-items: start;
}
.dash-side {
  position: sticky; top: 90px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
}
.dash-side__title {
  font-family: var(--font-d); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px; color: var(--muted);
  margin-bottom: 8px; padding: 0 8px;
}
.dash-side__nav a {
  display: block; padding: 9px 12px; border-radius: var(--radius-sm);
  color: var(--ink); font-size: 14px; font-weight: 500; transition: background .14s;
}
.dash-side__nav a:hover { background: var(--surface); color: var(--green-d); }

.dash-main { min-width: 0; }
.dash-topline {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; margin-bottom: 18px; flex-wrap: wrap;
}
.dash-topline h1 { font-family: var(--font-d); font-size: 25px; font-weight: 800; color: var(--ink); }

.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.dash-kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 17px 18px; }
.dash-kpi span { font-size: 12.5px; color: var(--muted); }
.dash-kpi strong { display: block; margin-top: 6px; font-family: var(--font-d); font-size: 23px; color: var(--ink); }

.dash-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 16px; scroll-margin-top: 90px;
}
.dash-panel h2 { font-family: var(--font-d); font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.dash-panel > p { color: var(--muted); font-size: 13.8px; line-height: 1.6; }
.dash-panel .why-box { margin: 14px 0 0; }

.dash-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.dash-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
}
.dash-row__main { min-width: 0; }
.dash-row__main strong { display: block; font-size: 14.5px; color: var(--ink); }
.dash-row__main span { font-size: 12.5px; color: var(--muted); }
.dash-empty {
  text-align: center; color: var(--muted); font-size: 13.5px;
  padding: 18px; border: 1px dashed var(--line); border-radius: var(--radius-sm); margin-top: 12px;
}
.dash-cta { margin-top: 14px; }
.dash-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; }
.dash-links a { font-size: 13.5px; font-weight: 600; color: var(--green-d); }
.dash-links a:hover { text-decoration: underline; }

.dash-pill {
  flex-shrink: 0; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 6px 12px; white-space: nowrap;
}
.dash-pill--ok { background: var(--green-l); color: var(--green-d); }
.dash-pill--warn { background: #fff4e0; color: #8a6116; }
.dash-pill--bad { background: #fdecea; color: #a3372b; }
.dash-pill--neutral { background: var(--surface); color: var(--muted); }

@media (max-width: 860px) {
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side { position: static; }
  .dash-side__nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .dash-side__nav a { font-size: 13px; padding: 7px 10px; }
}
@media (max-width: 560px) {
  .dash-cards { grid-template-columns: 1fr; }
  .dash-panel { padding: 20px 18px; }
  .dash-row { flex-wrap: wrap; }
}

/* ====================================================================
   ADMIN — gate de acesso por login/role (Fase 4)
   ==================================================================== */
.admin-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.admin-gate[hidden] { display: none; }
.admin-gate__card { max-width: 440px; text-align: center; }
.admin-gate__card .brand__mark {
  width: 46px; height: 46px; margin: 0 auto 18px; color: #fff;
  background: rgba(255,255,255,.12);
}
.admin-gate__card h1 { font-family: var(--font-d); font-size: 24px; margin-bottom: 10px; }
.admin-gate__card p { color: #b9c9c1; font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.admin-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.admin-side__logout {
  display: block; width: 100%; margin-top: 8px;
  background: none; border: 1px solid rgba(255,255,255,.18);
  color: #cdddd4; font-family: var(--font-b); font-size: 13px; font-weight: 600;
  padding: 9px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: .14s;
}
.admin-side__logout:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ====================================================================
   DASHBOARD PROPRIETÁRIO — acompanhamento da locação
   ==================================================================== */
.loc-legend {
  margin-top: 14px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.loc-legend__label {
  display: block; font-family: var(--font-d); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 9px;
}
.loc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.loc-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 15px 16px;
}
.loc-card__label {
  display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--muted); margin-bottom: 8px;
}
.loc-card__status { display: inline-block; }
.loc-card > strong { font-family: var(--font-d); font-size: 15px; color: var(--ink); }
.loc-card__line { font-size: 13px; color: var(--muted); margin: 3px 0; }
.loc-card__line strong { color: var(--ink); }
.loc-card__note { display: block; font-size: 12px; color: var(--muted); margin-top: 7px; line-height: 1.5; }

.loc-checklists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.loc-check {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
}
.loc-check h3 { font-family: var(--font-d); font-size: 15px; color: var(--ink); margin-bottom: 10px; }
.loc-check__list { list-style: none; margin: 0; padding: 0; }
.loc-check__list li {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line);
}
.loc-check__list li:last-child { border-bottom: none; }
.loc-check__list span { color: var(--muted); }
.loc-check__list b { color: var(--ink); font-weight: 600; }

.dash-row--hl { background: var(--green-l); border-color: #bfe6cf; }
.dash-row--hl .dash-row__main strong, .dash-row--hl .loc-fin-val { color: var(--green-d); }
.loc-fin-val { flex-shrink: 0; font-family: var(--font-d); font-weight: 700; font-size: 14px; color: var(--ink); }

.loc-alerts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.loc-alert {
  border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: var(--radius-sm); padding: 11px 14px; background: #fff;
}
.loc-alert strong { display: block; font-size: 13.5px; color: var(--ink); }
.loc-alert span { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.45; }

.dash-faq { margin-top: 12px; }
.dash-faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 8px; background: #fff;
}
.dash-faq summary {
  cursor: pointer; font-family: var(--font-d); font-weight: 600;
  font-size: 14px; color: var(--ink); list-style: none;
}
.dash-faq summary::-webkit-details-marker { display: none; }
.dash-faq summary::before { content: "+ "; color: var(--green); font-weight: 700; }
.dash-faq details[open] summary::before { content: "− "; }
.dash-faq details[open] summary { margin-bottom: 8px; }
.dash-faq p { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 700px) {
  .loc-cards { grid-template-columns: 1fr; }
  .loc-checklists { grid-template-columns: 1fr; }
  .loc-alerts { grid-template-columns: 1fr; }
}

/* ====================================================================
   STATUS DO CADASTRO + protocolo
   ==================================================================== */
.status-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; max-width: 540px; margin: 0 auto;
}
.status-result {
  margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); padding: 18px 20px;
}
.status-result__head {
  display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.status-result__label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--muted);
}
.status-result__head strong { font-family: var(--font-d); font-size: 19px; color: var(--ink); }
.status-result__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--muted); margin-bottom: 10px;
}
.status-result__text { font-size: 14px; color: var(--ink); line-height: 1.55; margin-bottom: 10px; }
.status-result__meta { font-size: 12.5px; color: var(--muted); margin: 2px 0; }
.status-wa { margin-top: 16px; }

.onb-proto {
  background: var(--green-l); border: 1px solid #bfe6cf; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 14px; color: var(--green-d); margin: 14px 0;
}
.onb-proto strong { font-family: var(--font-d); font-size: 17px; letter-spacing: .5px; }

/* admin — central de notificações */
.admin-notif {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.admin-notif:last-child { border-bottom: none; }
.admin-notif strong { font-size: 13.5px; color: var(--ink); }
.admin-notif span { font-size: 12.5px; color: var(--muted); }

/* ====================================================================
   DASHBOARDS — polimento visual: hero, ícones, KPI cards (refresh)
   --------------------------------------------------------------------
   Adições não-destrutivas. Todas as classes novas têm prefixo claro
   e não tocam o layout/JS existente.
   ==================================================================== */

/* HERO BANNER ------------------------------------------------------- */
.dash-hero {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 30px 34px;
  margin-bottom: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #145f3e 0%, #1a7a4f 55%, #2da473 100%);
  box-shadow: 0 20px 48px -22px rgba(20,40,30,.45);
  overflow: hidden;
  isolation: isolate;
}
.dash-hero__icon {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  flex-shrink: 0;
}
.dash-hero__icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dash-hero__text { position: relative; z-index: 2; min-width: 0; }
.dash-hero__eyebrow {
  font-family: var(--font-d); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  opacity: 0.85; margin-bottom: 6px;
}
.dash-hero__title {
  font-family: var(--font-d); font-size: 27px; font-weight: 800;
  color: #fff; margin-bottom: 6px; line-height: 1.15;
}
.dash-hero__sub {
  font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.92);
  max-width: 720px;
}
.dash-hero::before {
  content: ""; position: absolute; z-index: 1;
  top: -80px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
}
.dash-hero::after {
  content: ""; position: absolute; z-index: 1;
  bottom: -90px; right: 100px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

/* Variants por papel */
.dash-hero--cliente      { background: linear-gradient(135deg, #145f3e 0%, #1a7a4f 55%, #2da473 100%); }
.dash-hero--proprietario { background: linear-gradient(135deg, #0d4a2f 0%, #1f7050 55%, #4ba37e 100%); }
.dash-hero--parceiro     { background: linear-gradient(135deg, #2a2470 0%, #4742a6 55%, #7e7ad4 100%); }
.dash-hero--oficina      { background: linear-gradient(135deg, #7a3d0a 0%, #c47012 55%, #e29945 100%); }
.dash-hero--protecao     { background: linear-gradient(135deg, #133e62 0%, #2a6a9e 55%, #5ea1cc 100%); }
.dash-hero--admin        { background: linear-gradient(135deg, #16202a 0%, #2d3d4f 55%, #506677 100%); }

@media (max-width: 720px) {
  .dash-hero { padding: 22px 22px; gap: 16px; border-radius: 18px; }
  .dash-hero__icon { width: 52px; height: 52px; border-radius: 14px; }
  .dash-hero__icon svg { width: 26px; height: 26px; }
  .dash-hero__title { font-size: 22px; }
  .dash-hero__sub { font-size: 13.5px; }
  .dash-hero::before { width: 240px; height: 240px; }
}

/* SIDEBAR — ícones nos links ---------------------------------------- */
.dash-side__nav a {
  display: flex; align-items: center; gap: 10px;
}
.dash-side__nav svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.7;
  transition: opacity .14s, transform .14s;
}
.dash-side__nav a:hover svg { opacity: 1; transform: translateX(1px); }

/* KPI CARDS — polimento e variante com ícone ------------------------ */
.dash-kpi {
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  box-shadow: 0 1px 0 rgba(20,40,30,.02);
}
.dash-kpi:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -16px rgba(20,40,30,.22);
  border-color: #d8e4dd;
}
.dash-kpi__icon {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--green-l); color: var(--green-d);
}
.dash-kpi__icon svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dash-kpi__icon[data-tone="green"]  { background: #e8f3ed; color: #145f3e; }
.dash-kpi__icon[data-tone="amber"]  { background: #fff4e0; color: #8a6116; }
.dash-kpi__icon[data-tone="blue"]   { background: #e6f0fb; color: #1f4f7a; }
.dash-kpi__icon[data-tone="violet"] { background: #ece9fb; color: #4742a6; }
.dash-kpi__icon[data-tone="red"]    { background: #fdecea; color: #a3372b; }
.dash-kpi__icon[data-tone="slate"]  { background: #e8eced; color: #364859; }

/* PILLS — variantes coloridas extras -------------------------------- */
.dash-pill--accent { background: #e6f3ec; color: var(--green-d); }
.dash-pill--violet { background: #ece9fb; color: #4742a6; }
.dash-pill--amber  { background: #fff4e0; color: #8a6116; }
.dash-pill--blue   { background: #e6f0fb; color: #1f4f7a; }

/* EMPTY STATE com ilustração SVG ------------------------------------ */
.dash-empty--illus {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 18px;
}
.dash-empty--illus svg {
  width: 48px; height: 48px;
  stroke: var(--muted); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.55;
}

/* SIDE — polimento sutil do título ---------------------------------- */
.dash-side__title {
  display: flex; align-items: center; gap: 8px;
}
.dash-side__title::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--green);
}

/* ADMIN SIDEBAR — ícones nos links ---------------------------------- */
.admin-side__nav a {
  display: flex; align-items: center; gap: 10px;
}
.admin-side__nav svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.75;
  transition: opacity .14s, transform .14s;
}
.admin-side__nav a:hover svg { opacity: 1; transform: translateX(1px); }
.admin-side__nav a.is-current svg { opacity: 1; }

/* HERO dentro do admin (espaçamento e margem específicos) */
.admin-main .dash-hero { margin-top: 0; margin-bottom: 24px; }

/* Como funciona — passo a passo do fluxo do cliente ------------------ */
.dash-steps {
  list-style: none; padding: 0; margin: 14px 0 6px;
  display: flex; flex-direction: column; gap: 8px;
  border-left: 3px solid var(--green-l);
  padding-left: 14px;
}
.dash-steps li {
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.dash-steps li strong { color: var(--ink); font-weight: 700; }

/* Link inline dentro de texto explicativo */
.dash-link-inline {
  color: var(--green-d); font-weight: 600;
  border-bottom: 1px dashed var(--green-d);
  transition: color .14s, border-color .14s;
}
.dash-link-inline:hover { color: var(--green); border-bottom-color: var(--green); }

/* ====================================================================
   TOOLTIPS — [data-tip] mostra explicação ao passar o mouse / focar
   --------------------------------------------------------------------
   Universal: qualquer elemento com data-tip="texto" exibe o tooltip
   acima dele ao hover (ou ao focar via teclado). Não precisa de JS.
   ==================================================================== */
[data-tip] { position: relative; }
[data-tip]::before {
  content: "";
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%); margin-bottom: -2px;
  border: 6px solid transparent;
  border-top-color: #1a2733;
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
  z-index: 100;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%); margin-bottom: 8px;
  width: max-content; max-width: 280px;
  padding: 9px 12px;
  background: #1a2733; color: #fff;
  font-family: var(--font-b);
  font-size: 12px; font-weight: 500; line-height: 1.5;
  text-transform: none; letter-spacing: normal;
  text-align: left; white-space: normal;
  border-radius: 10px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
  z-index: 100;
}
[data-tip]:hover::after,
[data-tip]:hover::before,
[data-tip]:focus-visible::after,
[data-tip]:focus-visible::before { opacity: 1; }

/* Variant: posiciona o tooltip abaixo do elemento */
[data-tip][data-tip-pos="bottom"]::after {
  bottom: auto; top: 100%; margin-top: 8px; margin-bottom: 0;
}
[data-tip][data-tip-pos="bottom"]::before {
  bottom: auto; top: 100%; margin-top: -2px; margin-bottom: 0;
  border-top-color: transparent; border-bottom-color: #1a2733;
}

/* Pills com tip ganham cursor pra avisar que tem explicação */
.dash-pill[data-tip] { cursor: help; }

@media (max-width: 720px) {
  [data-tip]::after { max-width: 220px; font-size: 11.5px; }
}

/* ====================================================================
   AÇÕES PENDENTES — banner no topo de cada dashboard
   ==================================================================== */
.dash-todos {
  background: #fffbeb;
  border: 1px solid #f5e1b0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.dash-todos[hidden] { display: none; }
.dash-todos__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff4e0;
  color: #8a6116;
  display: inline-flex; align-items: center; justify-content: center;
}
.dash-todos__icon svg { width: 20px; height: 20px; }
.dash-todos__body { flex: 1; min-width: 0; }
.dash-todos__title {
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  color: #8a6116; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 6px;
}
.dash-todos__list {
  display: flex; flex-direction: column; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.dash-todos__list li {
  font-size: 13.5px; color: #14201b; line-height: 1.5;
}
.dash-todos__list li strong {
  font-weight: 700; color: #8a6116; min-width: 18px;
  display: inline-block;
}
.dash-todos__list a {
  color: var(--green-d); font-weight: 600;
  border-bottom: 1px dashed var(--green-d);
}
.dash-todos__list a:hover { color: var(--green); }

.dash-todos--ok {
  background: var(--green-l); border-color: #bfe6cf;
}
.dash-todos--ok .dash-todos__icon { background: rgba(20,122,79,0.12); color: var(--green-d); }
.dash-todos--ok .dash-todos__title { color: var(--green-d); }

/* ====================================================================
   KYC GATE — bloqueio de ação até documentos aprovados (Fase 20)
   ==================================================================== */
.kyc-gate {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fff4e0;
  border: 1px dashed #d8b06a;
  color: #6e4a10;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex; flex-direction: column; gap: 4px;
}
.kyc-gate[hidden] { display: none; }
.kyc-gate strong { color: #6e4a10; font-weight: 700; }
.kyc-gate a { color: var(--green-d); font-weight: 600; }

/* Botão visualmente desabilitado via data-kyc-locked (sem disabled real
   pra não perder eventos — o handler de click previne navegação). */
[data-kyc-locked] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.4);
  pointer-events: auto; /* permite clique pra disparar a mensagem */
}

/* ====================================================================
   ASSINATURA MENSAL — card de subscription ativa (Fase 21b)
   ==================================================================== */
.sub-card {
  background: linear-gradient(135deg, #e8f3ed 0%, #f4f7f5 100%);
  border: 1px solid #c2e0d0;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 14px 0 18px;
}
.sub-card[hidden] { display: none; }
.sub-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 14px;
}
.sub-card__head strong {
  font-family: var(--font-d); font-size: 15px; color: var(--green-d);
}
.sub-card__rows {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 14px;
}
.sub-card__rows > div {
  display: flex; flex-direction: column; gap: 2px;
}
.sub-card__rows span {
  font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px;
}
.sub-card__rows strong {
  font-family: var(--font-d); font-size: 16px; color: var(--ink); font-weight: 700;
}
.sub-card__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
@media (max-width: 560px) {
  .sub-card__rows { grid-template-columns: 1fr; }
}

.pay-history-title {
  margin: 18px 0 6px;
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted);
}

/* Lista de contatos por e-mail (suporte, pagamentos, contato) */
.dash-contact-list {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.dash-contact-list strong { color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
.dash-contact-list a {
  color: var(--green-d);
  font-weight: 600;
}
.dash-contact-list a:hover { text-decoration: underline; }
