/* ==========================================================================
   Mecânica Lenz — folha de estilos única (versões A e B)
   Tokens extraídos dos estilos computados do site publicado.
   ========================================================================== */

:root {
  --ink: #14363b;
  --ink-2: #24454a;
  --ink-3: #10282c;
  --gold: #d2a90f;
  --cream: #f7f3ea;
  --mist: #f2f5ec;
  --sage: #e8efea;
  --paper: #fbfcf9;
  --text: #292f2f;
  --muted: #4f5b5b;
  --muted-2: #5c6767;
  --line: #d9ded7;
  --light: #f2f5ec;
  --wa: #25d366;
  --wa-ink: #0b3023;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  --container: 1180px;
  --gutter: clamp(16px, 5vw, 40px);
  --radius: 18px;
  --radius-lg: 28px;

  --header-h: 76px;
  --subnav-h: 52px;
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
    --subnav-h: 48px;
  }
}

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

html {
  scroll-behavior: smooth;
  /* Âncoras param abaixo do header fixo + barra de navegação rápida */
  scroll-padding-top: calc(var(--header-h) + var(--subnav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
p {
  margin: 0;
}
p + p {
  margin-top: 0.9em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-paint {
  stroke-width: 1.8;
}
/* ícones próprios da oficina: um pouco maiores dentro dos quadros, com traço mais fino para manter a leitura */
/* ícones próprios: traço mais fino, no mesmo peso visual dos ícones Lucide */
.icon-mec {
  stroke-width: 1.5;
}
.service-icon .icon-mec,
.card-icon .icon-mec {
  width: 30px;
  height: 30px;
}
.paint-badge .icon-mec {
  width: 38px;
  height: 38px;
}
.shortcuts a .icon-mec {
  width: 1.2em;
  height: 1.2em;
}

/* ---------- Tipografia de seção ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--light);
}
.eyebrow::before {
  content: "";
  width: 35px;
  height: 3px;
  background: var(--gold);
  flex: none;
}
.eyebrow.dark {
  color: var(--ink);
}

.section {
  padding-block: clamp(64px, 9vw, 100px);
}
.section h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.6;
}

.bg-cream {
  background: var(--cream);
}
.bg-mist {
  background: var(--mist);
}
.bg-sage {
  background: var(--sage);
}
.bg-ink {
  background: var(--ink);
  color: var(--light);
}
.bg-ink h2,
.bg-ink h3 {
  color: var(--light);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 110px);
  align-items: start;
  margin-bottom: 48px;
}
/* Texto da direita começa na mesma altura do título (abaixo da linha dourada) e fica justificado */
@media (min-width: 861px) {
  .split-heading > :last-child,
  .intro-copy {
    padding-top: calc(0.78rem * 1.6 + 22px);
  }
  .split-heading .lead,
  .split-heading .lead p,
  .intro-copy p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}
.split-heading .lead p + p {
  margin-top: 0.8em;
}
@media (max-width: 860px) {
  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ---------- Botões ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button .icon {
  color: var(--gold);
}
.button-wa {
  background: var(--wa);
  color: var(--wa-ink);
}
.button-wa .icon {
  color: var(--wa-ink);
}
.button-light {
  background: var(--light);
  color: var(--ink);
}
.button-ink {
  background: var(--ink);
  color: var(--light);
}
.button-outline {
  border-color: rgba(242, 245, 236, 0.35);
  color: var(--light);
  background: transparent;
}
.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.button-outline-dark .icon {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 43, 47, 0.82);
  color: var(--light);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(14, 43, 47, 0.96);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex: none;
  display: block;
}
.brand img {
  width: 176px;
  height: auto;
}
.main-nav {
  margin-left: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
}
.header-cta {
  flex: none;
}
.icon-button {
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
/* ícone em ~50% do círculo: o balão não encosta na borda */
.icon-button .icon {
  width: 26px;
  height: 26px;
  stroke-width: 2.1;
}
.icon-button:hover {
  transform: translateY(-1px) scale(1.04);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(242, 245, 236, 0.25);
  background: transparent;
  color: var(--light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* menu hambúrguer antes que os itens do topo fiquem apertados (inclui zoom do navegador) */
@media (max-width: 1100px) {
  .brand img {
    width: 148px;
  }
  .header-inner {
    gap: 12px;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 3;
  }
  .header-cta {
    order: 2;
    margin-left: auto;
  }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    margin: 0;
    order: 4;
    background: var(--ink-3);
    padding: 12px var(--gutter) 24px;
    border-top: 1px solid rgba(242, 245, 236, 0.1);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
    display: none;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(242, 245, 236, 0.1);
  }
  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    border-bottom-color: rgba(242, 245, 236, 0.1);
    color: var(--gold);
  }
  .header-cta + .menu-toggle {
    margin-left: 0;
  }
}

/* ==========================================================================
   Navegação rápida (barra fixa abaixo do header)
   ========================================================================== */
.subnav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 90;
  height: var(--subnav-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(20, 54, 59, 0.08);
  transform: translateY(calc(-100% - var(--header-h)));
  visibility: hidden;
  transition:
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}
.subnav.is-visible {
  transform: none;
  visibility: visible;
  transition:
    transform 0.25s ease,
    visibility 0s;
}
.subnav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent);
  mask-image: linear-gradient(90deg, #000 90%, transparent);
}
.subnav ul::-webkit-scrollbar {
  display: none;
}
.subnav a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.subnav a:hover {
  color: var(--ink);
}
.subnav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ---------- Voltar ao topo ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.15s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--ink-2);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(760px, 100svh);
  display: grid;
  background: var(--ink);
  color: var(--light);
  overflow: hidden;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 39, 43, 0.94) 0%, rgba(15, 48, 53, 0.78) 42%, rgba(15, 48, 53, 0.22) 74%),
    linear-gradient(rgba(0, 0, 0, 0) 45%, rgba(8, 31, 34, 0.65));
}
.hero-content {
  position: relative;
  align-self: center;
  padding-block: calc(var(--header-h) + 56px) 72px;
}
.hero h1 {
  color: var(--light);
  max-width: 720px;
  font-size: clamp(2.6rem, 5.3vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero-lead {
  margin-top: 28px;
  max-width: 650px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(242, 245, 236, 0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 38px;
}

@media (max-width: 720px) {
  .hero-shade {
    background: linear-gradient(rgba(10, 39, 43, 0.82), rgba(10, 39, 43, 0.9));
  }
}

/* Hero de páginas internas (versão A) */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--light);
  padding-block: calc(var(--header-h) + 64px) 64px;
  overflow: hidden;
}
.page-hero.has-photo .hero-photo img {
  opacity: 0.35;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  color: var(--light);
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
}
.page-hero .hero-lead {
  margin-top: 20px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(242, 245, 236, 0.7);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--gold);
}
.breadcrumb a {
  color: var(--light);
}

/* ==========================================================================
   Barra de confiança
   ========================================================================== */
.trust-bar {
  background: var(--ink);
  color: var(--light);
  border-top: 1px solid rgba(242, 245, 236, 0.1);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(242, 245, 236, 0.12);
}
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  flex: none;
}
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
}
.trust-item p span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(242, 245, 236, 0.62);
}
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    padding: 18px 0;
  }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(242, 245, 236, 0.12);
  }
}

/* ==========================================================================
   Intro
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 110px);
  align-items: start;
}
.intro-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}
.intro-copy p + p {
  margin-top: 0.8em;
}
@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.service-pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 52px);
  box-shadow: 0 24px 60px rgba(20, 54, 59, 0.07);
}
.pillar-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pillar-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}
.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  color: var(--gold);
  flex: none;
}
.pillar-intro {
  margin: 18px 0 0 74px;
  max-width: 760px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .pillar-intro {
    margin-left: 0;
  }
}

/* Atalhos para os serviços */
.shortcuts {
  margin: 30px 0 26px;
}
.shortcuts-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.shortcuts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.shortcuts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.shortcuts a .icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--gold);
}
.shortcuts a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--light);
}
@media (max-width: 720px) {
  .shortcuts ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .shortcuts a {
    white-space: nowrap;
  }
}

/* Serviços: dois cartões por linha, com a mesma altura em cada linha */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
/* quando um cartão abre, o vizinho da mesma linha mantém a própria altura (não "sobe" junto) */
.service-card.is-row-sibling {
  align-self: start;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card[open] {
  border-color: var(--ink-2);
  box-shadow: 0 12px 30px rgba(20, 54, 59, 0.1);
}
.service-card:target {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 169, 15, 0.35);
}
.service-card summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: start;
  height: 100%;
  padding: 20px;
  cursor: pointer;
  list-style: none;
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  color: var(--gold);
}
.service-text strong {
  display: block;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--ink);
}
.service-text span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-2);
}
.plus {
  width: 32px;
  height: 32px;
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.service-card[open] .plus {
  transform: rotate(45deg);
  background: var(--sage);
}

/* Detalhe dentro do cartão: usado no celular (uma coluna) e se o JavaScript estiver desligado */
/* detalhe alinhado com a coluna do texto (20px + ícone 48px + espaço 16px) */
.service-details {
  padding: 0 20px 22px 84px;
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-card[open] summary {
  height: auto;
}

/* Duas colunas: o detalhe aparece numa faixa inteira logo abaixo da linha do cartão aberto */
.service-grid.uses-panel .service-details {
  display: none;
}
.service-panel {
  grid-column: 1 / -1;
  position: relative;
  padding: 22px 26px 24px 84px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--ink-2);
  box-shadow: 0 12px 30px rgba(20, 54, 59, 0.1);
  color: var(--muted);
  font-size: 0.97rem;
}
.service-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--ink-2);
  border-top: 1px solid var(--ink-2);
  transform: rotate(45deg);
}
.service-panel::before {
  left: var(--notch-x, 38px);
}
.service-panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px -58px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.service-panel-title .service-icon,
.service-panel-title .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}
.service-panel p + p {
  margin-top: 0.7em;
}

@media (max-width: 860px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .service-panel {
    padding: 18px 18px 20px;
  }
  .service-panel-title {
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  .service-details {
    padding: 0 16px 18px;
    margin-top: 0;
  }
  .service-card summary {
    grid-template-columns: 42px minmax(0, 1fr) 26px;
    gap: 12px;
    padding: 16px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
  }
  .service-text strong {
    min-height: 42px;
  }
}

.accordion-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.link-button {
  background: none;
  border: 0;
  padding: 6px 0;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

/* Funilaria e pintura */
.paint-feature {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  color: var(--light);
}
.paint-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paint-copy {
  padding: clamp(28px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.paint-copy h3 {
  color: var(--light);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  margin: 18px 0 20px;
}
.paint-copy p {
  color: rgba(242, 245, 236, 0.8);
}
.paint-copy .button {
  margin-top: 32px;
}
.paint-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}
.paint-badge .icon {
  width: 34px;
  height: 34px;
}
@media (max-width: 860px) {
  .paint-feature {
    grid-template-columns: 1fr;
  }
  .paint-image {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================================
   Cards genéricos
   ========================================================================== */
.card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-heading h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  color: var(--gold);
  flex: none;
}
.card-icon.soft {
  background: var(--sage);
  color: var(--ink-2);
}
.card-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.on-dark .card-heading h3 {
  color: var(--light);
}
.on-dark .card-icon {
  background: rgba(255, 255, 255, 0.08);
}
.on-dark .card-copy {
  color: rgba(242, 245, 236, 0.78);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d3dcd5;
  border-radius: 20px;
  padding: 24px;
}
.card.solid {
  background: #fff;
}
.card.dark {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

/* Revisão */
.revision-points-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px 40px;
  margin: 56px 0 24px;
  padding-top: 40px;
  border-top: 1px solid #cdd8d0;
}
.revision-points-heading h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.revision-points-heading p {
  color: var(--muted);
  max-width: 440px;
}
.note {
  margin-top: 26px;
  color: var(--muted-2);
  font-size: 0.9rem;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

/* Como trabalhamos */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.steps .card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 8px);
  justify-self: center;
  width: 100%;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .steps .card:last-child:nth-child(odd) {
    max-width: none;
  }
}
.card-body-indent {
  padding-left: 68px;
}
@media (max-width: 520px) {
  .card-body-indent {
    padding-left: 0;
  }
}
.time-note {
  margin: 22px auto 0;
  max-width: 940px;
  background: var(--ink-2);
  color: var(--light);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.time-note .card-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-left: 68px;
}
.time-note .card-copy p + p {
  margin-top: 0;
}
@media (max-width: 760px) {
  .time-note .card-copy {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}

/* Linha do tempo compacta (versão A) */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.step-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #d4d8d0;
  border-radius: var(--radius);
}
.step-card[open] {
  background: #fff;
  border-color: var(--ink-2);
}
.timeline summary {
  list-style: none;
  cursor: pointer;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Aberto, o resumo volta a ter a altura do próprio conteúdo: sem isso o "height: 100%"
   acima faz o resumo ocupar o cartão inteiro em alguns navegadores (Safari/iOS),
   deixando o cartão vazio e o texto da etapa sobrando por cima do cartão seguinte. */
.step-card[open] summary {
  height: auto;
}
.timeline summary::-webkit-details-marker {
  display: none;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-number {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--muted-2);
}
.timeline h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}
.step-more {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.step-more .icon {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}
.step-card[open] .step-more .icon {
  transform: rotate(180deg);
}
.timeline .step-body {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.92rem;
}
.timeline.uses-panel .step-body {
  display: none;
}
@media (max-width: 1080px) {
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step-card:nth-of-type(5) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* Antes do atendimento */
.legal-grid {
  margin-top: 16px;
}
.legal-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(242, 245, 236, 0.72);
  text-underline-offset: 3px;
}
.legal-link:hover {
  color: var(--gold);
}

/* Índice lateral (página "Antes do atendimento" da versão A) */
.with-index > * {
  min-width: 0;
}
.with-index {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.page-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.page-index p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.page-index ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
}
.page-index a {
  display: block;
  padding: 9px 0 9px 16px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}
.page-index a:hover {
  color: var(--ink);
}
.page-index a.is-active {
  color: var(--ink);
  border-left-color: var(--gold);
}
.stack {
  display: grid;
  gap: 16px;
}
.stack .card {
  scroll-margin-top: calc(var(--header-h) + 24px);
}
@media (max-width: 900px) {
  .with-index {
    grid-template-columns: 1fr;
  }
  .page-index {
    position: sticky;
    top: var(--header-h);
    z-index: 20;
    margin-inline: calc(-1 * var(--gutter));
    padding: 10px var(--gutter);
    background: var(--mist);
    border-bottom: 1px solid var(--line);
  }
  .page-index p {
    display: none;
  }
  .page-index ul {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    scrollbar-width: none;
  }
  .page-index ul::-webkit-scrollbar {
    display: none;
  }
  .page-index a {
    white-space: nowrap;
    margin: 0;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
  }
  .page-index a.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--light);
  }
  .stack .card {
    scroll-margin-top: calc(var(--header-h) + 76px);
  }
}

/* Avaliações */
.reviews-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.rating-block {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 16px;
  align-items: center;
}
.rating-block strong {
  grid-row: span 2;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.stars .icon {
  fill: currentColor;
  width: 1.1em;
  height: 1.1em;
}
.rating-block small {
  color: rgba(242, 245, 236, 0.7);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(242, 245, 236, 0.15);
}
.review-card > .icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
}
.review-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
  flex: 1;
}
.review-card p {
  font-weight: 700;
}
.review-card p span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(242, 245, 236, 0.6);
}
.review-link {
  margin-top: 32px;
}
@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Carrossel de avaliações (versão A) */
.carousel {
  position: relative;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track > * {
  scroll-snap-align: start;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.carousel-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(242, 245, 236, 0.3);
  background: transparent;
  color: var(--light);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.carousel-controls button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel-controls .prev .icon {
  transform: rotate(180deg);
}
@media (max-width: 980px) {
  .carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}
@media (max-width: 640px) {
  .carousel-track {
    grid-auto-columns: 86%;
  }
}

/* História */
.history-mark {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  align-items: center;
  gap: 10px 24px;
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 25px 30px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  color: var(--light);
}
.history-mark::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  background: rgba(242, 245, 236, 0.2);
}
.history-mark .year {
  grid-column: 1;
  grid-row: 1;
}
.history-mark .year span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.history-mark .year strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.65rem;
  line-height: 1;
  color: var(--gold);
}
.history-mark p {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--serif);
  font-size: 1.25rem;
}
@media (max-width: 640px) {
  .history-mark {
    grid-template-columns: 1fr;
  }
  .history-mark::after {
    display: none;
  }
  .history-mark p {
    grid-column: 1;
    grid-row: 2;
  }
}
.history-mark:first-child {
  margin-top: 0;
}
.history-copy {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-inline: clamp(0px, 3vw, 30px);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.history-copy strong {
  color: var(--ink);
}
.history-highlight {
  margin: 26px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: #eef2eb;
  font-family: var(--serif);
  font-size: 1.24rem;
  color: var(--ink);
}
.history-values {
  margin-top: 56px;
}
.history-values .card {
  background: var(--paper);
}
.history-values .card p {
  margin-top: 14px;
  color: var(--muted);
}
.gallery {
  margin-top: 16px;
}
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ink-2);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 24px 22px;
  color: var(--light);
  background: linear-gradient(transparent, rgba(8, 31, 34, 0.88));
}
.gallery figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.gallery figcaption span {
  font-size: 0.9rem;
  color: rgba(242, 245, 236, 0.8);
}

/* Atalhos "Saiba mais" (versão A): botões de mesma largura, lado a lado */
.link-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.link-buttons .button {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .link-buttons {
    grid-template-columns: 1fr;
  }
}

/* Faixa de chamada */
.cta-band {
  background: var(--ink-2);
  color: var(--light);
}
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 48px;
}
.cta-band h2 {
  color: var(--light);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.cta-band p {
  color: rgba(242, 245, 236, 0.75);
  margin-top: 8px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contact-section {
  background: var(--ink-2);
  color: var(--light);
  padding-block: clamp(64px, 9vw, 100px);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}
.contact-section h2 {
  color: var(--light);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.contact-lead {
  margin-top: 22px;
  color: rgba(242, 245, 236, 0.78);
}
.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(242, 245, 236, 0.17);
  text-decoration: none;
  min-width: 0;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}
.contact-list a:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}
.contact-list .icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
  padding: 10px;
  box-sizing: content-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.contact-list span {
  min-width: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}
/* e-mail ocupa a linha inteira para não quebrar no meio */
/* os 4 quadros de contato ficam do mesmo tamanho */
.contact-list a {
  min-height: 76px;
}
.contact-list small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(242, 245, 236, 0.62);
}
.hours {
  display: flex;
  gap: 15px;
  margin-top: 28px;
  padding-top: 27px;
  border-top: 1px solid rgba(242, 245, 236, 0.17);
}
.hours .icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.hours strong {
  display: block;
}
.hours span {
  display: block;
  margin-top: 4px;
}
.hours small {
  display: block;
  margin-top: 4px;
  color: rgba(242, 245, 236, 0.62);
  font-size: 0.82rem;
}
.location-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
  color: var(--ink);
  min-height: 520px;
}
.location-card iframe {
  flex: 1;
  width: 100%;
  min-height: 360px;
  border: 0;
}
.address-panel {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 46px;
  gap: 13px;
  align-items: center;
  padding: 22px;
}
.address-panel > .icon {
  color: var(--gold);
}
.address-panel small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.address-panel strong {
  display: block;
}
.address-panel span {
  font-size: 0.9rem;
  color: var(--muted);
}
.address-panel a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .location-card {
    min-height: 440px;
  }
}
@media (max-width: 520px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.site-footer {
  background: var(--ink-3);
  color: rgba(242, 245, 236, 0.72);
  padding-block: 56px 28px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img {
  width: 170px;
}
.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
}
.footer-title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: var(--light);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--light);
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-contact .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact span {
  overflow-wrap: anywhere;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 245, 236, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 0.8rem;
  color: rgba(242, 245, 236, 0.55);
}
.footer-bottom p,
.footer-bottom p + p {
  margin: 0;
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Página 404
   ========================================================================== */
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--light);
  text-align: center;
  padding: calc(var(--header-h) + 40px) var(--gutter) 60px;
}
.error-page strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1;
  color: var(--gold);
}
.error-page h1 {
  color: var(--light);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 12px;
}
.error-page p {
  margin: 16px auto 0;
  max-width: 520px;
  color: rgba(242, 245, 236, 0.78);
}
.error-page .cta-actions {
  justify-content: center;
  margin-top: 32px;
}

/* Impressão */
@media print {
  .site-header,
  .subnav,
  .back-to-top,
  .location-card iframe,
  .shortcuts,
  .carousel-controls {
    display: none !important;
  }
  .hero,
  .page-hero {
    min-height: 0;
    padding-top: 24px;
  }
  details {
    display: block;
  }
  details > * {
    display: block !important;
  }
}

/* ==========================================================================
   Antes do atendimento (home): grade 3 x 3 alinhada, textos justificados
   ========================================================================== */
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.guidance-grid .card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.guidance-grid .card-heading {
  min-height: 52px;
}
.guidance-grid .card-heading h3 {
  font-size: 1.12rem;
}
.guidance-grid .card-copy {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.guidance-grid .card-copy p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.guidance-grid .card-copy p + p {
  margin-top: 0.6em;
}
.guidance-grid .legal-link {
  margin-top: auto;
  padding-top: 14px;
  text-align: left;
}
.guidance-grid .card.dark .card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 1080px) {
  .guidance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guidance-grid .card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .guidance-grid {
    grid-template-columns: 1fr;
  }
  .guidance-grid .card:last-child {
    grid-column: auto;
  }
  .guidance-grid .card-copy p {
    text-align: left;
  }
}

/* ==========================================================================
   Avaliações em grade (3 x 2): cartões iguais, texto justificado e mais compacto
   ========================================================================== */
.reviews-grid {
  align-items: stretch;
}
.review-card {
  padding: 24px;
  gap: 14px;
}
.review-card > .icon {
  width: 24px;
  height: 24px;
}
.review-card blockquote {
  font-size: 1.02rem;
  line-height: 1.5;
}
/* citações curtas: alinhadas à esquerda (justificar abre buracos entre palavras em frases curtas) */
.review-card blockquote p {
  text-align: left;
}
.review-card > p {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 245, 236, 0.12);
}
.reviews-heading {
  align-items: center;
}
.rating-block {
  padding: 14px 20px;
  border: 1px solid rgba(242, 245, 236, 0.15);
  border-radius: var(--radius);
}
.rating-block strong {
  font-size: 3.2rem;
}
@media (max-width: 640px) {
  .review-card blockquote p {
    text-align: left;
  }
}

/* Saiba mais com 2 cartões */

/* Link para a página da revisão geral, dentro do cartão do serviço */
.service-more {
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.92rem;
}
.service-more .icon {
  color: var(--gold);
}

/* ==========================================================================
   Galeria da oficina
   ========================================================================== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.photo-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-gallery figure:hover img {
  transform: scale(1.03);
}
.photo-gallery figcaption {
  padding: 14px 16px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}
@media (max-width: 1080px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}
