:root {
  --bg: #0f1115;
  --ink: #1a1d24;
  --ink-soft: #5c6470;
  --muted: #8b93a0;
  --line: #e6e9ef;
  --red: #b30013;
  --red-hot: #d30018;
  --red-dark: #8a000f;
  --red-soft: rgba(179, 0, 19, 0.12);
  --white: #ffffff;
  --paper: #f5f6f8;
  --geo: #e8ecf2;
  --shadow: 0 12px 40px rgba(15, 17, 21, 0.12);
  --radius: 10px;
  --font-d: "Montserrat", system-ui, sans-serif;
  --font-b: "Open Sans", system-ui, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
strong {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: var(--font-d);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(179, 0, 19, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: #f0f2f5;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Barras brancas grossas (ar de limpeza) —— */
.bar-white {
  height: 72px;
  background: var(--white);
}

.bar-white-sm {
  height: 48px;
}

/* —— Top —— */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: #0f1115;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--red);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.78rem;
}

.logo-text {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--white);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  padding: 0.7rem 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(86vh, 740px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero-bg img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 17, 21, 0.88) 0%,
    rgba(15, 17, 21, 0.55) 48%,
    rgba(15, 17, 21, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}

.hero-inner .eyebrow {
  color: #ff6b7f;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-text {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, 0.86);
}

/* —— Services (ícones limpos, estilo Mônaco) —— */
.services {
  padding: 5rem clamp(1rem, 4vw, 2rem) 3.5rem;
  background: #f7f8fa;
}

.svc-icons {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.svc-ico {
  text-align: center;
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease;
}

.svc-ico:hover {
  transform: translateY(-4px);
}

.svc-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--red);
}

.svc-ico h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-ico p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* —— Why —— */
.why {
  position: relative;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  color: var(--white);
  background: #111;
}

.why-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.why-copy {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.why-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.title-line {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 1.1rem;
  background: var(--red-hot);
}

.why-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  max-width: 860px;
}

.why-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.why-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
}

.why-point h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.why-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

/* (parallax removido a pedido) */

/* —— Book —— */
.book {
  padding: 3.5rem clamp(1rem, 4vw, 2rem) 4.5rem;
  background: var(--paper);
}

.book-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.book-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.15;
}

.book-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.book-form {
  display: grid;
  gap: 0.85rem;
}

.book-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.book-form .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--muted);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  background: var(--white);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.book-error {
  margin: 0;
  color: var(--red);
  font-size: 0.88rem;
}

.book-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* —— Panel —— */
.panel-show {
  padding: 4.5rem clamp(1rem, 4vw, 2rem);
  background: #fff;
}

.panel-shot {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.panel-frame {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 17, 21, 0.18);
  border: 1px solid #dfe3ea;
}

.panel-frame aside {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--white);
  padding: 1.25rem 1rem;
}

.panel-frame aside strong {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.panel-frame aside nav {
  display: grid;
  gap: 0.35rem;
}

.panel-frame aside nav b,
.panel-frame aside nav span {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.84rem;
}

.panel-frame aside nav b {
  background: var(--red);
}

.panel-frame aside nav span {
  color: rgba(255, 255, 255, 0.55);
}

.panel-aside-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  display: grid;
  gap: 0.2rem;
}

.panel-aside-foot small,
.panel-aside-foot em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.panel-main {
  background: #f7f8fa;
  padding: 1.05rem 1.15rem 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.panel-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.panel-main-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.panel-sub {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.panel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pill-hot {
  background: rgba(179, 0, 19, 0.1);
  border-color: rgba(179, 0, 19, 0.25);
  color: var(--red);
}

.panel-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.panel-kpis div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  display: grid;
  gap: 0.15rem;
}

.panel-kpis b {
  font-size: 0.95rem;
  color: var(--ink);
}

.panel-kpis span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-d);
  font-weight: 600;
}

.panel-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.panel-tr {
  display: grid;
  grid-template-columns: 64px 88px 0.85fr 1.25fr 1.1fr 0.9fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.panel-tr:last-child {
  border-bottom: 0;
}

.panel-th {
  background: #eef1f5;
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.panel-tr time {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--red);
}

.panel-tr code {
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  color: var(--ink);
  background: #f3f5f8;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.panel-tr b {
  font-size: 0.84rem;
}

.panel-tr > span {
  color: var(--ink-soft);
}

.panel-tr em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
}

.stk-ok {
  color: #1f7a3f;
}

.stk-low {
  color: var(--red);
}

.panel-tr i {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-self: start;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
}

.st-busy {
  background: rgba(179, 0, 19, 0.12);
  color: var(--red);
}

.st-wait {
  background: rgba(180, 120, 0, 0.14);
  color: #8a5a00;
}

.st-ok {
  background: rgba(31, 122, 63, 0.12);
  color: #1f7a3f;
}

.panel-stock-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.panel-stock-mini strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.panel-stock-mini ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.panel-stock-mini li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #f7f8fa;
  border: 1px solid transparent;
  font-size: 0.78rem;
}

.panel-stock-mini li.is-low {
  background: rgba(179, 0, 19, 0.08);
  border-color: rgba(179, 0, 19, 0.2);
}

.panel-stock-mini li span {
  color: var(--ink-soft);
}

.panel-stock-mini li b {
  font-family: var(--font-d);
  color: var(--ink);
}

.panel-stock-mini li.is-low b {
  color: var(--red);
}

.center-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* —— Proof —— */
.proof {
  padding: 3.5rem clamp(1rem, 4vw, 2rem);
  background: var(--paper);
}

.proof-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.proof-inner h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.creds a {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.creds a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.creds span {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.creds code {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* —— Contato: carro + barra vermelha (estilo Mônaco) —— */
.contact-band {
  position: relative;
  isolation: isolate;
}

.car-stage {
  position: relative;
  z-index: 4;
  padding: 3.5rem clamp(1rem, 4vw, 2rem) 0;
  text-align: center;
  overflow: visible;
  background: transparent;
}

.car-stage-bg {
  position: absolute;
  inset: 0 0 18% 0;
  z-index: 0;
  background: linear-gradient(115deg, #ffffff 0 46%, #e8ecf2 46% 100%);
  pointer-events: none;
}

.car-stage .cta-clean-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto 0.5rem;
}

.car-stage h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.cta-phone {
  display: inline-block;
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--red-dark);
  transition: color 0.2s ease;
}

.cta-phone:hover {
  color: var(--red);
}

.cta-rule {
  display: block;
  width: 64px;
  height: 2px;
  margin: 1.1rem auto;
  background: #222;
}

.car-stage .cta-clean-inner p {
  margin: 0;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* Carro: pneus assentam NA barra vermelha */
.car-overlap {
  position: relative;
  z-index: 5;
  width: min(94%, 920px);
  margin: 0.75rem auto;
  /* sobe a barra: ~14% da altura do carro = faixa dos pneus */
  margin-bottom: calc(-1 * clamp(52px, 9vw, 88px));
  pointer-events: none;
  line-height: 0;
}

.car-overlap img {
  width: 100%;
  height: auto;
  display: block;
  /* sombra no chão, sem “IA plástico” */
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.35));
}

/* —— Barra grossa vermelha —— */
.thick-bar {
  position: relative;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  /* espaço sob os pneus para os ícones não colidirem */
  padding: clamp(4.75rem, 9vw, 6.5rem) clamp(1rem, 4vw, 2.5rem) 3.75rem;
}

.thick-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.thick-col {
  text-align: left;
}

.thick-ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: #111;
  color: var(--white);
}

.thick-col h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.thick-col p,
.thick-col li {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.thick-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.thick-col li::before {
  content: "✓ ";
  font-weight: 700;
}

.thick-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.thick-link:hover {
  border-bottom-color: var(--white);
}

.thick-phone {
  display: block;
  margin: 0.25rem 0 0.35rem;
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
}

.thick-mail {
  opacity: 0.9;
  font-size: 0.9rem !important;
}

/* —— FAQ —— */
.faq {
  padding: 4rem clamp(1rem, 4vw, 2rem);
  background: #fff;
}

.faq-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.faq-inner h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--red);
  font-weight: 800;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.65rem 0 0.35rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* —— Footer grosso —— */
.foot-thick {
  background: var(--red);
  color: rgba(255, 255, 255, 0.92);
  padding: 3.5rem clamp(1rem, 4vw, 2.5rem) 3.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.foot-thick-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
  gap: 2rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.foot-brand strong {
  display: block;
  font-size: 1.15rem;
  text-transform: lowercase;
  color: var(--white);
  line-height: 1.1;
}

.foot-brand em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.foot-thick h4 {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.foot-thick p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.foot-thick a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.foot-thick a:hover {
  border-bottom-color: var(--white);
}

/* —— FABs —— */
.wa-fab {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}

.wa-fab:hover {
  transform: scale(1.06);
}

.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-2px);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .svc-icons,
  .why-points,
  .creds {
    grid-template-columns: 1fr 1fr;
  }

  .thick-grid,
  .foot-thick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-wrap {
    grid-template-columns: 1fr;
  }

  .panel-frame {
    grid-template-columns: 1fr;
  }

  .panel-frame aside {
    display: none;
  }

  .panel-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .panel-table {
    overflow-x: auto;
  }

  .panel-tr {
    min-width: 720px;
  }

  .panel-stock-mini ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 72vh;
  }

  .bar-white {
    height: 48px;
  }

  .svc-icons,
  .why-points,
  .creds,
  .thick-grid,
  .foot-thick-grid {
    grid-template-columns: 1fr;
  }

  .book-wrap {
    padding: 1.35rem;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

  .car-overlap {
    width: min(100%, 640px);
    margin-bottom: calc(-1 * clamp(40px, 12vw, 64px));
  }

  .thick-bar {
    padding: clamp(3.75rem, 14vw, 5rem) 1.25rem 2.75rem;
  }

  .car-stage-bg {
    background: linear-gradient(160deg, #ffffff 0 55%, #e8ecf2 55% 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .svc-ico,
  .hero-bg img {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Pitch site + painel (padrão AGYON) —— */
.agyon-pitch {
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem);
  background: #0b0b0d;
  color: #f5f5f7;
  scroll-margin-top: 4rem;
}
.agyon-pitch-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}
.agyon-pitch .eyebrow {
  color: rgba(255, 255, 255, 0.55) !important;
}
.agyon-pitch h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.agyon-pitch-inner > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}
.agyon-pitch-list {
  list-style: none;
  margin: 0 auto 1.45rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 26rem;
  text-align: left;
}
.agyon-pitch-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.agyon-pitch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #25d366;
}
.agyon-pitch .cta-row {
  justify-content: center;
  flex-wrap: wrap;
}

/* Link de preço → AGYON */
.agyon-price-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.agyon-price-link:hover {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(56, 189, 248, 0.08);
}
.agyon-price-link-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.agyon-price-link-value {
  flex: 1 1 auto;
  font-size: 0.95rem;
}
.agyon-price-link-value strong { font-weight: 750; }
.agyon-price-link-go {
  font-size: 0.88rem;
  font-weight: 650;
  color: #7dd3fc;
  white-space: nowrap;
}
.agyon-price-link:hover .agyon-price-link-go { color: #fff; }

/* Sticky WA vendas */
.wa-sticky {
  position: fixed;
  z-index: 60;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #16a34a;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.wa-sticky:hover { background: #15803d; color: #fff !important; }
@media (max-width: 719px) {
  body { padding-bottom: 4.75rem; }
  .wa-sticky { left: 1rem; right: 1rem; }
}
