/* ==========================================================================
   STOP CAR OFICINA — Folha de estilo principal
   Direção: industrial premium automotivo · vermelho da marca + carvão + off-white
   Tipografia: Anton (display) + Barlow (texto/UI)
   ========================================================================== */

:root {
  /* Cores da marca */
  --red:        #E4032E;
  --red-dark:   #B10023;
  --red-glow:   rgba(228, 3, 46, .35);

  --ink:        #0C0D10;   /* fundo escuro principal */
  --ink-2:      #131519;   /* superfícies escuras */
  --ink-3:      #1B1E24;   /* cards escuros */
  --steel:      #262A31;   /* bordas escuras */
  --smoke:      #8A9099;   /* texto secundário no escuro */

  --paper:      #F5F3EF;   /* off-white quente */
  --paper-2:    #ECE8E1;   /* superfície clara alternativa */
  --paper-line: #DAD5CB;   /* bordas no claro */
  --graphite:   #2A2D33;   /* texto principal no claro */
  --graphite-2: #5A5F67;   /* texto secundário no claro */

  --amber:      #FFC400;   /* faixa de sinalização / detalhe */

  /* Tipografia */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", system-ui, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow-sm: 0 2px 10px rgba(12, 13, 16, .08);
  --shadow-md: 0 18px 45px rgba(12, 13, 16, .16);
  --shadow-lg: 0 30px 80px rgba(12, 13, 16, .28);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }

::selection { background: var(--red); color: #fff; }

/* --------------------------------------------------------------------------
   Tipografia utilitária
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--red);
}
.eyebrow.center { justify-content: center; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper-2); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: .5px;
  font-size: clamp(34px, 6vw, 62px);
  margin: 18px 0 20px;
}
.section-title em { color: var(--red); font-style: normal; }
.section--dark .section-title { color: #fff; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--graphite-2); }
.section--dark .lead { color: var(--smoke); }

/* Faixa de sinalização (motivo decorativo) */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg, var(--amber) 0 18px, #111 18px 36px
  );
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px var(--red-glow); }
.btn:hover::after { transform: translateX(120%); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border: 2px solid currentColor;
}
.btn--ghost:hover { box-shadow: none; background: currentColor; }
.btn--ghost:hover span { color: var(--ink); }

.btn--wa { --btn-bg: #1FA855; }
.btn--wa:hover { box-shadow: 0 14px 30px rgba(31,168,85,.35); }

.btn--lg { padding: 18px 34px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: var(--smoke);
  font-size: 13.5px;
  border-bottom: 1px solid var(--steel);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 42px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--red); }
.topbar-left { display: flex; gap: 24px; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right .sep { width: 1px; height: 16px; background: var(--steel); }

/* --------------------------------------------------------------------------
   Header / navegação
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 13, 16, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--steel);
  transition: background .3s;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 1px;
  color: #fff; text-transform: uppercase;
}
.brand__name em { color: var(--red); font-style: normal; }
.brand__tag { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--smoke); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #E7E7EA; font-weight: 600; font-size: 14.5px;
  letter-spacing: .02em; padding: 10px 15px; border-radius: var(--radius);
  position: relative; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; width: 46px; height: 46px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.burger span { width: 26px; height: 2.5px; background: #fff; transition: .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
  background: var(--ink-2); z-index: 200;
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 90px 32px 40px; display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid var(--steel);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { color: #fff; font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid var(--steel); }
.mobile-nav a:hover { color: var(--red); padding-left: 8px; transition: .2s; }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }
.mobile-nav__close { position: absolute; top: 26px; right: 26px; color: #fff; font-size: 30px; width: 40px; height: 40px; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: clamp(60px, 9vw, 110px) 0;
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink-3); border: 1px solid var(--steel); border-radius: 100px; color: #DDE0E4;
}
.badge svg { width: 15px; height: 15px; color: var(--red); }

.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.04; letter-spacing: .5px;
  margin-bottom: 24px;
}
.hero__title em { color: var(--red); font-style: normal; display: inline-block; }
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 2px #55585F;
}
.hero__desc { font-size: clamp(17px, 2vw, 20px); color: #C4C8CE; max-width: 520px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__note { font-size: 13.5px; color: var(--smoke); margin-top: 22px; display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: #1FA855; }

/* Visual do hero */
.hero__visual { position: relative; }
.hero__stack { position: relative; }
.hero__deco {
  position: absolute; top: -18px; left: -18px; width: 100%; height: 100%;
  border: 2px solid var(--red); border-radius: var(--radius); z-index: 0;
  pointer-events: none;
}
.hero .ph { position: relative; z-index: 1; box-shadow: var(--shadow-lg); }

/* Cartão flutuante sobre a imagem */
.hero__float {
  position: absolute; z-index: 3; bottom: 22px; left: -22px;
  background: #fff; color: var(--graphite);
  padding: 16px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero__float .n { font-family: var(--font-display); font-size: 40px; color: var(--red); line-height: 1; }
.hero__float small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--graphite-2); font-weight: 600; }
.hero__float b { font-size: 15px; line-height: 1.2; }

/* Barra de logos / stats no fim do hero */
.hero__stats {
  position: relative; z-index: 2; margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--steel);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 34px 18px; text-align: center;
  border-right: 1px solid var(--steel);
}
.hero__stat:last-child { border-right: 0; }
.hero__stat .num { font-family: var(--font-display); font-size: clamp(38px, 4.2vw, 50px); color: #fff; line-height: 1; }
.hero__stat .num em { color: var(--red); font-style: normal; }
.hero__stat .lbl {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--smoke); font-weight: 600; line-height: 1.45;
  max-width: 15ch; min-height: 2.9em;
  display: flex; align-items: flex-start; justify-content: center;
}

/* --------------------------------------------------------------------------
   Placeholders de imagem / vídeo (para o cliente aplicar as fotos)
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: var(--ph-ratio, 4 / 3);
  background:
    linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px dashed #3A3E46;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--smoke);
  text-align: center;
}
.ph.on-paper {
  background: linear-gradient(135deg, #E7E2D9, #DED8CD);
  border-color: #C6BFB1; color: var(--graphite-2);
}
.ph::before { /* cantos técnicos */
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(228,3,46,.35);
  border-radius: 2px;
  -webkit-mask:
     linear-gradient(#000 0 0) top left, linear-gradient(#000 0 0) top right,
     linear-gradient(#000 0 0) bottom left, linear-gradient(#000 0 0) bottom right;
  -webkit-mask-size: 22px 22px; -webkit-mask-repeat: no-repeat;
  mask-size: 22px 22px; mask-repeat: no-repeat;
  mask-position: top left, top right, bottom left, bottom right;
  pointer-events: none;
}
.ph__inner { position: relative; z-index: 1; padding: 20px; max-width: 90%; }
.ph__icon { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--red); opacity: .9; }
.ph__icon svg { width: 100%; height: 100%; }
.ph__label { font-weight: 700; font-size: 14px; letter-spacing: .04em; color: inherit; text-transform: uppercase; }
.ph__hint { font-size: 12px; margin-top: 6px; opacity: .8; letter-spacing: .02em; }
.ph__tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 3px;
}
/* Quando houver imagem real, basta trocar por <img>; o wrapper mantém proporção */
.ph--video .ph__play {
  width: 62px; height: 62px; border-radius: 50%; background: var(--red);
  display: grid; place-items: center; margin: 0 auto 14px; box-shadow: 0 10px 30px var(--red-glow);
}
.ph--video .ph__play svg { width: 24px; height: 24px; color: #fff; }

/* --------------------------------------------------------------------------
   Faixa de confiança (logos / selos)
   -------------------------------------------------------------------------- */
.trust {
  background: var(--paper-2); border-bottom: 1px solid var(--paper-line);
}
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block: 22px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--graphite-2); font-weight: 600; font-size: 14.5px; }
.trust__item svg { width: 26px; height: 26px; color: var(--red); flex: none; }

/* --------------------------------------------------------------------------
   Sobre
   -------------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media .ph { --ph-ratio: 4 / 5; }
.about__media .ph.small {
  position: absolute; right: -26px; bottom: -34px; width: 52%; --ph-ratio: 1 / 1;
  border: 4px solid var(--paper); box-shadow: var(--shadow-md);
}
.about__yrs {
  position: absolute; top: -26px; left: -26px; z-index: 3;
  background: var(--red); color: #fff; width: 128px; height: 128px;
  border-radius: 50%; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); rotate: -6deg;
}
.about__yrs b { font-family: var(--font-display); font-size: 46px; line-height: .9; }
.about__yrs span { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }

.checklist { display: grid; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--graphite); }
.checklist svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.about__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Serviços
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--steel); border: 1px solid var(--steel); border-radius: var(--radius); overflow: hidden;
}
.service {
  background: var(--ink-2); padding: 40px 34px 44px;
  position: relative; transition: background .35s var(--ease); overflow: hidden;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.service:hover { background: var(--ink-3); }
.service:hover::before { transform: scaleY(1); }
.service__n { font-family: var(--font-display); font-size: 15px; color: var(--red); letter-spacing: .1em; }
.service__icon {
  width: 56px; height: 56px; margin: 20px 0 22px; color: #fff;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px; box-shadow: 0 10px 26px var(--red-glow);
  transition: transform .4s var(--ease);
}
.service:hover .service__icon { transform: translateY(-4px) rotate(-4deg); }
.service__icon svg { width: 28px; height: 28px; }
.service__title { font-family: var(--font-display); font-size: 24px; letter-spacing: .5px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.service__desc { color: var(--smoke); font-size: 15.5px; margin-bottom: 18px; }
.service__list { display: grid; gap: 8px; }
.service__list li { font-size: 14px; color: #C4C8CE; display: flex; gap: 9px; align-items: flex-start; }
.service__list svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 3px; }
.service__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--red); font-weight: 700; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; }
.service__more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service:hover .service__more svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Diferenciais / Por que
   -------------------------------------------------------------------------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__card {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: 30px 26px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.section--dark .why__card { background: var(--ink-3); border-color: var(--steel); }
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why__icon { width: 50px; height: 50px; color: var(--red); margin-bottom: 18px; }
.why__icon svg { width: 100%; height: 100%; }
.why__card h3 { font-family: var(--font-display); font-size: 21px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.section--dark .why__card h3 { color: #fff; }
.why__card p { font-size: 15px; color: var(--graphite-2); }
.section--dark .why__card p { color: var(--smoke); }

/* --------------------------------------------------------------------------
   Processo
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step__n {
  font-family: var(--font-display); font-size: 66px; line-height: .8; color: transparent;
  -webkit-text-stroke: 1.5px var(--red); margin-bottom: 14px;
}
.step h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.section--dark .step h3 { color: #fff; }
.step p { font-size: 14.5px; color: var(--graphite-2); }
.section--dark .step p { color: var(--smoke); }
.step::after {
  content: ""; position: absolute; top: 34px; right: -13px; width: 26px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 5px, transparent 5px 10px);
}
.step:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   Galeria
   -------------------------------------------------------------------------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.gallery .ph { height: 100%; aspect-ratio: auto; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* --------------------------------------------------------------------------
   Unidades
   -------------------------------------------------------------------------- */
.units { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.unit {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  color: var(--graphite);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.unit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.unit__map { --ph-ratio: 16 / 9; position: relative; }
.unit__map .ph__tag { left: auto; right: 10px; }
.unit__map .badge-flag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 3px; border-left: 3px solid var(--red);
}
.unit__body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.unit__name { font-family: var(--font-display); font-size: 27px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; }
.unit__city { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.unit__row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--paper-line); font-size: 15px; }
.unit__row svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 2px; }
.unit__row b { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--graphite-2); font-weight: 700; margin-bottom: 1px; }
.unit__actions { margin-top: auto; padding-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.unit__actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.ctaband { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.16), transparent 45%),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 24px, transparent 24px 48px);
}
.ctaband .wrap { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-block: clamp(52px, 7vw, 84px); }
.ctaband h2 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 52px); text-transform: uppercase; line-height: .95; letter-spacing: .5px; max-width: 640px; }
.ctaband p { margin-top: 12px; font-size: 18px; color: rgba(255,255,255,.9); }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ctaband .btn { --btn-bg: #fff; --btn-fg: var(--red); }
.ctaband .btn:hover { box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.ctaband .btn--wa { --btn-bg: var(--ink); --btn-fg: #fff; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 70px); align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--paper-line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-weight: 700; font-size: 17px; color: var(--graphite);
}
.faq__q .ic { width: 26px; height: 26px; flex: none; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__q .ic::before { top: 50%; left: 3px; right: 3px; height: 2.5px; transform: translateY(-50%); }
.faq__q .ic::after  { left: 50%; top: 3px; bottom: 3px; width: 2.5px; transform: translateX(-50%); }
.faq__item.is-open .faq__q .ic::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--graphite-2); font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
.contact__info { display: grid; gap: 16px; align-content: start; }
.contact__card {
  display: flex; gap: 16px; align-items: center; padding: 22px 24px;
  background: var(--ink-3); border: 1px solid var(--steel); border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.contact__card:hover { border-color: var(--red); transform: translateX(4px); }
.contact__card .i { width: 46px; height: 46px; flex: none; border-radius: 10px; background: var(--ink); display: grid; place-items: center; color: var(--red); }
.contact__card .i svg { width: 22px; height: 22px; }
.contact__card small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--smoke); font-weight: 700; margin-bottom: 2px; }
.contact__card b { color: #fff; font-size: 17px; font-weight: 600; }

.form { background: var(--ink-3); border: 1px solid var(--steel); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--smoke); font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--ink); border: 1px solid var(--steel);
  border-radius: var(--radius); color: #fff; font-family: inherit; font-size: 15px; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field input::placeholder, .field textarea::placeholder { color: #5A5F67; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 12.5px; color: var(--smoke); text-align: center; margin-top: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: #08090B; color: var(--smoke); padding-top: clamp(60px, 8vw, 90px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--steel); }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { font-size: 14.5px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--steel); border-radius: 10px; display: grid; place-items: center; color: #fff; transition: .25s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: 17px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 14.5px; transition: color .2s, padding .2s; }
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact li { font-size: 14.5px; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--red); flex: none; margin-top: 3px; }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 26px; font-size: 13px; }
.footer__made { display: flex; align-items: center; gap: 10px; }
.footer__made img { height: 26px; width: auto; border-radius: 6px; }
.footer__made span { color: var(--smoke); }
.footer__made a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.footer__made a:hover { color: #7CE04B; }

/* --------------------------------------------------------------------------
   WhatsApp flutuante
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 60px; height: 60px; border-radius: 50%; background: #1FA855;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(31,168,85,.45);
  transition: transform .3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #1FA855; animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.wa-float:hover { transform: scale(1.08); }

/* --------------------------------------------------------------------------
   Animações de entrada (scroll reveal)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header__cta .btn:not(.header__wa) { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(1), .hero__stat:nth-child(2) { border-bottom: 1px solid var(--steel); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .units { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar-left .hide-sm { display: none; }
  .topbar .wrap { justify-content: center; }
  .topbar-right { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__float { left: 0; }
  .about__media .ph.small { right: 0; }
  .ctaband .wrap { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   PÁGINAS INTERNAS (serviços, unidades, sobre, contato)
   ========================================================================== */

/* ----- Dropdown na navegação ----- */
.nav .has-sub { position: relative; }
.nav .has-sub > a { display: inline-flex; align-items: center; gap: 6px; }
.nav .has-sub > a .caret { width: 10px; height: 10px; transition: transform .3s var(--ease); }
.nav .has-sub:hover > a .caret { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--ink-2); border: 1px solid var(--steel); border-radius: var(--radius);
  min-width: 268px; padding: 8px; box-shadow: var(--shadow-md); z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s var(--ease);
}
.nav .has-sub:hover .subnav { opacity: 1; visibility: visible; transform: none; }
.subnav a { display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-radius: 4px; font-size: 14.5px; color: #E7E7EA; font-weight: 500; }
.subnav a::after { display: none; }
.subnav a svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.subnav a:hover { background: var(--ink-3); color: #fff; padding-left: 16px; }
.subnav .subnav__all { margin-top: 4px; border-top: 1px solid var(--steel); color: var(--red); font-weight: 700; }

/* Sub-links no menu mobile */
.mobile-nav .m-group { border-bottom: 1px solid var(--steel); padding-bottom: 8px; margin-bottom: 2px; }
.mobile-nav .m-group > span { display: block; font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; text-transform: uppercase; color: #fff; padding: 12px 0 6px; }
.mobile-nav .m-sub { display: grid; gap: 2px; padding-bottom: 8px; }
.mobile-nav .m-sub a { font-family: var(--font-body); font-size: 15px; text-transform: none; letter-spacing: 0; padding: 7px 0 7px 14px; border: 0; color: #C4C8CE; }
.mobile-nav .m-sub a:hover { color: var(--red); padding-left: 20px; }

/* ----- Breadcrumb ----- */
.breadcrumb { background: var(--ink-2); border-bottom: 1px solid var(--steel); }
.breadcrumb ol { display: flex; gap: 9px; flex-wrap: wrap; padding: 13px 0; font-size: 13px; color: var(--smoke); }
.breadcrumb li { display: flex; gap: 9px; align-items: center; }
.breadcrumb li + li::before { content: ""; width: 5px; height: 5px; border-top: 1.5px solid var(--steel); border-right: 1.5px solid var(--steel); transform: rotate(45deg); }
.breadcrumb a { color: var(--smoke); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: var(--red); font-weight: 600; }

/* ----- Hero de página interna ----- */
.page-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 92px); }
.page-hero::before {
  content: ""; position: absolute; top: -30%; right: -8%;
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%); pointer-events: none;
}
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; line-height: 1.05; letter-spacing: .5px; font-size: clamp(38px, 6vw, 72px); margin: 16px 0 20px; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero__intro { font-size: clamp(17px, 2vw, 20px); color: #C4C8CE; max-width: 560px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.page-hero__visual { position: relative; }
.page-hero__visual .ph { --ph-ratio: 4/3; box-shadow: var(--shadow-lg); }
.page-hero__visual .hero__deco { top: -16px; left: -16px; }

/* ----- Layout serviço: conteúdo + sidebar ----- */
.svc-layout { display: grid; grid-template-columns: 1fr 350px; gap: clamp(34px, 5vw, 66px); align-items: start; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: clamp(26px, 3.4vw, 38px); line-height: 1; margin-top: 46px; margin-bottom: 6px; }
.prose h2:first-child { margin-top: 0; }
.prose h2 em { color: var(--red); font-style: normal; }
.prose h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .4px; font-size: 20px; margin-top: 30px; }
.prose p { color: var(--graphite-2); font-size: 16.5px; }
.prose .quote {
  border-left: 4px solid var(--red); padding: 6px 0 6px 22px; margin: 26px 0;
  font-size: 19px; font-style: italic; color: var(--graphite); font-weight: 500;
}
.prose .checklist li { font-size: 16px; }

/* Sidebar */
.svc-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.aside-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--steel); }
.aside-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.aside-card p { color: var(--smoke); font-size: 14.5px; margin-bottom: 18px; }
.aside-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.aside-card .btn:last-child { margin-bottom: 0; }
.aside-contacts { display: grid; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--steel); }
.aside-contacts a, .aside-contacts div { display: flex; gap: 11px; align-items: center; font-size: 14px; color: #D6D9DD; }
.aside-contacts svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.aside-units { background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 24px; }
.aside-units h4 { font-family: var(--font-display); font-size: 16px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.aside-units li { padding: 10px 0; border-top: 1px solid var(--paper-line); font-size: 14px; color: var(--graphite-2); }
.aside-units li b { display: block; color: var(--graphite); font-size: 15px; }

/* ----- Sintomas / quando procurar ----- */
.sintomas { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 8px; }
.sintoma { display: flex; gap: 13px; align-items: flex-start; padding: 20px 22px; background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius); font-size: 15.5px; color: var(--graphite); transition: border-color .3s, transform .3s; }
.sintoma:hover { border-color: var(--red); transform: translateY(-3px); }
.sintoma .dot { width: 34px; height: 34px; flex: none; border-radius: 9px; background: rgba(228,3,46,.1); color: var(--red); display: grid; place-items: center; }
.sintoma .dot svg { width: 18px; height: 18px; }

/* ----- Serviços relacionados ----- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; gap: 15px; align-items: center; padding: 22px; background: var(--ink-2); border: 1px solid var(--steel); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s; }
.section:not(.section--dark) .related-card { background: var(--paper); border-color: var(--paper-line); }
.related-card:hover { transform: translateY(-4px); border-color: var(--red); }
.related-card .ic { width: 46px; height: 46px; flex: none; border-radius: 11px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; display: grid; place-items: center; }
.related-card .ic svg { width: 24px; height: 24px; }
.related-card b { font-family: var(--font-display); font-size: 18px; letter-spacing: .5px; text-transform: uppercase; display: block; }
.related-card span { font-size: 13px; color: var(--graphite-2); }
.section--dark .related-card span { color: var(--smoke); }
.related-card .arrow { margin-left: auto; color: var(--red); transition: transform .3s; }
.related-card:hover .arrow { transform: translateX(4px); }

/* ----- Grid do hub de serviços ----- */
.svc-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-hub-card { background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.svc-hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-hub-card .ph { --ph-ratio: 16/10; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.svc-hub-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-hub-card__body .n { font-family: var(--font-display); color: var(--red); font-size: 14px; letter-spacing: .1em; }
.svc-hub-card__body h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: .5px; text-transform: uppercase; margin: 6px 0 10px; }
.svc-hub-card__body p { font-size: 15px; color: var(--graphite-2); margin-bottom: 18px; }
.svc-hub-card__body .go { margin-top: auto; color: var(--red); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.svc-hub-card__body .go svg { width: 17px; height: 17px; transition: transform .3s; }
.svc-hub-card:hover .go svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__visual { max-width: 520px; }
  .related-grid, .svc-hub { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .svc-aside { grid-template-columns: 1fr; }
  .related-grid, .svc-hub { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LIGHTBOX (galeria)
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 9, 11, .95); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 1400px); max-height: 84vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  transform: scale(.95); transition: transform .3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 48px; height: 48px;
  color: #fff; font-size: 30px; line-height: 1; display: grid; place-items: center;
  border-radius: 10px; transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.12); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; display: grid; place-items: center; cursor: pointer; transition: .2s var(--ease);
}
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }
.lightbox__caption {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: #C4C8CE; font-size: 14px; padding: 0 70px; margin: 0;
}
.lightbox__count {
  position: absolute; top: 26px; left: 24px;
  color: var(--smoke); font-size: 14px; font-weight: 700; letter-spacing: .06em;
}
.gallery .media { cursor: zoom-in; }
@media (max-width: 560px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; }
  .lightbox__caption { padding: 0 20px; font-size: 13px; }
}

/* ==========================================================================
   DESTAQUE DE ESPECIALIDADE (embreagem)
   ========================================================================== */
.specialty { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.specialty::before {
  content: ""; position: absolute; top: -25%; left: -10%;
  width: 55vw; height: 55vw; max-width: 660px; max-height: 660px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 62%); pointer-events: none;
}
.specialty__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.specialty__media { position: relative; }
.specialty__media .media { --ph-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.specialty__media .media.inset {
  position: absolute; right: -24px; bottom: -30px; width: 44%; --ph-ratio: 3 / 4;
  border: 5px solid var(--ink); box-shadow: var(--shadow-md); z-index: 3;
}
.specialty__badge {
  position: absolute; top: -16px; left: -16px; z-index: 4;
  background: var(--red); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; padding: 10px 16px; border-radius: 3px; box-shadow: var(--shadow-md);
}
.specialty .section-title { color: #fff; }
.specialty__lead { font-size: clamp(17px, 2vw, 20px); color: #C4C8CE; }
.specialty .checklist li { color: #D6D9DD; }
.specialty__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Selo "Especialidade da casa" no card de serviço */
.service--destaque::before { transform: scaleY(1); }
.service--destaque .service__badge {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-bottom-left-radius: 8px;
}

@media (max-width: 900px) {
  .specialty__grid { grid-template-columns: 1fr; }
  .specialty__media { max-width: 480px; }
}
@media (max-width: 560px) { .specialty__media .media.inset { right: 0; width: 48%; } }

/* ==========================================================================
   IMAGENS REAIS (mesmo enquadramento dos placeholders)
   ========================================================================== */
.media { position: relative; aspect-ratio: var(--ph-ratio, 4 / 3); border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.media--shadow { box-shadow: var(--shadow-lg); }
.hero .media, .page-hero__visual .media { position: relative; z-index: 1; }
.gallery .media { height: 100%; aspect-ratio: auto; cursor: pointer; }
.gallery .media:hover img { transform: scale(1.06); }
.svc-hub-card .media { border-radius: 0; }
.svc-hub-card:hover .media img { transform: scale(1.05); }
.about__media .media.small { position: absolute; right: -26px; bottom: -34px; width: 52%; aspect-ratio: 1 / 1; border: 4px solid var(--paper); box-shadow: var(--shadow-md); z-index: 3; }
.unit__map .media { aspect-ratio: 16 / 9; }
@media (max-width: 560px) { .about__media .media.small { right: 0; } }
