@font-face{font-family:'Barlow';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/barlow-400.woff2') format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/barlow-500.woff2') format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/barlow-600.woff2') format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/barlow-700.woff2') format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/barlow-condensed-600.woff2') format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/barlow-condensed-700.woff2') format('woff2')}
@font-face{font-family:'Caveat';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/caveat-700.woff2') format('woff2')}
@font-face{font-family:'Yellowtail';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/yellowtail-400.woff2') format('woff2')}

:root {
  /* marca */
  --yellow: #f6e817;
  --yellow-hot: #ffd400;
  --yellow-deep: #8a7c00;

  /* neutros quentes (papel de oficina) */
  --ink: #15120c;
  --ink-2: #211c14;
  --ink-3: #2c2519;
  --paper: #efe7d6;
  --paper-2: #e4dac4;
  --surface: #fbf7ee;
  --text: #241f16;
  --muted: #6d6455;
  --muted-d: #b6ad99;
  --line: #d3c7ab;
  --line-d: rgb(255 255 255 / 12%);

  --green: #1c9b52;
  --green-hot: #2bc768;
  --red-stamp: #b83b2e;

  /* tipografia */
  --disp: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  --body: Barlow, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: Caveat, ui-rounded, cursive;
  /* fonte só da assinatura: cursiva ligada e encorpada, de quem assina rápido */
  --sign: Yellowtail, Caveat, cursive;

  /* forma */
  --r-sm: 4px;
  --r: 6px;
  --r-lg: 10px;
  --shadow: 0 22px 50px rgb(21 18 12 / 18%);
  --shadow-soft: 0 12px 28px rgb(21 18 12 / 12%);
  --content: 1140px;
  --header-height: 62px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  /* Sem isto, o atributo height="..." do HTML vira altura fixa: a largura
     encolhe com o layout, a altura não acompanha e a foto sai esticada.
     Quem precisa de altura própria (capas, hero, galeria) declara na sua regra. */
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--disp);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 11vw, 4.9rem);
}

h2 {
  font-size: clamp(2.1rem, 8vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 5.5vw, 1.65rem);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

/* ---------- bandeira quadriculada (identidade do logo) ---------- */
.checker {
  height: 13px;
  background: repeating-conic-gradient(var(--ink) 0 25%, var(--paper) 0 50%) 0 0 / 13px 13px;
}

.checker-dark {
  background: repeating-conic-gradient(var(--yellow) 0 25%, var(--ink) 0 50%) 0 0 / 13px 13px;
  opacity: 0.9;
}

/* ---------- eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: currentcolor;
}

.eyebrow .icon {
  width: 1rem;
  height: 1rem;
}

.section-dark .eyebrow,
.home-hero .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow,
.insurers .eyebrow,
.showcase .eyebrow {
  color: var(--yellow);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: rgb(21 18 12 / 72%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(140%);
  transition: background 320ms var(--ease), border-color 320ms var(--ease);
}

.site-header.is-scrolled {
  background: rgb(21 18 12 / 95%);
  border-color: var(--line-d);
}

.header-inner {
  width: min(calc(100% - 32px), var(--content));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand img {
  width: 96px;
  height: 54px;
  object-fit: contain;
  transition: transform 320ms var(--ease);
}

.site-header.is-scrolled .brand img {
  transform: scale(0.93);
}

.main-navigation {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  height: calc(100svh - var(--header-height));
  padding: 18px 20px;
  display: none;
  background: var(--ink);
}

.main-navigation.is-open {
  display: block;
  animation: menu-in 220ms var(--ease) both;
}

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

.main-navigation a {
  min-height: 64px;
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  font-family: var(--disp);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.main-navigation a[aria-current="page"] {
  color: var(--yellow);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--r-sm);
  font-family: var(--disp);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms var(--ease), background 200ms ease;
}

.header-cta .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.menu-button {
  grid-column: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: var(--r-sm);
  transition: transform 200ms var(--ease), border-color 200ms ease;
}

.menu-button:active {
  transform: scale(0.94);
}

.menu-close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
  display: block;
}

.menu-button[aria-expanded="true"] {
  border-color: var(--yellow);
  color: var(--yellow);
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* ---------- BOTÕES ---------- */
.button-row {
  display: grid;
  gap: 11px;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  font-family: var(--disp);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms var(--ease), box-shadow 200ms var(--ease);
}

.button .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.button::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -40%;
  bottom: -40%;
  left: -60%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 38%), transparent);
  pointer-events: none;
  transform: skewX(-20deg) translateX(-180%);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgb(246 232 23 / 26%);
}

.button-whatsapp {
  color: #06230f;
  background: var(--green-hot);
  border-color: var(--green-hot);
  box-shadow: 0 12px 26px rgb(28 155 82 / 30%);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: currentcolor;
}

.button-ghost {
  color: #fff;
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 45%);
  backdrop-filter: blur(6px);
}

/* ---------- HOME · HERO ---------- */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(96svh - var(--header-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.home-hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* a foto é quadrada e o carro fica na metade de baixo:
     o recorte desce um pouco para não cortar o veículo em telas largas */
  object-position: 52% 62%;
  animation:
    hero-settle 1.4s var(--ease) both,
    hero-drift 24s 1.4s ease-in-out infinite alternate;
}

.home-hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(15 13 9 / 26%) 0%,
    rgb(15 13 9 / 30%) 30%,
    rgb(15 13 9 / 84%) 78%,
    var(--ink) 100%
  );
}

.home-hero-inner {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
  padding: 28px 0 48px;
}

.hero-title {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 12vw, 5.2rem);
  text-shadow: 0 3px 28px rgb(0 0 0 / 38%);
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: block;
  transform: translateY(112%);
  animation: line-up 0.9s var(--ease) forwards;
}

.home-hero .eyebrow {
  opacity: 0;
  animation: fade-in 700ms 80ms var(--ease) forwards;
}

.hero-title .reveal-line:nth-child(1) > span {
  animation-delay: 0.16s;
}

.hero-title .reveal-line:nth-child(2) > span {
  animation-delay: 0.29s;
}

.hero-lede {
  max-width: 36ch;
  margin-bottom: 26px;
  color: #e9e4d8;
  font-size: 1.14rem;
  line-height: 1.5;
}

.hero-lede > span {
  animation-delay: 0.44s;
}

.hero-actions > span {
  display: flex;
  flex-direction: column;
  gap: 11px;
  animation-delay: 0.58s;
}

.hero-checker {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
}

@keyframes hero-settle {
  from {
    opacity: 0.4;
    scale: 1.12;
  }
}

@keyframes hero-drift {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1.04);
  }
  to {
    transform: translate3d(1.2%, -1%, 0) scale(1.04);
  }
}

@keyframes line-up {
  to {
    transform: none;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* ---------- TIRA DE CONFIANÇA (estática, sem contador) ---------- */
.trust-strip {
  color: #fff;
  background: var(--ink);
}

.trust-inner {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  text-align: center;
}

.trust-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #e9e4d8;
  font-size: 1rem;
  font-weight: 500;
}

.trust-item b {
  font-family: var(--disp);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
}

.trust-sep {
  width: 5px;
  height: 5px;
  align-self: center;
  border-radius: 50%;
  background: var(--muted-d);
}

/* nota que sustenta o número de clientes — discreta, mas presente */
.trust-note {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding-bottom: 16px;
  color: var(--muted-d);
  font-size: 0.72rem;
  text-align: center;
  opacity: 0.75;
}

/* ---------- CARTA DO CLAUDIO ---------- */
.owner-letter {
  display: grid;
  gap: 30px;
}

.letter-media {
  position: relative;
}

.letter-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 60%;
  border: 3px solid var(--ink);
  border-radius: var(--r);
}

.letter-stamp {
  position: absolute;
  right: -6px;
  bottom: -14px;
  padding: 7px 13px;
  color: var(--red-stamp);
  background: rgb(239 231 214 / 92%);
  border: 2.5px solid var(--red-stamp);
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px rgb(184 59 46 / 25%);
  font-family: var(--disp);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.letter-quote {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(-1deg);
}

.letter-body p {
  color: #3c3527;
  font-size: 1.06rem;
}

.letter-body p + p {
  margin-top: 14px;
}

/* foto de época na página Sobre — a legenda no passado evita que alguém
   peça um serviço que a oficina não faz mais */
.foto-historia {
  margin: 30px 0 0;
}

.foto-historia img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--r);
}

.foto-historia figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.signature {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid var(--line);
  max-width: 20rem;
}

.signature-name {
  position: relative;
  display: inline-block;
  padding: 0 26px 26px 2px;
  color: var(--ink);
  font-family: var(--sign);
  font-size: clamp(3rem, 9.5vw, 3.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.01em;
  /* a inclinação é o que dá pressa de quem assina */
  transform: rotate(-2deg) skewX(-9deg);
  transform-origin: left bottom;
}

/* traço de caneta: passa por baixo do nome, avança além dele e sobe no fim */
.signature-stroke {
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 134%;
  height: 34px;
  color: var(--ink);
  overflow: visible;
}

.signature-stroke path {
  vector-effect: non-scaling-stroke;
}

/* a legenda também é escrita à mão, como uma anotação embaixo da assinatura —
   em Caveat, não na fonte da assinatura, para não competir com o nome */
.signature small {
  color: var(--muted);
  font-family: var(--hand);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

/* na página Sobre a assinatura fecha o texto, então centraliza o bloco */
.section-split .signature {
  margin-top: 34px;
}

/* ---------- SEÇÕES ---------- */
.section {
  padding: 62px 16px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-dark .section-heading > p:last-child {
  color: var(--muted-d);
}

.section-muted {
  background: var(--paper-2);
}

.section-split {
  display: grid;
  gap: 26px;
}

.center {
  margin-top: 30px;
  text-align: center;
}

.prose {
  max-width: 68ch;
  font-size: 1.06rem;
}

.prose h2 {
  margin-top: 1.9em;
  font-size: clamp(1.7rem, 7vw, 2.4rem);
}

.prose h2:first-child {
  margin-top: 0;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* área de toque confortável no celular (a linha de texto sozinha tem ~26px) */
  min-height: 44px;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.section-dark .text-link,
.showcase .text-link {
  color: var(--yellow);
}

.text-link .icon {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 240ms var(--ease);
}

.check-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow-deep);
  font-weight: 700;
}

.section-dark .check-list li::before {
  color: var(--yellow);
}

.checks {
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.checks .tick {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.checks small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
}

/* ---------- CARDS DE SERVIÇO ---------- */
.service-grid {
  display: grid;
  gap: 14px;
}

/* A foto fica em cima e o texto embaixo, em fundo sólido.
   Texto sobre foto competia com a imagem e deixava o bloco pesado. */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.service-card-image {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

/* Quadrado, e não 3:2: quase toda foto da oficina é composição vertical
   (antes/depois em painéis). Num recorte horizontal sobrava uma faixa
   estreita e não dava para identificar o serviço. */
.service-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.32rem;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 4px;
  min-height: 0;
  color: var(--yellow-deep);
  font-size: 1rem;
}

/* na seção escura da home o cartão continua claro, mas com borda de destaque */
.section-dark .service-card {
  border-color: var(--yellow);
}

/* ---------- REGIÃO ATENDIDA ---------- */
.areas-grid {
  display: grid;
  gap: 28px;
}

.areas-grid h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.areas-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.areas-list li {
  padding: 7px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.areas-nota {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- SELO ABERTO / FECHADO ---------- */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.open-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--muted);
}

.open-status.is-open .open-dot {
  background: var(--green-hot);
  box-shadow: 0 0 0 4px rgb(43 199 104 / 22%);
  animation: pulso 2.4s ease-in-out infinite;
}

.open-status.is-closed .open-dot {
  background: #c96a2e;
}

.open-status-hero {
  margin-top: 18px;
  color: #e9e4d8;
}

.site-footer .open-status {
  margin: 10px 0;
  color: #cabfa8;
}

.contact-card .open-status {
  margin-bottom: 10px;
}

.contact-note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes pulso {
  50% {
    box-shadow: 0 0 0 7px rgb(43 199 104 / 8%);
  }
}

/* ---------- LINHA DO TEMPO ---------- */
.timeline {
  position: relative;
  max-width: 780px;
  padding: 0 0 0 30px;
  margin: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 3px;
  background: repeating-linear-gradient(var(--ink) 0 8px, transparent 8px 16px);
  opacity: 0.35;
}

.timeline-item {
  position: relative;
  padding-bottom: 38px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 17px;
  height: 17px;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.timeline-item.is-current .timeline-marker {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgb(246 232 23 / 30%);
}

.timeline-year {
  margin: 0 0 2px;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-item.is-current .timeline-year {
  color: var(--ink);
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.timeline-content > p:last-of-type {
  color: var(--muted);
}

.timeline-photo {
  margin: 14px 0 0;
}

.timeline-photo img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: var(--r);
}

.timeline-photo figcaption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: italic;
}

/* ---------- O QUE NÃO FAZEMOS ---------- */
.dont-do {
  background: var(--ink);
  color: #fff;
}

.dont-do-inner {
  max-width: 720px;
}

.dont-do h2 {
  margin-bottom: 12px;
}

.dont-do-intro {
  color: var(--muted-d);
}

.dont-list {
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.dont-list li {
  position: relative;
  padding-left: 30px;
  color: #e9e4d8;
}

.dont-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #d9704a;
  font-weight: 700;
}

.dont-do-note {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  color: #fff;
  font-weight: 600;
}

/* ---------- POR QUE NÃO DAMOS PREÇO POR TELEFONE ---------- */
.why-visit-inner {
  max-width: 68ch;
}

.why-visit-inner p {
  margin-bottom: 14px;
}

.why-visit-inner .button-row {
  margin-top: 24px;
}

/* ---------- GUIA "BATEU O CARRO" ---------- */
.section.guia {
  padding-inline: 0;
}

.guia-inner {
  width: min(100% - 32px, 780px);
  margin-inline: auto;
}

.guia-intro {
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  font-size: 1.12rem;
  font-weight: 500;
}

.guia-passos {
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  counter-reset: passo;
}

.guia-passos > li {
  position: relative;
  padding: 0 0 26px 54px;
  counter-increment: passo;
}

.guia-passos > li::before {
  content: counter(passo);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--disp);
  font-size: 1.3rem;
  font-weight: 700;
}

.guia-passos h2 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
}

.guia-passos ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.guia-passos li + li {
  margin-top: 6px;
}

.guia-telefones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 !important;
  margin-top: 12px !important;
  list-style: none;
}

.guia-telefones li {
  margin: 0 !important;
  padding: 8px 14px;
  background: var(--paper-2);
  border-radius: var(--r-sm);
  color: var(--text) !important;
  font-size: 0.95rem;
}

.guia-telefones strong {
  font-family: var(--disp);
  font-size: 1.2rem;
  margin-right: 4px;
}

.guia-alerta {
  padding: 24px;
  margin-bottom: 34px;
  background: #fdf3ef;
  border: 2px solid #d9704a;
  border-radius: var(--r);
}

.guia-alerta h2 {
  margin-bottom: 12px;
  color: #a8452a;
  font-size: 1.5rem;
}

.guia-alerta ul {
  padding-left: 20px;
  margin: 0;
}

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

.guia-cta {
  padding: 26px;
  margin-bottom: 36px;
  background: var(--ink);
  border-radius: var(--r);
  color: #fff;
  text-align: center;
}

.guia-cta p {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

/* ---------- MANUAL DO REPARO PELO SEGURO ---------- */
.guia-manual {
  margin: 56px 0 40px;
  /* âncora vinda do link externo não pode parar embaixo do cabeçalho fixo */
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* abertura de capítulo com o mesmo peso do título que abre a página:
   bloco escuro, tarja amarela e tipografia no tamanho do H1 */
.guia-manual-topo {
  padding: 34px 24px;
  margin-bottom: 32px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--r);
}

.guia-manual-topo .eyebrow {
  color: var(--yellow);
}

.guia-manual-topo h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.4rem, 10vw, 4rem);
  line-height: 0.95;
}

.guia-manual-topo .guia-manual-lead {
  margin-bottom: 0;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  color: #ded9cc;
}

.guia-manual-topo .guia-manual-lead strong {
  color: var(--yellow);
}

.guia-manual > h3 {
  margin-top: 34px;
}

.guia-manual h3 {
  margin: 32px 0 12px;
  font-size: clamp(1.3rem, 5vw, 1.6rem);
}

.guia-manual h4 {
  margin: 0 0 6px;
  font-family: var(--disp);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.guia-manual-lead {
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
  font-size: 1.08rem;
}

.guia-passos-seguro > li::before {
  background: var(--ink);
  color: var(--yellow);
}

.guia-lei {
  padding: 24px;
  margin: 28px 0;
  background: var(--ink);
  border-radius: var(--r);
  color: #e9e4d8;
}

.guia-lei h3 {
  margin: 0 0 10px;
  color: var(--yellow);
}

.guia-lei ul {
  padding-left: 20px;
  margin: 14px 0;
}

.guia-lei li + li {
  margin-top: 10px;
}

.guia-lei strong {
  color: #fff;
}

.guia-lei-nota {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-d);
  color: var(--muted-d);
  font-size: 0.95rem;
}

.guia-faq-titulo {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 6vw, 2.1rem);
}

.guia-aviso {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- PÁGINA 404 ---------- */
.not-found-inner {
  max-width: 620px;
}

.not-found-lead {
  margin-bottom: 16px;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.not-found-links {
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 2px;
  list-style: none;
}

/* ---------- CASOS ---------- */
.case-grid {
  display: grid;
  gap: 20px;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--r);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.case-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}

.case-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.case-tag {
  margin: 0;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0;
}

.case-card h3 a {
  text-decoration: none;
}

/* o link do título cobre o cartão inteiro: qualquer toque abre o caso */
.case-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.case-card:focus-within {
  box-shadow: var(--shadow);
}

.case-card:focus-within h3 a:focus-visible {
  outline: none;
}

.case-card:has(a:focus-visible) {
  outline: 3px solid #0d6efd;
  outline-offset: 3px;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.case-card .text-link {
  margin-top: auto;
  padding-top: 6px;
}

/* O artigo também é .section, que no desktop aplica um padding lateral enorme
   para centralizar o conteúdo. Somado ao max-width, isso espremia o texto.
   A dupla classe garante prioridade sobre a regra de .section em qualquer largura. */
.section.case-article {
  width: min(100% - 32px, 860px);
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.case-header {
  margin-bottom: 26px;
}

.case-header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 8.5vw, 3.4rem);
}

.case-summary {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.12rem;
}

.case-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.case-media {
  margin-bottom: 26px;
}

.case-cover {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: var(--r);
}

.case-facts {
  margin: 0 0 30px;
  padding: 20px;
  display: grid;
  gap: 14px;
  background: var(--paper-2);
  border-left: 6px solid var(--yellow);
  border-radius: var(--r-sm);
}

.case-facts div {
  display: grid;
  gap: 2px;
}

.case-facts dt {
  color: var(--muted);
  font-family: var(--disp);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  font-weight: 600;
}

/* ---------- ANTES / DEPOIS ---------- */
.showcase {
  color: #fff;
  background: var(--ink);
}

.before-after {
  --comparison-position: 50%;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
  border: 3px solid #000;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
}

.comparison-layer {
  position: absolute;
  inset: 0;
  margin: 0;
}

.comparison-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.comparison-layer figcaption {
  position: absolute;
  z-index: 3;
  top: 12px;
  padding: 6px 12px;
  color: #fff;
  background: rgb(15 13 9 / 82%);
  border-radius: var(--r-sm);
  font-family: var(--disp);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-before figcaption {
  right: 12px;
}

.comparison-after figcaption {
  left: 12px;
  color: var(--ink);
  background: var(--yellow);
}

.comparison-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 3px;
  background: var(--yellow);
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgb(0 0 0 / 40%);
  transform: translate(-50%, -50%);
  animation: handle-pulse 2.6s ease-in-out infinite;
}

.comparison-handle .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  touch-action: pan-y;
}

.before-after:focus-within .comparison-handle {
  outline: 3px solid #0d6efd;
  outline-offset: 5px;
}

.before-after.is-interacting .comparison-handle {
  scale: 1.06;
  animation: none;
}

.comparison-help {
  margin: 14px 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.showcase .comparison-help,
.section-dark .comparison-help {
  color: var(--muted-d);
}

@keyframes handle-pulse {
  50% {
    box-shadow: 0 10px 24px rgb(0 0 0 / 40%), 0 0 0 12px rgb(246 232 23 / 12%);
  }
}

/* ---------- AVALIAÇÕES (estilo Google) ---------- */
.reviews-section {
  background: var(--paper-2);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.google-mark {
  font-family: var(--disp);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.google-mark i {
  font-style: normal;
}

.g-b { color: #4285f4; }
.g-r { color: #ea4335; }
.g-y { color: #fbbc05; }
.g-g { color: #34a853; }

.google-badge b {
  font-family: var(--disp);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}

.google-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 0.82rem;
}

/* cartões enxutos: cabem 6 sem alongar demais a página */
.reviews-grid {
  display: grid;
  gap: 10px;
}

.review-card {
  margin: 0;
  padding: 14px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}

.review-initial {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-family: var(--disp);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-head b {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-head small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.review-card blockquote {
  margin: 6px 0 0;
  color: #3c3527;
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-source {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ---------- SEGURADORAS (estático) ---------- */
.insurers {
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.insurers .eyebrow {
  justify-content: center;
}

.insurers > p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--muted-d);
}

.insurers-names {
  max-width: 44rem;
  margin-top: 20px;
  margin-inline: auto;
  color: #e9e4d8;
  font-family: var(--disp);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.9;
  text-transform: uppercase;
}

.insurers-names span {
  white-space: nowrap;
}

.insurers-names i {
  margin: 0 4px;
  color: var(--muted-d);
  font-style: normal;
}

.insurers-guia {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-d);
  color: var(--muted-d);
}

.insurers-guia .text-link {
  margin-left: 8px;
  color: var(--yellow);
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 58px 16px;
  display: grid;
  gap: 24px;
  color: var(--ink);
  background: var(--yellow);
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
}

.cta-section .eyebrow {
  color: var(--ink);
}

.cta-section p:last-child {
  margin-bottom: 0;
  max-width: 46ch;
  font-weight: 500;
}

.cta-section .button-secondary {
  border-color: var(--ink);
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  width: min(calc(100% - 32px), var(--content));
  margin: 16px auto;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  opacity: 0.6;
}

/* ---------- HERO DAS PÁGINAS INTERNAS ---------- */
.page-hero {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--r);
}

.page-hero-copy {
  padding: 32px 22px 30px;
}

.page-hero-copy .eyebrow {
  animation: page-copy-in 560ms 80ms var(--ease) both;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 10vw, 4rem);
  animation: page-copy-in 720ms 150ms var(--ease) both;
}

.page-hero-copy > p:last-child {
  margin-bottom: 0;
  color: #ded9cc;
  animation: page-copy-in 720ms 230ms var(--ease) both;
}

.page-hero > img {
  width: 100%;
  height: clamp(230px, 72vw, 340px);
  object-fit: cover;
  animation: page-image-in 900ms 120ms var(--ease) both;
}

.page-hero-results > img {
  height: auto;
  aspect-ratio: auto;
}

@keyframes page-copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes page-image-in {
  from {
    opacity: 0.3;
    clip-path: inset(0 0 20% 0);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}

/* ---------- PROCESSO ---------- */
.process-grid {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-grid li {
  padding: 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r);
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow-deep);
  font-family: var(--disp);
  font-size: 2rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-top: 2px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 2px solid var(--line);
}

.faq-list summary {
  min-height: 64px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--disp);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list p {
  padding-bottom: 18px;
  color: var(--muted);
}

/* ---------- VALORES ---------- */
.value-grid {
  display: grid;
  gap: 14px;
}

.value-grid article {
  padding: 24px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
}

.value-grid h2 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.6rem;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-top-width: 6px;
  border-radius: var(--r);
}

.proof-grid strong {
  display: block;
  font-family: var(--disp);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1;
}

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

/* ---------- GALERIA ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  transition: transform 360ms var(--ease);
}

/* ---------- CASO / COMPARAÇÃO ---------- */
.case-study {
  display: grid;
  gap: 34px;
}

.comparison-column {
  min-width: 0;
}

/* ---------- CONTATO ---------- */
.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 26px 20px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r);
}

.contact-card address {
  margin-bottom: 22px;
  font-style: normal;
}

.contact-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.contact-list li {
  padding-block: 13px;
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-family: var(--disp);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-section {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto 62px;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 3px solid var(--ink);
  border-radius: var(--r);
}

/* ---------- ARTIGO + ASIDE ---------- */
.article-layout {
  display: grid;
  gap: 38px;
}

.service-aside {
  padding: 26px 20px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-top-width: 6px;
  border-radius: var(--r);
}

.service-aside h2 {
  font-size: 1.7rem;
}

.service-aside .button {
  width: 100%;
  margin: 10px 0 16px;
}

/* ---------- RODAPÉ ---------- */
.site-footer {
  padding: 52px 16px 26px;
  color: #cabfa8;
  background: var(--ink);
}

.footer-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  gap: 28px;
}

.footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 14px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.footer-grid p,
.footer-grid address {
  color: #cabfa8;
  font-size: 0.95rem;
  font-style: normal;
}

.footer-motto {
  display: inline-block;
  color: var(--yellow) !important;
  font-family: var(--hand);
  font-size: 2rem !important;
  font-weight: 700;
  transform: rotate(-3deg);
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-list a,
.site-footer .text-link {
  color: #cabfa8;
  text-decoration: none;
}

.site-footer .text-link {
  font-size: 1rem;
}

.footer-bottom {
  width: min(100%, var(--content));
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #8b8270;
  font-size: 0.85rem;
}

/* ---------- FLUTUANTES ---------- */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 80px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgb(0 0 0 / 28%);
  text-decoration: none;
  transition: transform 160ms var(--ease);
  animation: whatsapp-breathe 3.4s ease-in-out infinite;
}

.whatsapp-float .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.whatsapp-float:active {
  animation: none;
  transform: scale(0.94);
}

@keyframes whatsapp-breathe {
  50% {
    box-shadow: 0 14px 32px rgb(0 0 0 / 30%), 0 0 0 8px rgb(28 155 82 / 14%);
    transform: translateY(-3px);
  }
}

/* ---------- BARRA FIXA MOBILE ---------- */
/* a barra fixa cobre a base da tela: o corpo precisa terminar acima dela,
   senão o fim do rodapé fica inalcançável no celular */
body {
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

.mobile-dock {
  position: fixed;
  z-index: 95;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 1px;
  background: rgb(255 255 255 / 10%);
  border-top: 2px solid var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
  color: #fff;
  background: var(--ink);
  font-family: var(--disp);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-dock a .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.mobile-dock .dock-wa {
  color: #06230f;
  background: var(--green-hot);
}

.mobile-dock .dock-tel .icon {
  color: var(--yellow);
}

.mobile-dock a:active {
  filter: brightness(0.9);
}

/* ---------- REVELAÇÃO NO SCROLL ---------- */
.reveal-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal="up"] {
  transform: translateY(26px);
}

.reveal-ready [data-reveal="left"] {
  transform: translate3d(-22px, 0, 0);
}

.reveal-ready [data-reveal="right"] {
  transform: translate3d(22px, 0, 0);
}

.reveal-ready [data-reveal="scale"] {
  transform: translateY(16px) scale(0.97);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

:focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 3px;
}

/* ---------- BREAKPOINTS ---------- */
@media (min-width: 600px) {
  .button-row {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions > span {
    flex-direction: row;
  }

  .service-grid,
  .value-grid,
  .proof-grid,
  .process-grid,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    gap: 12px;
  }

  .contact-list li {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }

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

@media (min-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .brand img {
    width: 116px;
    height: 64px;
  }

  .home-hero-inner {
    width: min(calc(100% - 56px), var(--content));
    padding: 44px 0 66px;
  }

  .hero-lede {
    max-width: 46ch;
    font-size: 1.2rem;
  }

  .header-inner,
  .trust-inner,
  .breadcrumbs,
  .page-hero,
  .map-section {
    width: min(calc(100% - 56px), var(--content));
  }

  .section {
    padding: 92px 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .owner-letter {
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .section-split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 56px;
  }

  .service-grid,
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
  }

  .case-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
  }

  .before-after {
    aspect-ratio: 16 / 10;
  }

  .cta-section {
    padding: 74px 28px;
  }

  .page-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  }

  .page-hero-copy {
    padding: 48px;
    align-self: center;
  }

  .page-hero > img {
    height: 100%;
    min-height: 500px;
  }

  .case-study {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 50px;
    align-items: center;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 60px;
    align-items: start;
  }

  .service-aside {
    position: sticky;
    top: 108px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    padding: 66px 28px 26px;
  }

  .whatsapp-float {
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    gap: 28px;
  }

  .menu-button {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    grid-column: 3;
  }

  .main-navigation {
    position: static;
    height: auto;
    padding: 0;
    display: block;
    background: transparent;
  }

  .main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.6vw, 34px);
  }

  .main-navigation a {
    position: relative;
    min-height: var(--header-height);
    border: 0;
    font-size: 1.12rem;
  }

  .main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 200ms var(--ease);
  }

  .main-navigation a:hover,
  .main-navigation a[aria-current="page"] {
    color: var(--yellow);
  }

  .main-navigation a:hover::after,
  .main-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .mobile-dock {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .section {
    padding: 112px max(28px, calc((100% - var(--content)) / 2));
  }

  .cta-section {
    padding: 84px max(28px, calc((100% - var(--content)) / 2));
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 0.9fr;
    gap: 40px;
  }

  /* micro-interações (desktop) */
  .header-cta:hover {
    background: var(--yellow-hot);
    transform: translateY(-2px);
  }

  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgb(21 18 12 / 20%);
  }

  .button:hover::after {
    transform: skewX(-20deg) translateX(620%);
    transition: transform 700ms var(--ease);
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }

  .service-card:hover .service-card-image img,
  .service-card:focus-within .service-card-image img {
    transform: scale(1.06);
  }

  .case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }

  .case-card:hover .text-link .icon {
    transform: translateX(5px);
  }

  .text-link:hover .icon,
  .text-link:focus-visible .icon {
    transform: translateX(5px);
  }

  .gallery-grid img:hover {
    transform: scale(1.03);
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    animation: none;
    transform: translateY(-3px) scale(1.04);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-line > span {
    transform: none;
  }

  .home-hero .eyebrow {
    opacity: 1;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
