/* ==========================================================================
   DMD AUTO CENTER — folha de estilo principal
   1. Fontes            6. Cabeçalho
   2. Tokens            7. Home
   3. Base / reset      8. Rodapé e flutuantes
   4. Utilitários       9. Páginas de serviço
   5. Botões           10. Responsivo
   ========================================================================== */

/* 1. FONTES ================================================================ */

@font-face {
  font-family: "Archivo Var";
  src: url("fonts/archivo-var.woff2") format("woff2-variations");
  font-weight: 400 900;
  font-stretch: 62% 100%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Var";
  src: url("fonts/archivo-var-italic.woff2") format("woff2-variations");
  font-weight: 400 900;
  font-stretch: 62% 100%;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter Var";
  src: url("fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* 2. TOKENS ================================================================ */

:root {
  /* Marca */
  --navy: #061426;
  --navy-2: #0a1f39;
  --navy-deep: #030b15;
  --blue: #087ff5;        /* preenchimentos e grafismos */
  --blue-600: #0b72e0;    /* botões com texto branco (AA) */
  --blue-700: #0a63c2;    /* links e rótulos sobre fundo claro (AA) */
  --cyan: #22b9ff;
  --green: #0c7a43;       /* WhatsApp (AA com texto branco) */
  --green-hover: #0a6939;

  /* Neutros */
  --ink: #0a1422;
  --muted: #5f6c7e;
  --line: #dbe3ec;
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #f7f9fc;
  --white: #ffffff;

  /* Texto sobre fundo escuro */
  --on-dark-soft: #aebed0;
  --on-dark-muted: #94a6ba;

  /* Tipografia */
  --font-display: "Archivo Var", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter Var", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --step--2: 0.72rem;
  --step--1: 0.8rem;
  --step-0: 0.95rem;
  --step-1: 1.05rem;
  --h3: clamp(1.5rem, 2.1vw, 1.85rem);
  --h2: clamp(2.35rem, 5vw, 4.4rem);
  --h1: clamp(2.9rem, 7.6vw, 6.6rem);

  /* Layout */
  --maxw: 1440px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --header-h: 84px;
  --block: clamp(72px, 8vw, 128px);

  /* Efeitos */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-card: 0 24px 56px rgba(7, 26, 47, 0.14);
  --shadow-brand: 0 18px 46px rgba(0, 0, 0, 0.24);
  --focus: 3px solid var(--cyan);
}

/* 3. BASE / RESET ========================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

.skip-link {
  background: var(--navy);
  color: #fff;
  font-size: var(--step--1);
  font-weight: 700;
  left: 12px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  transition: top 0.2s ease;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

/* 4. UTILITÁRIOS =========================================================== */

.shell {
  margin-inline: auto;
  max-width: var(--maxw);
  padding-inline: var(--gutter);
  width: 100%;
}

/* imagem que preenche o container pai (o pai precisa ser position: relative) */
.cover {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.section {
  padding-block: var(--block);
}

.section-heading h2,
.store-intro h2,
.why-copy h2,
.faq-intro h2,
.contact-content h2,
.service-detail-intro h2,
.service-steps-heading h2,
.service-cta h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-stretch: 78%;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.eyebrow {
  align-items: center;
  color: var(--blue-700);
  display: flex;
  font-size: var(--step--2);
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow span {
  background: currentColor;
  block-size: 2px;
  display: block;
  flex: 0 0 28px;
}

.eyebrow.light {
  color: #7fd4ff;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(24px, 4vw, 70px);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  margin-bottom: clamp(38px, 4vw, 58px);
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 46ch;
}

/* 5. BOTÕES ================================================================ */

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 52px;
  padding: 0 26px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.button {
  overflow: hidden;
  position: relative;
}

.button span {
  font-size: 1.05em;
  transition: transform 0.28s var(--ease);
}

.button:hover span {
  transform: translateX(4px);
}

.button-ghost:hover span {
  transform: translateY(3px);
}

.button::after {
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.26) 48%, transparent 66%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}

.button:hover::after {
  transform: translateX(130%);
}

.button-ghost::after {
  display: none;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(6, 20, 38, 0.22);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--blue-600);
  color: #fff;
}

.button-primary:hover {
  background: var(--blue-700);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-dark:hover {
  background: var(--blue-600);
}

.text-link {
  align-items: center;
  padding-top: 8px;
  border-bottom: 1px solid var(--cyan);
  color: var(--cyan);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.08em;
  margin-top: 34px;
  padding-bottom: 8px;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link span {
  transition: transform 0.28s var(--ease);
}

.text-link:hover {
  border-color: #fff;
  color: #fff;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* 6. CABEÇALHO ============================================================= */

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 20, 38, 0.09);
  color: var(--navy);
  inset: 0 0 auto;
  position: fixed;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  z-index: 100;
}

.site-header::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue-600) 58%, #596cff);
  block-size: 2px;
  content: "";
  inset: 0 0 auto;
  position: absolute;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(6, 20, 38, 0.09);
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  min-height: var(--header-h);
}

.brand-lockup {
  align-items: center;
  display: flex;
}

.header-logo {
  height: clamp(40px, 4.8vw, 58px);
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.1vw, 36px);
  justify-content: center;
}

.site-header nav a {
  color: #24364b;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 9px 0;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav a::after {
  background: var(--blue-600);
  block-size: 2px;
  bottom: 2px;
  content: "";
  inset-inline: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.site-header nav a:hover::after,
.site-header nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.07em;
  min-height: 46px;
  padding: 0 20px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 114, 224, 0.2);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s var(--ease);
  white-space: nowrap;
}

.header-cta span {
  transition: transform 0.28s var(--ease);
}

.header-cta:hover {
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 20, 38, 0.2);
  transform: translateY(-2px);
}

.header-cta:hover span {
  transform: translateX(3px);
}

.menu-toggle {
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  justify-self: end;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: var(--navy);
  block-size: 2px;
  display: block;
  inline-size: 24px;
  left: 10px;
  position: absolute;
  transition: transform 0.25s var(--ease);
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.nav-backdrop {
  background: rgba(6, 20, 38, 0.45);
  border: 0;
  display: none;
  inset: 0;
  padding: 0;
  position: fixed;
  z-index: 90;
}

body.nav-open .nav-backdrop {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

/* 7. HOME ================================================================== */

/* --- Hero --- */
.hero {
  color: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
  min-height: min(100svh, 880px);
  overflow: hidden;
  padding-top: var(--header-h);
  position: relative;
}

.hero-overlay,
.hero-grid {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 12, 24, 0.96) 0%, rgba(4, 17, 33, 0.88) 42%, rgba(4, 15, 28, 0.45) 78%, rgba(4, 15, 28, 0.7) 100%),
    linear-gradient(0deg, rgba(4, 15, 28, 0.92) 0%, transparent 48%);
}

.hero-media {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero-picture {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.02);
  transition: opacity 1.05s ease, transform 7s linear;
}

.hero-picture.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.hero-media .hero-image {
  filter: saturate(0.88) contrast(1.05);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.hero-body {
  align-items: center;
  display: flex;
  padding-block: clamp(48px, 7vw, 96px);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-stretch: 74%;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  display: block;
  font-size: 0.82em;
  line-height: 1.02;
  -webkit-text-stroke: clamp(1.5px, 0.28vw, 3px) var(--cyan);
}

.hero-content > p {
  color: #d3dde8;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  margin: 26px 0 34px;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-brands {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: calc(760px + var(--gutter));
  padding-inline: var(--gutter) 0;
  position: relative;
  z-index: 2;
}

.hero-brand-card {
  align-items: center;
  background: rgba(6, 25, 48, 0.95);
  border-top: 3px solid var(--cyan);
  display: grid;
  gap: 16px;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  padding: 20px;
  transition: background-color 0.28s ease, transform 0.28s var(--ease);
}

.hero-brand-card.battery {
  background: rgba(8, 16, 40, 0.95);
  border-top-color: #8b96ff;
}

.hero-brand-card:hover {
  background: var(--blue-600);
  transform: translateY(-6px);
}

.hero-brand-card img {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 185, 255, 0.45);
  height: 66px;
  object-fit: cover;
  width: 66px;
}

.hero-brand-card.battery img {
  box-shadow: 0 0 0 2px rgba(139, 150, 255, 0.5);
}

.hero-brand-card small {
  color: #8cd5ff;
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-brand-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-stretch: 82%;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-brand-card b {
  align-self: end;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.85;
}

.hero-side-label {
  bottom: 210px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  position: absolute;
  right: 26px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
  white-space: nowrap;
  z-index: 2;
}

.hero-slider-dots {
  align-items: center;
  bottom: 28px;
  display: flex;
  gap: 9px;
  position: absolute;
  right: var(--gutter);
  z-index: 3;
}

.hero-slider-dots button {
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  cursor: pointer;
  height: 3px;
  padding: 0;
  transition: background-color 0.25s ease, width 0.35s var(--ease);
  width: 24px;
}

.hero-slider-dots button.is-active {
  background: var(--cyan);
  width: 44px;
}

.hero-slider-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

/* --- Faixa de destaques --- */
.quick-strip {
  background: linear-gradient(100deg, var(--blue-700), var(--blue-600) 56%, #168df3);
  color: #fff;
  padding-block: 18px;
}

.quick-strip .shell {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 48px);
  justify-content: center;
}

/* --- Dicas DMD --- */
.tips-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(34, 185, 255, 0.09), transparent 26%),
    var(--paper);
}

.tips-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tip-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.tip-card:hover {
  box-shadow: 0 24px 56px rgba(6, 20, 38, 0.13);
  transform: translateY(-6px);
}

.tip-card-image {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  position: relative;
}

.tip-card-image::after {
  background: linear-gradient(0deg, rgba(4, 15, 28, 0.72), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.tip-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  width: 100%;
}

.tip-card:hover .tip-card-image img {
  transform: scale(1.045);
}

.tip-card-image > span {
  bottom: 18px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  left: 20px;
  letter-spacing: 0.13em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.tip-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 32px);
}

.tip-card-body small {
  color: var(--blue-600);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tip-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-stretch: 80%;
  font-weight: 750;
  line-height: 1.04;
  margin: 16px 0 14px;
  text-transform: uppercase;
}

.tip-card h3 a {
  color: var(--navy);
}

.tip-card-body > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.tip-card-read {
  align-items: center;
  color: var(--blue-600);
  display: flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-top: auto;
  text-transform: uppercase;
}

.tip-card-read span {
  transition: transform 0.25s var(--ease);
}

.tip-card-read:hover span {
  transform: translateX(4px);
}

.quick-strip span {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  font-stretch: 80%;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-strip i {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  block-size: 5px;
  flex: 0 0 5px;
}

/* --- Serviços --- */
.service-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 272px;
  padding: clamp(24px, 2.2vw, 32px);
  position: relative;
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s var(--ease);
}

.service-card::before {
  background: linear-gradient(90deg, var(--blue-600), var(--cyan));
  block-size: 3px;
  content: "";
  left: 0;
  position: absolute;
  right: 100%;
  top: -1px;
  transition: right 0.35s var(--ease);
}

.service-card:hover,
.service-card:focus-visible {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
  z-index: 1;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  right: 0;
}

.service-top {
  align-items: center;
  color: var(--blue-700);
  display: flex;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.service-card:hover .service-top {
  color: var(--cyan);
}

.service-top i {
  border: 1px solid var(--line);
  border-radius: 50%;
  block-size: 36px;
  display: grid;
  font-size: 0.95rem;
  font-style: normal;
  inline-size: 36px;
  place-items: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-top i {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-stretch: 80%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin-bottom: 12px;
  margin-top: auto;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 34ch;
  transition: color 0.28s ease;
}

.service-card:hover p {
  color: #b6c5d5;
}

.service-link {
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 22px;
  text-transform: uppercase;
}

.service-card:hover .service-link {
  color: var(--cyan);
}

/* --- Bloco dividido (auto elétrica) --- */
.split-feature {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-photo {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.split-photo::after {
  background: linear-gradient(0deg, rgba(4, 16, 32, 0.78), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.split-photo > img {
  object-position: center 40%;
  transition: transform 0.7s var(--ease);
}

.split-photo:hover > img {
  transform: scale(1.035);
}

.photo-caption {
  bottom: clamp(24px, 3vw, 40px);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-stretch: 76%;
  font-style: italic;
  font-weight: 900;
  left: clamp(20px, 3vw, 44px);
  line-height: 0.86;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.photo-caption span {
  color: var(--cyan);
  display: block;
  font-size: 0.4em;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.split-content {
  align-self: center;
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 96px);
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-stretch: 76%;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.split-content > p {
  color: var(--on-dark-soft);
  line-height: 1.75;
  margin: 24px 0 34px;
  max-width: 52ch;
}

.feature-list {
  border-top: 1px solid var(--line-dark);
}

.feature-list a {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 16px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  min-height: 62px;
  padding: 14px 0;
  transition: color 0.2s ease, padding-left 0.2s var(--ease);
}

.feature-list a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.feature-list span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
}

.feature-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-stretch: 82%;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-list i {
  color: var(--cyan);
  font-style: normal;
}

/* --- Ponte oficina → loja --- */
.store-bridge {
  background: var(--blue-600);
  color: #fff;
  padding-block: clamp(32px, 4vw, 46px);
}

.store-bridge .shell {
  align-items: center;
  display: grid;
  gap: clamp(20px, 3vw, 48px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.bridge-path {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2.5rem);
  font-stretch: 80%;
  font-weight: 700;
  gap: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.bridge-path i {
  color: #fff;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
}

.bridge-path strong {
  color: var(--navy);
}

.store-bridge p {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 28px;
}

/* --- Loja --- */
.store-intro {
  align-items: center;
  display: grid;
  gap: clamp(24px, 3vw, 44px);
  grid-template-columns: 132px minmax(0, 1.25fr) minmax(0, 0.75fr);
  margin-bottom: clamp(38px, 4vw, 58px);
}

.store-logo {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 12px 30px rgba(7, 26, 47, 0.14);
  height: auto;
  object-fit: cover;
  width: 132px;
}

.store-intro > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 44ch;
}

.products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: linear-gradient(155deg, #fff 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}

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

.product-image {
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  background: linear-gradient(0deg, rgba(2, 12, 25, 0.6), transparent 52%);
  content: "";
  inset: 0;
  position: absolute;
}

.product-image img {
  object-position: center 45%;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image span {
  bottom: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  left: 18px;
  position: absolute;
  z-index: 2;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.product-copy h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-stretch: 82%;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-copy p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-copy a {
  align-self: flex-start;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-top: auto;
  padding: 9px 0;
  text-transform: uppercase;
}

.product-copy a:hover {
  color: var(--navy);
}

/* --- Estrutura integrada --- */
.why-section {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5vw, 92px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.why-visual {
  aspect-ratio: 4 / 4.4;
  position: relative;
}

.why-visual > img {
  object-position: center 42%;
}

.why-badge {
  align-items: center;
  background: var(--blue-600);
  bottom: 0;
  color: #fff;
  display: flex;
  gap: 16px;
  padding: 18px 24px;
  position: absolute;
  right: 0;
}

.why-badge strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-stretch: 76%;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.why-badge span {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  padding-left: 16px;
  text-transform: uppercase;
}

.why-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 22px 0 34px;
  max-width: 56ch;
}

.why-points {
  border-top: 1px solid var(--line);
}

.why-points > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 40px minmax(0, 1fr) minmax(0, 1.25fr);
  padding: 20px 0;
}

.why-points span {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.why-points strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-stretch: 84%;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-points p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* --- Galeria --- */
.gallery-section {
  background: var(--navy);
  color: #fff;
}

.gallery-heading {
  padding-block: var(--block) clamp(32px, 4vw, 52px);
}

.gallery-heading .section-heading {
  margin-bottom: 0;
}

.gallery-heading p {
  color: var(--on-dark-muted);
}

.gallery-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(220px, 22vw, 310px));
}

.gallery-grid figure {
  overflow: hidden;
  position: relative;
}

.gallery-grid figure::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-grid img {
  transition: filter 0.4s ease, transform 0.6s var(--ease);
}

.gallery-grid figure:hover img {
  filter: brightness(1.06);
  transform: scale(1.04);
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

/* --- FAQ --- */
.faq-section {
  display: grid;
  gap: clamp(38px, 6vw, 110px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-intro > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 22px 0 32px;
  max-width: 46ch;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-columns: 38px minmax(0, 1fr) 36px;
  padding: 22px 0;
  text-align: left;
  width: 100%;
}

.faq-item > button:hover strong {
  color: var(--blue-700);
}

.faq-item > button > span {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.faq-item > button strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-stretch: 82%;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.faq-item > button i {
  border: 1px solid var(--line);
  border-radius: 50%;
  block-size: 34px;
  display: grid;
  font-size: 1.05rem;
  font-style: normal;
  inline-size: 34px;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}

.faq-item.is-open > button i {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
  padding: 0 20px 24px 54px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* --- Contato --- */
.contact-section {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 118px);
  position: relative;
}

.contact-bg {
  background:
    linear-gradient(90deg, rgba(4, 15, 29, 0.98) 0%, rgba(4, 15, 29, 0.88) 52%, rgba(4, 15, 29, 0.5) 100%),
    url("images/fachada-loja.webp") center 38% / cover no-repeat;
  inset: 0;
  position: absolute;
}

.contact-bg::after {
  background-image: radial-gradient(circle at 78% 45%, rgba(34, 185, 255, 0.2), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

.contact-section .shell {
  position: relative;
  z-index: 2;
}

.contact-content {
  max-width: 820px;
}

.contact-content > p {
  color: #c3d0de;
  line-height: 1.8;
  margin: 22px 0 32px;
  max-width: 54ch;
}

.contact-line {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  gap: 8px 24px;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  padding: 20px 0;
  transition: border-color 0.25s ease;
}

.contact-line:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-line:hover {
  border-color: var(--cyan);
}

.contact-line small {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  font-stretch: 82%;
  font-weight: 650;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-line.is-phone strong {
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  font-stretch: 78%;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: none;
}

.contact-line > span {
  color: var(--on-dark-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* 8. RODAPÉ E FLUTUANTES =================================================== */

.site-footer {
  background: var(--navy-deep);
  color: #fff;
  isolation: isolate;
  padding-block: clamp(56px, 6vw, 78px) 24px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue-600) 58%, #596cff);
  block-size: 3px;
  content: "";
  inset: 0 0 auto;
  position: absolute;
  z-index: 1;
}

.footer-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: clamp(42px, 5vw, 66px);
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  min-height: 138px;
  padding: 8px clamp(22px, 3vw, 44px) 30px 0;
  position: relative;
}

.footer-info-block + .footer-info-block {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(22px, 3vw, 44px);
}

a.footer-info-block {
  transition: background-color 0.25s ease;
}

a.footer-info-block:hover {
  background: rgba(34, 185, 255, 0.045);
}

.footer-info-block > span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-info-block strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-stretch: 82%;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-info-block small {
  color: var(--on-dark-muted);
  font-size: 0.76rem;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-info-block i {
  color: var(--cyan);
  font-style: normal;
  margin-left: 5px;
}

.footer-main {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  padding-bottom: clamp(40px, 5vw, 62px);
}

.footer-intro > span {
  color: var(--cyan);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-intro strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-stretch: 80%;
  font-weight: 750;
  line-height: 1.05;
  max-width: 19ch;
  text-transform: uppercase;
}

.footer-intro p {
  color: var(--on-dark-muted);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 34ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links > span {
  color: #8b9cb0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-links a {
  align-self: flex-start;
  color: #d5deea;
  font-size: 0.85rem;
  padding: 7px 0;
  transition: color 0.2s ease, transform 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-back {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  block-size: 50px;
  display: grid;
  font-size: 1.2rem;
  inline-size: 50px;
  place-items: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.footer-back:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8b9cb0;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.68rem;
  gap: 8px 20px;
  justify-content: space-between;
  letter-spacing: 0.07em;
  padding-top: 22px;
  text-transform: uppercase;
}

.footer-credit,
.service-footer-credit {
  align-items: center;
  color: #a9b8c8;
  display: inline-flex;
  gap: 5px;
  transition: color 0.22s ease;
}

.footer-credit strong,
.service-footer-credit strong {
  color: #fff;
  font-weight: 800;
}

.footer-credit i,
.service-footer-credit i {
  color: var(--cyan);
  font-style: normal;
  transition: transform 0.22s var(--ease);
}

.footer-credit:hover,
.service-footer-credit:hover {
  color: #fff;
}

.footer-credit:hover i,
.service-footer-credit:hover i {
  transform: translate(2px, -2px);
}

.floating-whatsapp {
  animation: fab-float 4.2s ease-in-out infinite;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  position: fixed;
  right: max(22px, env(safe-area-inset-right, 0px));
  z-index: 80;
}

.fab-core {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(4, 60, 32, 0.42);
  color: #fff;
  display: flex;
  font-size: 0.74rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 60px;
  min-width: 60px;
  padding: 0 17px;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.22s ease, box-shadow 0.28s ease, transform 0.28s var(--ease);
}

.fab-core::before {
  animation: fab-pulse 3s ease-out infinite;
  border: 2px solid var(--green);
  border-radius: 999px;
  content: "";
  inset: 0;
  position: absolute;
}

.floating-whatsapp svg {
  block-size: 26px;
  fill: currentColor;
  flex: 0 0 26px;
  position: relative;
}

.fab-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.32s var(--ease), opacity 0.25s ease, margin-left 0.32s var(--ease);
  white-space: nowrap;
}

.floating-whatsapp:hover .fab-core,
.floating-whatsapp:focus-visible .fab-core {
  background: var(--green-hover);
  box-shadow: 0 18px 40px rgba(4, 60, 32, 0.5);
  transform: scale(1.05);
}

.floating-whatsapp:hover .fab-label,
.floating-whatsapp:focus-visible .fab-label {
  margin-left: 12px;
  max-width: 120px;
  opacity: 1;
}

@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes fab-pulse {
  0% { opacity: 0.55; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.38); }
}

/* 9. PÁGINAS DE SERVIÇO ==================================================== */

.service-detail-hero {
  align-items: flex-end;
  color: #fff;
  display: flex;
  min-height: min(84svh, 640px);
  overflow: hidden;
  padding-block: calc(var(--header-h) + clamp(56px, 7vw, 96px)) clamp(52px, 6vw, 84px);
  position: relative;
}

.service-detail-overlay {
  background:
    linear-gradient(90deg, rgba(3, 13, 26, 0.96) 0%, rgba(3, 13, 26, 0.86) 52%, rgba(3, 13, 26, 0.45) 100%),
    linear-gradient(0deg, rgba(3, 13, 26, 0.8), transparent 58%);
  inset: 0;
  position: absolute;
}

.service-detail-hero .shell {
  position: relative;
  z-index: 2;
}

.service-detail-content {
  max-width: 860px;
}

.service-breadcrumb {
  color: #b7c6d6;
  display: inline-block;
  padding: 8px 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: clamp(20px, 3.4vw, 38px);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.service-breadcrumb:hover {
  color: var(--cyan);
}

.service-detail-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.4vw, 5.6rem);
  font-stretch: 76%;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-detail-content > p {
  color: #ccd8e4;
  font-size: 1rem;
  line-height: 1.75;
  margin: 24px 0 32px;
  max-width: 58ch;
}

.service-detail-main {
  display: grid;
  gap: clamp(38px, 6vw, 110px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.service-detail-intro > p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 22px;
  max-width: 52ch;
}

.service-detail-columns {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-columns article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 32px);
}

.detail-number {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.service-detail-columns h3 {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-stretch: 80%;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  margin-top: auto;
  text-transform: uppercase;
}

.service-detail-columns ul {
  list-style: none;
}

.service-detail-columns li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  padding: 13px 0 13px 20px;
  position: relative;
}

.service-detail-columns li::before {
  background: var(--blue-600);
  border-radius: 50%;
  block-size: 5px;
  content: "";
  inline-size: 5px;
  left: 0;
  position: absolute;
  top: 21px;
}

.service-steps {
  background: var(--navy);
  color: #fff;
  padding-block: var(--block);
}

.service-steps .shell {
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.steps-grid {
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid article {
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: clamp(22px, 2vw, 30px);
}

.steps-grid span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.steps-grid h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-stretch: 82%;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: auto;
  text-transform: uppercase;
}

.steps-grid p {
  color: var(--on-dark-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-cta {
  background: var(--blue-600);
  color: #fff;
  padding-block: clamp(52px, 6vw, 78px);
}

.service-cta .shell {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-cta .eyebrow {
  color: #fff;
}

.service-cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-end;
}

.service-cta .button-primary {
  background: var(--navy);
}

.service-cta .button-primary:hover {
  background: var(--navy-deep);
}

.service-address-link {
  color: #fff;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.6;
}

.service-address-link strong {
  display: inline-block;
  font-weight: 700;
}

.related-services {
  padding-block: clamp(64px, 7vw, 96px);
}

.related-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.09em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.related-heading a {
  color: var(--blue-700);
  padding: 8px 0;
}

.related-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid > a {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 164px;
  padding: 24px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.related-grid > a:hover {
  background: var(--navy);
  color: #fff;
}

.related-grid span {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
}

.related-grid > a:hover span {
  color: var(--cyan);
}

.related-grid i {
  font-style: normal;
  justify-self: end;
}

.related-grid h3 {
  align-self: end;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-stretch: 82%;
  font-weight: 700;
  grid-column: span 2;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--cyan);
  color: #b3c1d1;
  font-size: 0.8rem;
  padding-block: clamp(30px, 4vw, 40px);
}

.service-footer .shell {
  align-items: center;
  display: grid;
  gap: 14px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-footer-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-stretch: 82%;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-footer p {
  text-align: center;
}

.service-footer-phone {
  color: #fff;
  font-weight: 700;
  justify-self: end;
  padding: 8px 0;
}

.service-footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  grid-column: 1 / -1;
  justify-self: center;
  letter-spacing: 0.06em;
  margin-top: 8px;
  padding-top: 18px;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
}

/* Revelação ao rolar */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s var(--ease) var(--delay, 0ms);
}

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

/* 10. RESPONSIVO =========================================================== */

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(6, 20, 38, 0.14);
    flex-direction: column;
    gap: 0;
    inset: var(--header-h) 0 auto;
    max-height: calc(100svh - var(--header-h));
    opacity: 0;
    overflow-y: auto;
    padding: 8px 0 18px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s var(--ease), visibility 0.22s;
    visibility: hidden;
    z-index: 95;
  }

  .site-header nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-header nav a {
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
    padding: 16px var(--gutter);
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .site-header nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-side-label {
    display: none;
  }

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

  .store-intro {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .store-intro > p {
    grid-column: span 2;
    max-width: 60ch;
  }

  .store-logo {
    width: 110px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .section-heading,
  .split-feature,
  .why-section,
  .faq-section,
  .service-detail-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .store-bridge .shell,
  .service-steps .shell,
  .service-cta .shell {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .tip-card:last-child {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-rows: repeat(3, clamp(200px, 30vw, 280px));
  }

  .gallery-grid .gallery-tall {
    grid-row: span 1;
  }

  .split-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .why-visual {
    aspect-ratio: 4 / 3;
  }

  .store-bridge p {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding-left: 0;
    padding-top: 20px;
  }

  .service-cta-actions {
    justify-content: flex-start;
  }

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

  .footer-back {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
  }

  .hero-body {
    padding-block: clamp(56px, 14vw, 88px) clamp(40px, 10vw, 64px);
  }

  .hero h1 {
    line-height: 0.88;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-brands {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    padding-inline: 0;
  }

  .hero-brand-card {
    gap: 12px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    padding: 18px 16px;
  }

  .hero-brand-card img {
    height: 58px;
    width: 58px;
  }

  .hero-brand-card b {
    display: block;
  }

  .hero-picture:first-child .hero-image {
    object-position: center 42%;
  }

  .hero-picture:nth-child(2) .hero-image {
    object-position: center 38%;
  }

  .hero-picture:nth-child(3) .hero-image {
    object-position: center 46%;
  }

  .quick-strip .shell {
    justify-content: flex-start;
  }

  .hero-slider-dots {
    display: none;
  }

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

  .footer-info-block {
    min-height: 0;
    padding: 0 0 28px;
  }

  .footer-info-block + .footer-info-block {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 0;
  }

  .service-grid,
  .products-grid,
  .tips-grid,
  .service-detail-columns,
  .steps-grid,
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tip-card:last-child {
    grid-column: auto;
  }

  .store-intro {
    gap: 18px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .store-logo {
    width: 82px;
  }

  .service-card,
  .steps-grid article,
  .related-grid > a,
  .service-detail-columns article {
    min-height: 0;
  }

  .service-card .service-top {
    margin-bottom: 34px;
  }

  .split-photo,
  .why-visual {
    aspect-ratio: 4 / 3;
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }

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

  .gallery-grid figure {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid .gallery-wide {
    aspect-ratio: 4 / 3;
    grid-column: span 1;
  }

  .why-badge {
    left: 0;
    padding: 14px 18px;
    right: auto;
  }

  .why-points > div {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .why-points p {
    grid-column: 2;
  }

  .faq-item > button {
    gap: 12px;
    grid-template-columns: 30px minmax(0, 1fr) 34px;
  }

  .faq-answer p {
    padding: 0 0 22px 42px;
  }

  .contact-line,
  .contact-line.is-phone {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-line small {
    grid-column: span 2;
  }

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

  .footer-intro {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 46px;
  }

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

  .service-footer p {
    text-align: left;
  }

  .service-footer-phone {
    justify-self: start;
  }

  .service-footer-credit {
    justify-content: flex-start;
    justify-self: start;
  }
}

/* 11. AVALIAÇÕES DO GOOGLE ================================================= */

.reviews-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.score-line {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.score-line > strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-stretch: 76%;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  block-size: 17px;
  fill: #f5a623;
  inline-size: 17px;
}

.score-line span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
}

.reviews-score > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 40ch;
}

.reviews-list {
  align-content: start;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  background: linear-gradient(155deg, #fff 0%, #f9fbfe 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}

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

.review-card blockquote {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-stretch: 88%;
  font-weight: 600;
  line-height: 1.35;
  margin: 18px 0 0;
}

.review-card figcaption {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 22px;
  text-transform: uppercase;
}

.review-invite {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.review-invite blockquote {
  color: #fff;
}

.review-invite figcaption {
  color: var(--cyan);
}

.review-invite .review-mark {
  color: var(--cyan);
}

.review-mark {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 0.6;
}

/* selo compacto reaproveitado nas páginas de serviço */
.rating-chip {
  align-items: center;
  display: flex;
  padding: 7px 0;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

.rating-chip strong {
  font-size: 0.95rem;
  font-weight: 800;
}

/* 12. PÁGINA DE SERVIÇO — FICHA E LATERAL ================================== */

.service-facts {
  background: var(--navy-2);
  color: #fff;
}

.service-facts dl,
.service-facts dd {
  margin: 0;
}

.service-facts .shell {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 0;
}

.service-facts div {
  padding: 22px clamp(14px, 1.6vw, 26px) 24px;
  position: relative;
}

.service-facts div + div::before {
  background: rgba(255, 255, 255, 0.16);
  content: "";
  inset-block: 22px;
  position: absolute;
  width: 1px;
  left: 0;
}

.service-facts dt,
.service-facts small {
  color: #86c9ff;
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-stretch: 84%;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-main-col .service-detail-columns {
  margin-top: clamp(30px, 3.5vw, 46px);
}

.service-body {
  align-items: start;
  display: grid;
  gap: clamp(36px, 4.5vw, 74px);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
}

.service-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.aside-card {
  background: var(--navy);
  color: #fff;
  padding: clamp(26px, 2.6vw, 34px);
}

.aside-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-stretch: 80%;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.aside-card > p {
  color: var(--on-dark-soft);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.aside-card .button {
  width: 100%;
}

.aside-block {
  border-top: 1px solid var(--line-dark);
  margin-top: 24px;
  padding-top: 20px;
}

.aside-block > span {
  color: var(--cyan);
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  font-size: 0.83rem;
  gap: 12px;
  justify-content: space-between;
  padding: 5px 0;
}

.hours-list span {
  color: var(--on-dark-muted);
}

.hours-list strong {
  font-weight: 600;
}

.aside-block .rating-chip {
  color: #fff;
}

.aside-block .rating-chip em {
  color: var(--on-dark-muted);
  font-style: normal;
}

.aside-address {
  color: #d5deea;
  display: block;
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.aside-address:hover {
  color: var(--cyan);
}

/* passos numerados com selo */
.steps-grid span {
  align-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  block-size: 42px;
  display: flex;
  inline-size: 42px;
  justify-content: center;
}

.footer-hours {
  color: var(--on-dark-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-top: 12px;
}

.contact-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(24px, 4vw, 52px);
  margin-bottom: 34px;
}

.contact-meta small {
  color: var(--cyan);
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-meta > span strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-section .rating-chip {
  color: #fff;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.contact-section .rating-chip em {
  color: var(--on-dark-soft);
  font-size: 0.8rem;
  font-style: normal;
}

.contact-section .rating-chip:hover em {
  color: var(--cyan);
}

.review-card figcaption a {
  color: var(--cyan);
  display: inline-block;
  padding: 9px 0;
}

.review-card figcaption a span {
  display: inline-block;
  transition: transform 0.28s var(--ease);
}

.review-card figcaption a:hover span {
  transform: translateX(4px);
}

/* 13. RESPONSIVO DOS BLOCOS NOVOS ========================================== */

@media (max-width: 1180px) {
  .service-facts .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-facts div:nth-child(3)::before,
  .service-facts div:nth-child(2n + 1)::before {
    display: none;
  }

  .service-facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 980px) {
  .reviews-grid,
  .service-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-aside {
    position: static;
  }

}

@media (max-width: 640px) {
  .reviews-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-facts .shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-facts div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-facts div::before {
    display: none !important;
  }

  .score-line > strong {
    font-size: 3.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .floating-whatsapp,
  .fab-core::before {
    animation: none;
  }
}
