/* =========================================================
   SALETE CROMODURO — design tokens
   Paleta: aço escovado + azul industrial + acento cromo
   Tipografia: Archivo Expanded (display) / Inter (corpo) / IBM Plex Mono (dados)
   ========================================================= */

:root {
  --steel-950: #0c1414;
  --steel-900: #121c1c;
  --steel-800: #1c2a2a;
  --steel-700: #324444;
  --steel-500: #6b8080;
  --steel-300: #a8bcbc;
  --steel-100: #e7eeee;
  --chrome: #c9d6dc;
  --chrome-bright: #eef4f6;
  --blue-industrial: #14b8a6;
  --blue-deep: #0d8f81;

  /* tons distintos por seção, para separação visual clara */
  --section-a: #0c1414;
  --section-b: #0e211e;
  --section-c: #0a1a1a;
  --section-d: #0e211e;

  --font-display: "Archivo Expanded", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-sm: 2px;
  --radius-md: 4px;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], main[id], footer[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  background: var(--steel-950);
  color: var(--steel-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

h2 { font-size: 36px; }
h3 { font-size: 18px; font-weight: 600; font-family: var(--font-body); }

p { margin: 0; color: var(--steel-300); }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-industrial);
  border-left: 2px solid var(--blue-industrial);
  padding-left: 10px;
  margin-bottom: 16px;
}
.section-tag--center { display: block; text-align: center; border: none; padding-left: 0; }

:focus-visible {
  outline: 2px solid var(--blue-industrial);
  outline-offset: 3px;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: var(--blue-industrial);
  color: #fff;
}
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--chrome);
  background: rgba(238, 244, 246, 0.08);
  color: var(--chrome-bright);
}
.btn--ghost:hover { border-color: var(--chrome-bright); background: rgba(238, 244, 246, 0.16); }
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.header__topbar {
  background: linear-gradient(110deg, #0a2e2a 0%, var(--blue-deep) 55%, var(--blue-industrial) 100%);
  position: relative;
}
.header__topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__info {
  /* font-family: var(--font-mono); */
  font-family: var(--font-body);
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}
.header__contacts {
  display: flex;
  gap: 24px;
}
.header__contacts a {
  /* font-family: var(--font-mono); */
  font-family: var(--font-body);
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.header__contacts a:hover { opacity: 1; }

.header__inner {
  position: relative;
  background-color: rgba(255 255 255 / 97%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(140%);
  
  padding: 18px 24px;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled .header__inner {
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.header__inner-content {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo__img {
  height: 68px;
  width: auto;
  
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-950);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--blue-deep); }
.nav__cta {
  background: var(--blue-industrial);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav__cta:hover { background: var(--blue-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--steel-950);
}

/* ===== Hero / Banner com vídeo ===== */
.hero {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 116px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--steel-950);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 14, 0.96) 0%, rgba(8, 14, 14, 0.88) 45%, rgba(8, 14, 14, 0.55) 100%),
    linear-gradient(0deg, rgba(8, 14, 14, 0.7), rgba(8, 14, 14, 0.2) 35%, rgba(8, 14, 14, 0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.eyebrow {
  /* font-family: var(--font-mono); */
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-industrial);
  margin-bottom: 19px;
}
.hero__title {
  font-size: 56px;
  color: var(--chrome-bright);
}
.hero__title--accent { color: var(--blue-industrial); }
.hero__lead {
  margin-top: 22px;
  font-size: 17px;
  max-width: 46ch;
  color: var(--steel-300);
}
.hero__actions {
  margin-top: 35px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Utilitário: seções com fundo branco (alternância de cor) ===== */
.section--white {
  background: #ffffff !important;
}
.section--white h2,
.section--white h3 {
  color: var(--steel-950);
}
.section--white p {
  color: var(--steel-700);
}
.section--white .section-tag {
  color: var(--blue-deep);
  border-left-color: var(--blue-deep);
}

/* ===== Sobre ===== */
.sobre {
  background: var(--section-b);
  padding: 80px 24px;
}
.sobre__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.sobre__text h2 { margin-bottom: 20px; }
.sobre__text p { font-size: 17px; margin-bottom: 16px; }
.sobre__text .btn { margin-top: 12px; }

.sobre__media {
  display: flex;
  justify-content: center;
}
.sobre__frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  padding: 3px;
  background: linear-gradient(135deg, var(--blue-industrial), transparent 30%, transparent 70%, var(--blue-industrial));
  box-shadow:
    0 0 24px rgba(20, 184, 166, 0.35),
    0 0 60px rgba(20, 184, 166, 0.15);
}
.sobre__frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 184, 166, 0.5);
  pointer-events: none;
}
.sobre__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== Processo ===== */
.processo {
  background: var(--section-a);
  padding: 80px 24px;
}
.processo__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.processo__header { max-width: 600px; margin-bottom: 48px; }
.processo__lista {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
.processo__item {
  border-top: 2px solid var(--steel-300);
  padding-top: 20px;
}
.processo__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-industrial);
  margin-bottom: 10px;
}
.processo__item h3 { margin-bottom: 8px; }
.processo__item p { font-size: 15px; }

/* ===== Servicos ===== */
.servicos {
  background: var(--section-c);
  padding: 80px 24px;
}
.servicos__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.servicos__header { max-width: 600px; margin-bottom: 48px; }
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.servico-card {
  background: var(--steel-900);
  border: 1px solid var(--steel-800);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color 0.2s ease;
}
.servico-card:hover { border-color: var(--blue-industrial); }
.servico-card h3 { margin-bottom: 10px; color: var(--chrome-bright); }
.servico-card p { font-size: 15px; color: var(--steel-300); }

/* ===== Diferenciais ===== */
.diferenciais {
  padding: 80px 24px;
  background: var(--section-d);
}
.diferenciais__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.diferenciais__header { max-width: 460px; }
.diferenciais__lead {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel-700);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diferencial__metric {
  display: block;
  /* font-family: var(--font-mono); */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 34px;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.diferencial p { font-size: 14px; }

/* ===== Setores (swiper) ===== */
.setores {
  background: var(--section-b);
  padding: 80px 0;
}
.setores__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.setores__title {
  text-align: center;
  margin-bottom: 40px;
}
.setores__swiper {
  padding-bottom: 48px;
}
.depoimento {
  margin: 0;
  background: var(--steel-900);
  border-left: 2px solid var(--blue-industrial);
  border-radius: var(--radius-sm);
  padding: 26px;
  height: 100%;
}
.depoimento p {
  font-size: 16px;
  color: var(--steel-100);
}
.depoimento cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-500);
}

/* ===== Galeria (swiper) ===== */
.galeria {
  background: var(--section-c);
  padding: 80px 0;
}
.galeria__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.galeria h2 { margin: 10px 0 40px; }
.galeria__track {
  position: relative;
  margin: 0 48px;
}
.galeria__swiper {
  padding-bottom: 48px;
}
.galeria__item--placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--steel-100);
  border: 1px dashed var(--steel-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.galeria__item--placeholder:hover {
  border-color: var(--blue-industrial);
  transform: translateY(-2px);
}
.galeria__item--placeholder span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-700);
}
.galeria__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.galeria__item--placeholder:has(.galeria__img) {
  border-style: solid;
  padding: 0;
}
.galeria__item--placeholder::after {
  content: "🔍";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.galeria__item--placeholder:hover::after { opacity: 0.7; }
.galeria__cta {
  text-align: center;
  margin-top: 16px;
}

/* ===== Galeria completa (grade, página própria) ===== */
.galeria-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galeria-full__grid .galeria__item--placeholder { aspect-ratio: 4 / 3; }
@media (max-width: 860px) {
  .galeria-full__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .galeria-full__grid { grid-template-columns: 1fr; }
}

.galeria__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  margin-top: -24px;
  padding: 0;
}
.galeria__nav::after {
  font-family: swiper-icons;
  font-size: 28px;
  color: var(--steel-950);
}
.galeria__nav--prev { left: -44px; }
.galeria__nav--next { right: -44px; }
.galeria__nav:hover {
  opacity: 0.6;
  transform: translateY(-50%) scale(1.15);
}
.galeria__nav.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
}
@media (max-width: 720px) {
  .galeria__nav { display: none; }
}

/* ===== CTA Final ===== */
.cta-final {
  background: #0E211E;
  padding: 100px 24px;
  text-align: center;
}
.cta-final--alt { background: var(--section-c); }
.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-final__title {
  
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 22px;
}
.cta-final__lead {
  font-size: 17px;
  line-height: 1.7;
  color: #A8BCBC;
  max-width: 50ch;
  margin: 0 auto 36px;
}
.cta-final__btn {
  background: var(--blue-deep);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;  
  padding: 16px 34px;
}
.cta-final__btn:hover { background: #0a6b61; }

/* Swiper overrides */
.setores__swiper .swiper-pagination-bullet {
  background: var(--steel-700);
  opacity: 1;
}
.galeria__swiper .swiper-pagination-bullet {
  background: var(--steel-300);
  opacity: 1;
}
.setores__swiper .swiper-pagination-bullet-active,
.galeria__swiper .swiper-pagination-bullet-active {
  background: var(--blue-industrial);
}

/* GLightbox overrides */
.glightbox-clean .gclose,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
  background-color: var(--blue-industrial);
}
.gnext:hover, .gprev:hover, .gclose:hover {
  background-color: var(--blue-deep) !important;
}

/* ===== Footer ===== */
.footer {
  margin-top: 0;
  position: relative;
  background-color: rgba(255 255 255 / 97%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-industrial);
  font-weight: 600;
  margin: 0 0 19px;
}
.footer__logo {
  height: 68px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}
.footer__tagline {
  font-size: 14px;
  color: var(--steel-700);
  max-width: 32ch;
  margin-bottom: 19px;
}
.footer__badge {
  display: inline-block;
  /* font-family: var(--font-mono); */
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--steel-900);
  border: 1px solid var(--steel-500);
  border-radius: var(--radius-sm);
  padding: 6px 13px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-900);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--blue-deep); }
.footer__contact {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-900);
  line-height: 1.5;
}
.footer__contact a { color: var(--steel-900); transition: color 0.2s ease; }
.footer__contact a:hover { color: var(--blue-deep); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact-icon {
  color: var(--blue-deep);
  font-size: 14px;
  width: 16px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--section-b);
  color: var(--chrome-bright);
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.footer__social-btn:hover {
  background: var(--blue-industrial);
  color: #fff;
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid var(--steel-300);
  padding: 22px 24px;
}
.footer__bottom p {
  max-width: var(--maxw);
  margin: 0 auto;
  font-size: 12px;
  color: var(--steel-800);
  text-align: center;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.copyright {
    background: linear-gradient(110deg, #0a2e2a 0%, var(--blue-deep) 55%, var(--blue-industrial) 100%);
    text-align: center;
    color: white;
    font-weight: 400;
}

.icones-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.icones-copyright span {
    padding-right: 0;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__title { font-size: 42px; }
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__media { order: -1; }
  .processo__lista { grid-template-columns: repeat(3, 1fr); }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .galeria__track { margin: 0 40px; }
  .galeria__nav--prev { left: -40px; }
  .galeria__nav--next { right: -40px; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: var(--steel-950);
    border-bottom: 1px solid var(--steel-800);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 19px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav a { color: var(--chrome-bright); text-shadow: none; }
  .nav a:hover { color: var(--blue-industrial); }
  .processo__lista { grid-template-columns: 1fr 1fr; }
  .header__topbar-inner { padding: 7px 16px; }
  .header__info { display: none; }
  .hero { margin-top: 96px; min-height: 460px; height: auto; padding: 96px 0 64px; }
  .hero__title { font-size: 34px; }
  section[id], main[id], footer[id] { scroll-margin-top: 96px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .processo__lista { grid-template-columns: 1fr; }
  .servicos__grid { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-final__title { font-size: 30px; }
}

/* =========================================================
   PÁGINAS INTERNAS (banner, breadcrumb, artigo, formulários)
   ========================================================= */

/* ===== Banner interno ===== */
.page-hero {
  background: var(--section-a);
  padding: 168px 24px 56px;
}
.page-hero__inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { font-size: 40px; color: var(--chrome-bright); margin-bottom: 16px; }
.page-hero__lead { font-size: 16px; max-width: 60ch; margin-top: 14px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--steel-300); }
.breadcrumb a:hover { color: var(--blue-industrial); }
.breadcrumb i { font-size: 9px; color: var(--steel-500); }
.breadcrumb span { color: var(--blue-industrial); }

/* ===== Artigo (páginas de palavras-chave) ===== */
.artigo { background: #ffffff; padding: 72px 24px; }
.artigo__inner { max-width: 820px; margin: 0 auto; }
.artigo__banner {
  display: block;
  width: 100%;
  aspect-ratio: 3.15 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .artigo__banner { aspect-ratio: 16 / 10; }
}
.artigo__figure {
  margin: 28px 0;
}
.artigo__figure img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--steel-100);
}
.artigo__figure figcaption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-500);
  text-align: center;
}
.artigo__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--steel-700);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--steel-100);
}
.artigo h2 { color: var(--steel-950); font-size: 27px; margin: 44px 0 16px; }
.artigo h3 { color: var(--steel-950); font-size: 19px; margin: 26px 0 10px; }
.artigo p { color: var(--steel-700); font-size: 16px; margin-bottom: 16px; }
.artigo ul, .artigo ol { color: var(--steel-700); font-size: 16px; margin: 0 0 20px; padding-left: 22px; }
.artigo li { margin-bottom: 8px; }
.artigo strong { color: var(--steel-950); }
.artigo table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15px;
}
.artigo th, .artigo td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--steel-100);
}
.artigo th {
  background: var(--section-b);
  color: var(--chrome-bright);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.artigo td { color: var(--steel-700); }
.artigo tbody tr:nth-child(even) { background: var(--steel-100); }
@media (max-width: 600px) {
  .artigo table, .artigo thead, .artigo tbody, .artigo th, .artigo td, .artigo tr { display: block; }
  .artigo thead { display: none; }
  .artigo tr { margin-bottom: 14px; border: 1px solid var(--steel-100); border-radius: var(--radius-sm); }
  .artigo td { border: none; border-bottom: 1px solid var(--steel-100); }
  .artigo td:last-child { border-bottom: none; }
}

/* ===== Carrossel "Outros serviços" ===== */
.carrossel-servicos { background: var(--section-c); padding: 64px 0; }
.carrossel-servicos__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.carrossel-servicos__inner > h2 { margin-bottom: 28px; }
.carrossel-servicos__swiper { padding-bottom: 48px; }
.carrossel-servicos__card {
  display: block;
  background: var(--steel-900);
  border: 1px solid var(--steel-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.carrossel-servicos__card:hover { border-color: var(--blue-industrial); transform: translateY(-2px); }
.carrossel-servicos__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.carrossel-servicos__card span {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-100);
}
.carrossel-servicos__swiper .swiper-pagination-bullet { background: var(--steel-700); opacity: 1; }
.carrossel-servicos__swiper .swiper-pagination-bullet-active { background: var(--blue-industrial); }

/* ===== Onde atuamos (regiões) ===== */
.regioes { background: var(--section-d); padding: 56px 24px; }
.regioes__inner { max-width: var(--maxw); margin: 0 auto; }
.regioes__lead { margin: 14px 0 28px; max-width: 62ch; }
.regioes__tabs {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  border-bottom: 1px solid var(--steel-800);
}
.regioes__tab {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-300);
  background: var(--steel-900);
  border: 1px solid var(--steel-800);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 10px 16px;
  margin-bottom: -1px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.regioes__tab:hover { color: var(--chrome-bright); }
.regioes__tab.is-active {
  color: var(--blue-industrial);
  background: var(--section-d);
  border-color: var(--steel-800);
  border-bottom: 1px solid var(--section-d);
}
.regioes__panels { margin-top: 8px; }
.regioes__grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 24px;
}
.regioes__grid li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-300);
  padding: 9px 0;
  border-bottom: 1px solid var(--steel-800);
}
@media (max-width: 720px) {
  .regioes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .regioes__tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .regioes__tab { flex: 0 0 auto; white-space: nowrap; }
  .regioes__grid { grid-template-columns: 1fr; }
}

/* ===== Relacionados (outras palavras-chave) ===== */
.relacionados { background: var(--section-d); padding: 64px 24px; }
.relacionados--continua { background: var(--section-c); padding-top: 0; }
.relacionados__inner { max-width: var(--maxw); margin: 0 auto; }
.relacionados__inner > .section-tag { margin-bottom: 12px; }
.relacionados__inner > h2 { margin-bottom: 28px; }
.relacionados__grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.relacionados__grid a {
  display: block;
  background: var(--steel-900);
  border: 1px solid var(--steel-800);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel-100);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.relacionados__grid a:hover { border-color: var(--blue-industrial); color: var(--blue-industrial); }

/* ===== Mapa do site ===== */
.mapa-site { background: #ffffff; padding: 72px 24px 96px; }
.mapa-site__inner { max-width: 820px; margin: 0 auto; }
.mapa-site__grid {
  list-style: none;
  margin: 0; padding: 0;
}
.mapa-site__grid li { border-bottom: 1px solid var(--steel-100); }
.mapa-site__grid a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--steel-700);
  transition: color 0.2s ease;
}
.mapa-site__grid a:hover { color: var(--blue-deep); }

/* ===== Formulários (Contato / Orçamento) ===== */
.form-page { background: var(--section-b); padding: 72px 24px 96px; }
.form-page__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.form-info h2 { margin-bottom: 18px; }
.form-info > p { margin-bottom: 28px; font-size: 16px; }
.form-info__list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.form-info__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.form-info__list li i { color: var(--blue-industrial); margin-top: 4px; width: 16px; text-align: center; }
.form-info__list li a { transition: color 0.2s ease; }
.form-info__list li a:hover { color: var(--blue-industrial); }
.form-info__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--steel-800); }
.form-info__map iframe { display: block; width: 100%; height: 240px; border: 0; filter: grayscale(0.3); }

.form-card { background: #ffffff; border-radius: var(--radius-md); padding: 36px; }
.form-card h3 { color: var(--steel-950); margin-bottom: 6px; }
.form-card__lead { color: var(--steel-700); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--steel-700); margin-bottom: 6px; }
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--steel-950);
  background: #fff;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--blue-industrial);
}
.form-card textarea { resize: vertical; min-height: 110px; }
.form-card__obs { font-size: 12px; color: var(--steel-500); margin: -6px 0 18px; }
.form-msg { font-size: 14px; margin-top: 4px; display: none; }
.form-msg--ok { color: var(--blue-deep); }
.form-msg--erro { color: #b3352c; }

@media (max-width: 860px) {
  .form-page__inner { grid-template-columns: 1fr; }
  .relacionados__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .relacionados__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .page-hero { padding: 148px 20px 44px; }
  .page-hero h1 { font-size: 28px; }
}
