/* =========================================================
   FIFO Centro Logístico — style.css
   Paleta: preto azulado + laranjas da marca + concreto claro
   ========================================================= */

:root {
  /* base escura */
  --ink: #0b0e11;
  --base-1: #141a20;
  --base-2: #10151a;
  --base-3: #0c1013;

  /* acentos da marca */
  --orange: #ff9239;
  --orange-deep: #f26329;
  --amber: #ffbb49;

  /* claro (concreto) */
  --concrete: #e9eaec;
  --concrete-2: #dcdee2;

  /* texto */
  --on-dark: #e9ecef;
  --on-dark-mut: #98a1aa;
  --on-light: #10151a;
  --on-light-mut: #5a646e;

  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(11, 14, 17, 0.14);

  --font-display:
    'Rethink Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --paper: #ffffff;
  --mist: #f2f2f2;

  --gutter: clamp(8px, 1vw, 14px);
  --card-r: clamp(18px, 2vw, 30px);
  --band: 1120px;

  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --sec-y: clamp(80px, 11vw, 160px);

  --r: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
video,
iframe {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: #0b0e11;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- tipografia ---------- */
.h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.lead {
  margin-top: 22px;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--on-dark-mut);
}
.section--light .lead {
  color: var(--on-light-mut);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--orange-deep);
  flex: none;
}
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-bottom: 18px;
}
.section--light .mono-label {
  color: var(--on-light-mut);
}
.note {
  font-size: 0.82rem;
  color: var(--on-dark-mut);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.pend {
  color: var(--on-light-mut);
  font-style: italic;
  font-size: 0.9em;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s var(--ease),
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--solid {
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 0.85) 0%,
    rgb(242, 99, 41, 0.85) 100%
  );
  color: #2a1705;
  /* border:1px solid rgba(255,255,255,.22); */
  -webkit-backdrop-filter: blur(3px) saturate(150%);
  backdrop-filter: blur(3px) saturate(150%);
  box-shadow:
    0 6px 10px rgba(242, 99, 41, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn--solid:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 1) 0%,
    rgb(242, 99, 41, 1) 100%
  );
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--on-dark);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn--sm {
  padding: 11px 20px;
  font-size: 0.88rem;
}
.btn--full {
  width: 100%;
}

/* =========================================================
   PÁGINA EM CARDS (hero · valores · sobre)
   ========================================================= */
.stack {
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  background: var(--paper);
}
.card {
  border-radius: var(--card-r);
  overflow: hidden;
  position: relative;
}
.inner {
  width: 100%;
  max-width: var(--band);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 28px);
}

.preloader {
  position: fixed;
  inset: 14px;
  z-index: 1000;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      110% 80% at 50% 30%,
      rgba(255, 146, 57, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #141a20 0%, #10151a 46%, #0c1013 100%);
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s var(--ease);
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(230px, 58vw);
}
.preloader__logo {
  width: 58px;
  height: auto;
  animation: pulsaLogo 1.9s ease-in-out infinite;
}
@keyframes pulsaLogo {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-3px);
  }
}
.preloader__bar {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #f26329, #ffbb49);
  transition: width 0.35s ease-out;
}
.preloader__pct {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--on-dark-mut);
}
html.carregando,
html.carregando body {
  overflow: hidden;
  height: 100%;
}

/* =========================================================
   NAV — pílulas flutuantes
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(var(--gutter) + 12px) var(--gutter) 0;
  pointer-events: none;
}
html.carregando .nav__row {
  opacity: 0;
}
.nav__row {
  max-width: var(--band);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 28px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}
.pillbox {
  border-radius: 100px;
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.13);
  transition:
    background-color 0.45s var(--ease),
    color 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.nav__logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
}
/* O PNG não aceita currentColor: as duas versões ficam empilhadas e
   trocam por opacidade, no mesmo tempo das pílulas (.45s). */
.nav__logo .logo {
  position: relative;
  display: block;
  width: 64px;
  aspect-ratio: 1518 / 635;
}
.nav__logo .logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.45s var(--ease);
}
/* padrão = conteúdo escuro (data-nav="dark") */
.nav__logo .logo__preta {
  opacity: 0;
}
.nav__logo .logo__branca {
  opacity: 1;
}
/* estado claro (data-nav="light"), inclusive nas páginas internas, onde
   o .nav--fixa é sempre escopado junto com o .is-light */
.nav.is-light .nav__logo .logo__preta {
  opacity: 1;
}
.nav.is-light .nav__logo .logo__branca {
  opacity: 0;
}
.nav__logo .nav__sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
  padding-bottom: 1px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
}
.nav__menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition:
    background-color 0.25s,
    color 0.25s;
}
.nav__menu a svg {
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.6;
}
.nav__menu a:hover,
.nav__menu a.is-current {
  background: rgba(255, 255, 255, 0.15);
}
.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 0.85) 0%,
    rgb(242, 99, 41, 0.85) 100%
  );
  color: #2a1705;
  box-shadow:
    0 6px 10px rgba(242, 99, 41, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(3px) saturate(150%);
  backdrop-filter: blur(3px) saturate(150%);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition:
    background-color 0.3s,
    transform 0.3s var(--ease);
}
.nav__cta:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 1) 0%,
    rgb(242, 99, 41, 1) 100%
  );
  transform: translateY(-1px);
}

/* estado claro — quando a nav passa por seções claras */
.nav.is-light .pillbox {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 16px rgba(11, 14, 17, 0.1);
}
.nav.is-light .nav__logo {
  color: #333;
}
.nav.is-light .nav__logo .nav__sub {
  opacity: 0.55;
}
.nav.is-light .nav__menu a {
  color: #454f59;
}
.nav.is-light .nav__menu a:hover,
.nav.is-light .nav__menu a.is-current {
  background: rgba(11, 14, 17, 0.06);
  color: var(--on-light);
}

.nav__burger {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 100px;
}
.nav__burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}
.nav__burger span:nth-child(1) {
  top: 19px;
}
.nav__burger span:nth-child(2) {
  top: 26px;
}
.nav__burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav__burger[aria-expanded='true'] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(180deg, #141a20, #0c1013);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.menu-mobile[hidden] {
  display: none;
}
.menu-mobile:not(.is-open) {
  pointer-events: none;
}
.menu-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}
.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: var(--pad);
}
.menu-mobile a {
  font-size: clamp(2rem, 9vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
}
.menu-mobile__cta {
  margin-top: 28px;
  color: var(--orange) !important;
}

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  isolation: isolate;
  min-height: calc(100svh - 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(118px, 15vh, 158px) clamp(26px, 3.2vw, 44px);
  background: var(--ink);
}

/* camada 1 — fundo atmosférico */
.hero__atmo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      115% 80% at 74% 26%,
      rgba(255, 146, 57, 0.3),
      transparent 46%
    ),
    radial-gradient(
      90% 70% at 6% 96%,
      rgba(242, 99, 41, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, #141a20 0%, #10151a 46%, #0c1013 100%);
}

/* camada 2 — vídeo (máscara na wrapper, nunca no <video>) */
.hero__videowrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 62%),
    linear-gradient(180deg, #000 52%, transparent 97%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 62%),
    linear-gradient(180deg, #000 52%, transparent 97%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  background: url('../img/hero-poster.jpg') center/cover no-repeat;
  opacity: 0.6;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* camada 3 — véu escuro */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(11, 14, 17, 0.96) 0%,
      rgba(11, 14, 17, 0.76) 32%,
      rgba(11, 14, 17, 0.34) 66%,
      rgba(11, 14, 17, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 14, 17, 0.55) 0%,
      transparent 26%,
      transparent 60%,
      rgba(11, 14, 17, 0.88) 100%
    );
}

/* camada 4 — grid em perspectiva */
.hero__grid {
  position: absolute;
  inset: -2px;
  z-index: 3;
  opacity: 0.3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 34%,
    #000 64%,
    transparent 88%
  );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 34%,
    #000 64%,
    transparent 88%
  );
  transform: perspective(680px) rotateX(55deg) scale(1.8) translateY(26%);
  transform-origin: bottom;
}

/* camada 5 — grão */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__top,
.hero__stats {
  position: relative;
  z-index: 5;
}

/* etiqueta com brilho passando por cima da fonte */
.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.pill-eyebrow span {
  background-image: linear-gradient(
    100deg,
    var(--orange) 0%,
    var(--orange) 40%,
    #fff 50%,
    var(--orange) 60%,
    var(--orange) 100%
  );
  background-size: 260% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sweepText 5.2s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}
.eyebrow--sweep span {
  background-image: linear-gradient(
    100deg,
    var(--orange) 0%,
    var(--orange) 42%,
    #fff1d8 50%,
    var(--orange) 58%,
    var(--orange) 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sweepText 10s var(--ease) infinite;
}

@keyframes sweepText {
  0% {
    background-position: 130% 0;
  }
  36% {
    background-position: -30% 0;
  }
  100% {
    background-position: -30% 0;
  }
}

.hero__cols {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(26px, 3.4vw, 52px);
  align-items: start;
  margin-top: clamp(22px, 3vw, 34px);
}
.hero__title {
  font-size: clamp(1.85rem, 3.05vw, 2.72rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}
.hero__title .dim {
  color: rgba(255, 255, 255, 0.52);
}
.hero__sub {
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.55;
  color: #b9c1c9;
  max-width: 42ch;
}
.hero__sub strong {
  color: #fff;
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.btn--soft {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--soft:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero__stats {
  margin-top: clamp(44px, 7vw, 90px);
}
.hero__stats .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.stat__num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stat__unit {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange);
}
.stat__label {
  flex-basis: 100%;
  font-size: 0.84rem;
  color: var(--on-dark-mut);
  line-height: 1.4;
  margin-top: 5px;
}

/* =========================================================
   2. VALORES — faixa em loop com tooltip
   ========================================================= */
.valores {
  background: var(--mist);
  color: var(--on-light);
  padding-block: clamp(46px, 6vw, 74px);
  text-align: center;
}
.valores__title {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.2;
  max-width: 24ch;
  margin-inline: auto;
}
.mq {
  position: relative;
  margin-top: clamp(30px, 4vw, 46px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.mq__track {
  display: flex;
  width: max-content;
  animation: mqScroll 42s linear infinite;
}
.mq__set {
  display: flex;
  align-items: center;
}
.mq.is-paused .mq__track {
  animation-play-state: paused;
}
/* quando o JS assume o loop (clona os conjuntos e move quadro a quadro),
   desligamos o keyframe CSS — que era o fallback */
.mq.is-js .mq__track {
  animation: none;
  will-change: transform;
}
@keyframes mqScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.mq__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-inline: 5px;
  padding: 11px 19px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(11, 14, 17, 0.07);
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #3c464f;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.25s,
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.mq__item svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--orange-deep);
  transition: transform 0.3s var(--ease);
}
.mq__item:hover,
.mq__item.is-active {
  color: var(--ink);
  border-color: rgba(255, 146, 57, 0.6);
  border-width: 1.5px;
  box-shadow: 0 8px 22px rgba(11, 14, 17, 0.1);
  font-weight: bold;
}
.mq__item:hover svg,
.mq__item.is-active svg {
  transform: scale(1.15);
}
/* pausa garantida em CSS, mesmo com o item em movimento */
.mq:hover .mq__track {
  animation-play-state: paused;
}

.mq__tip {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: min(320px, 78vw);
  padding: 15px 18px;
  border-radius: 14px;
  background: #0f1418;
  color: #dde2e7;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
  box-shadow: 0 20px 44px rgba(11, 14, 17, 0.24);
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.mq__tip.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}
.mq__tip strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
}
.mq__tip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 12px;
  height: 12px;
  background: #0f1418;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.mq__tip.is-below {
  transform: translate(-50%, -10px);
}
.mq__tip.is-below.is-on {
  transform: translate(-50%, 0);
}
.mq__tip.is-below::after {
  bottom: auto;
  top: -5px;
}

/* =========================================================
   SEÇÕES GENÉRICAS
   ========================================================= */
.section {
  padding-block: var(--sec-y);
}
.section--light {
  background: var(--mist);
  color: var(--on-light);
}
.section--light .note {
  color: var(--on-light-mut);
}
.sec-head {
  max-width: 70ch;
}
.sec-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  max-width: none;
  align-items: start;
}

/* =========================================================
   3. SOBRE + MISSÃO + VISÃO
   ========================================================= */
.sobre {
  background: #fff;
  color: var(--on-light);
  padding-block: clamp(56px, 7vw, 96px);
}
.sobre__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}
.sobre__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.038em;
  font-weight: 700;
}
.sobre__text p {
  color: var(--on-light-mut);
  font-size: 1.04rem;
  line-height: 1.62;
}
.sobre__text p + p {
  margin-top: 18px;
}
.sobre__text em {
  font-style: italic;
  color: var(--on-light);
}

.mv {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 66px);
  border-radius: 22px;
  background: linear-gradient(140deg, #161d24 0%, #10151a 52%, #0c1013 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mv::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    88% 130% at 90% 0%,
    rgba(242, 99, 41, 0.24),
    transparent 58%
  );
}
.mv::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mv__card {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3.6vw, 46px);
  color: var(--on-dark);
}
.mv__card + .mv__card {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mv__card p:not(.mono-label) {
  font-size: 1.04rem;
  line-height: 1.6;
  letter-spacing: -0.012em;
}
.mv__card .mono-label {
  color: var(--amber);
}

/* margem + cantos arredondados, sem mexer no fundo das seções */
.servicos,
.infra {
  margin: 14px;
  border-radius: 28px;
  overflow: hidden;
}

/* =========================================================
   4. SERVIÇOS
   ========================================================= */
.servicos {
  background:
    radial-gradient(
      46% 62% at 50% 100%,
      rgba(242, 99, 41, 0.28),
      transparent 60%
    ),
    linear-gradient(180deg, var(--base-2), var(--base-3));
}

/* trilho do ciclo — elemento-assinatura */
.ciclo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.ciclo li {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}
.ciclo li span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  white-space: nowrap;
  padding-left: 16px;
  position: relative;
}
.ciclo li span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--orange-deep);
}
.ciclo li:last-child span {
  color: var(--orange);
}
.ciclo li:last-child span::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 187, 73, 0.16);
}
.ciclo li:not(:last-child)::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  min-width: 18px;
  background: linear-gradient(
    90deg,
    rgba(255, 146, 57, 0.5),
    rgba(255, 146, 57, 0.08)
  );
}

.tabs {
  margin-top: clamp(44px, 5vw, 68px);
}
.tabs__nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 36px;
  padding: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.tabs__nav::-webkit-scrollbar {
  display: none;
}
.tabs__ind {
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: calc(100% - 10px);
  border-radius: 100px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 0.85) 0%,
    rgb(242, 99, 41, 0.85) 100%
  );
  box-shadow:
    0 6px 18px rgba(242, 99, 41, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition:
    transform 0.6s cubic-bezier(0.66, 0.02, 0.28, 1),
    width 0.6s cubic-bezier(0.66, 0.02, 0.28, 1);
  will-change: transform, width;
}
.tabs__btn {
  position: relative;
  z-index: 1;
  padding: 11px 22px;
  border-radius: 100px;
  border: 0;
  background: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-dark-mut);
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}
.tabs__btn:hover {
  color: var(--on-dark);
}
.tabs__btn.is-active {
  color: #2a1705;
  font-weight: 600;
}

.panel__head {
  display: none;
}
.panel__intro {
  color: var(--on-dark-mut);
  max-width: 62ch;
  margin-bottom: 34px;
  font-size: 1.02rem;
}
.svc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.svc li {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 22px;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.svc li:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}
.svc h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.svc p {
  font-size: 0.9rem;
  color: var(--on-dark-mut);
  line-height: 1.5;
}

.diferenciais,
.local {
  background: #fff;
}

/* =========================================================
   5. DIFERENCIAIS
   ========================================================= */
.dif {
  margin-top: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}
.dif__item {
  background: #fff;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(11, 14, 17, 0.08);
  border-radius: 18px;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.dif__item:hover {
  background: #f4f5f6;
  border-color: rgba(11, 14, 17, 0.12);
}
.dif__ico {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--orange-deep);
  background: #fce9dc;
  transition: transform 0.35s var(--ease);
}
.dif__ico svg {
  width: 22px;
  height: 22px;
}
.dif__item:hover .dif__ico {
  transform: translateY(-2px) scale(1.04);
}
.dif__item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.dif__item p {
  color: var(--on-light-mut);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* =========================================================
   6. INFRAESTRUTURA
   ========================================================= */
.infra {
  background: var(--base-3);
}
.infra__nums {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 60px);
  padding-block: 34px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat--lg .stat__num {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.stat--lg .stat__unit {
  font-size: 1.1rem;
}

.areas {
  margin-top: clamp(48px, 6vw, 80px);
}
.areas__table {
  font-size: 0.96rem;
}
.areas__table th,
.areas__table td {
  text-align: left;
  padding: 20px 16px 20px 0;
  vertical-align: top;
}
.areas__table thead th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.areas__table tbody tr {
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.areas__table tbody th {
  font-weight: 600;
  letter-spacing: -0.02em;
  width: 26%;
}
.areas__table tbody th::after {
  content: '';
  display: block;
  height: 2px;
  width: var(--pct, 0%);
  max-width: 100%;
  background: linear-gradient(90deg, var(--orange-deep), var(--amber));
  margin-top: 10px;
  border-radius: 2px;
  transform-origin: left;
}
.areas__table .num {
  font-family: var(--font-mono);
  color: var(--amber);
  white-space: nowrap;
  width: 20%;
}
.areas__table td:last-child {
  color: var(--on-dark-mut);
  font-size: 0.92rem;
}
.areas__table tfoot th,
.areas__table tfoot td {
  padding-top: 22px;
  font-weight: 700;
}
.areas__table tfoot .num {
  color: #fff;
}
.areas__table tfoot td:last-child {
  color: var(--on-dark-mut);
  font-weight: 400;
}

.chips-block {
  margin-top: clamp(44px, 5vw, 64px);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-dark);
  font-size: 0.86rem;
  color: var(--on-dark-mut);
  transition:
    border-color 0.3s,
    color 0.3s;
}
.chips li:hover {
  border-color: rgba(255, 146, 57, 0.5);
  color: var(--on-dark);
}
.chips--alt li {
  border-style: dashed;
}

.galeria {
  margin-top: clamp(56px, 7vw, 90px);
}
.galeria .swiper {
  overflow: hidden;
  padding-inline: 0;
}
.galeria .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-inline: var(--pad);
}
.galeria .swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 auto;
}
.galeria .swiper-slide {
  width: clamp(230px, 24vw, 340px);
  margin: 0;
}
.galeria figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(0.85) contrast(1.05);
}
.galeria figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}
.galeria__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.galeria__btns {
  display: flex;
  gap: 10px;
}
.arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--on-dark-mut);
  transition:
    border-color 0.3s,
    color 0.3s,
    background-color 0.3s;
}
.arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =========================================================
   7. LOCALIZAÇÃO
   ========================================================= */
.local__grid {
  margin-top: clamp(44px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.local__map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #d3d6da;
  /* novo */
     position: relative;
  aspect-ratio: 16 / 10;
  --gm-header: 78px; /* ajuste fino aqui */
}
.local__map iframe {
  width: 100%;
  /* height: clamp(320px, 44vw, 480px); */
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
  /* novo */
   position: absolute;
  inset: 0;
  top: calc(var(--gm-header) * -1);
  height: calc(100% + var(--gm-header));
}
.acessos > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}
.acessos > div:first-of-type {
  border-top: 1px solid var(--line-light);
}
.acessos dt {
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.acessos dd {
  margin: 0;
  color: var(--on-light-mut);
  font-size: 0.94rem;
}
.local__destaque {
  margin-top: clamp(40px, 5vw, 64px);
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 60ch;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 2px solid var(--orange-deep);
}

/* =========================================================
   8. INAUGURAÇÃO
   ========================================================= */
.inaug {
  position: relative;
  isolation: isolate;
  padding-block: clamp(96px, 13vw, 180px);
  text-align: center;
  background:
    radial-gradient(
      80% 120% at 50% 0%,
      rgba(242, 99, 41, 0.28),
      transparent 60%
    ),
    linear-gradient(180deg, var(--base-1), var(--ink));
  margin: -40px 14px 0px 14px !important;
}
.inaug .eyebrow {
  justify-content: center;
}
.inaug__title {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.inaug__text {
  margin: 26px auto 38px;
  max-width: 50ch;
  color: var(--on-dark-mut);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* =========================================================
   9. CONTATO
   ========================================================= */
.contato {
  background: #fff;
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.canais {
  margin-top: clamp(36px, 4vw, 52px);
}
.canais > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}
.canais dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-light-mut);
}
.canais dd {
  margin: 0;
  font-size: 1.02rem;
}
.canais dd a {
  transition: color 0.25s;
}
.canais dd a:hover {
  color: var(--orange);
}
.canais .pend {
  color: var(--on-dark-mut);
}

.form {
  background: linear-gradient(180deg, #141a20, #10151a);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: clamp(24px, 3.4vw, 40px);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  color: var(--on-dark);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.25s,
    background-color 0.25s;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}
.field input::placeholder {
  color: #5d6771;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #e2603f;
}
.err {
  font-size: 0.8rem;
  color: #f08a6c;
  margin-top: 7px;
  min-height: 0;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: 16px;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.form__status.is-ok {
  color: var(--amber);
}
.form__status.is-err {
  color: #f08a6c;
}
#btnEnviar[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* =========================================================
   10. RODAPÉ
   ========================================================= */
.rodape {
  background: var(--base-3);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(56px, 7vw, 90px);
}
.rodape__brand_logo {
   display:inline-flex;
  align-items:center;
   gap:12px;
}
.rodape__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(44px, 5vw, 70px);
}
.logo--footer {
  width: 104px;
  height: auto;
  color: var(--on-dark);
}
.rodape__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-top: 10px;
  padding-left:12px;
  border-left:1px solid var(--line-dark);
}
.rodape__addr {
  margin-top: 18px;
  color: var(--on-dark-mut);
  font-size: 0.92rem;
}
.rodape__nav,
.rodape__contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rodape__nav a,
.rodape__contato a {
  color: var(--on-dark-mut);
  font-size: 0.94rem;
  transition: color 0.25s;
  width: fit-content;
}
.rodape__nav a:hover,
.rodape__contato a:hover {
  color: var(--orange);
}
.rodape__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: var(--on-dark-mut);
}

/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */
[data-anim='up'] {
  opacity: 0;
  transform: translateY(26px);
}
.no-anim [data-anim='up'] {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HOME — hero e valores dividindo a primeira tela
   ========================================================= */
.home {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 28px);
}
.home .hero {
  z-index: 1;
}
/* o card de valores nasce por baixo do card do vídeo */
.home .valores {
  position: relative;
  z-index: 0;
  margin-top: -40px;
  padding-top: calc(clamp(30px, 3.4vw, 44px) + 34px);
  padding-bottom: clamp(26px, 3vw, 40px);
}
.mq {
  margin-top: clamp(20px, 2.6vw, 30px);
}

@media (max-width: 1180px) {
  .svc {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .svc {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1000px) {
  .nav__menu {
    display: none;
  }
  .nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .nav.is-light .nav__burger {
    color: var(--on-light);
  }
  .nav__row {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .nav__cta {
    justify-self: end;
    order: 2;
  }
  .nav__burger {
    order: 3;
  }

  .hero__cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero__sub {
    max-width: 56ch;
  }
  .sobre__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 1080px) {
  .sec-head--split {
    grid-template-columns: 1fr;
  }
  .dif {
    grid-template-columns: repeat(2, 1fr);
  }
  .local__grid {
    grid-template-columns: 1fr;
  }
  .contato__grid {
    grid-template-columns: 1fr;
  }
  .rodape__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav__logo .nav__sub {
    display: none;
  }
  .nav__cta {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero {
    padding-block: 110px clamp(24px, 5vw, 36px);
  }
  .hero__stats .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat {
    padding-block: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .mv {
    grid-template-columns: 1fr;
  }
  .mv__card + .mv__card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .dif {
    grid-template-columns: 1fr;
  }
  .infra__nums {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* serviços viram sanfona */
  .tabs__nav {
    display: none;
  }
  .panel {
    display: block !important;
    border-bottom: 1px solid var(--line-dark);
  }
  .panel[hidden] {
    display: block !important;
  }
  .panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .panel__head::after {
    content: '+';
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
  }
  .panel__head[aria-expanded='true']::after {
    content: '–';
  }
  .panel__body {
    display: none;
    padding-bottom: 28px;
  }
  .panel__head[aria-expanded='true'] + .panel__body {
    display: block;
  }
  .svc {
    grid-template-columns: 1fr;
  }
  .servicos,
  .infra {
    margin: 10px;
    border-radius: 22px;
  }

  .areas__table thead {
    display: none;
  }
  .areas__table tbody tr,
  .areas__table tfoot tr {
    display: block;
    padding-block: 18px;
  }
  .areas__table th,
  .areas__table td {
    display: block;
    padding: 0;
    width: auto !important;
  }
  .areas__table tbody th {
    margin-bottom: 8px;
  }
  .areas__table .num {
    margin-bottom: 8px;
  }

  .rodape__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* --- vídeo desligado em telas pequenas: só o poster --- */
@media (max-width: 600px) {
  .hero__video {
    display: none;
  }
  .hero__videowrap {
    background: url('../img/hero-poster-sm.jpg') center/cover no-repeat;
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(180deg, #000 42%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 42%, transparent 92%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
  .hero__grid {
    opacity: 0.18;
  }
  .mq__track {
    animation-duration: 30s;
  }
  .mq__item {
    font-size: 0.9rem;
    gap: 8px;
    padding: 10px 15px;
    margin-inline: 4px;
  }
}

/* --- movimento reduzido --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video {
    display: none;
  }
  .hero__videowrap {
    background: url('../img/hero-poster.jpg') center/cover no-repeat;
  }
  [data-anim='up'] {
    opacity: 1 !important;
    transform: none !important;
  }
  .mq__track {
    animation: none;
    width: auto;
  }
  .mq {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .eyebrow--sweep span {
    animation: none;
    background: none;
    color: var(--orange);
  }
}

/* =========================================================
   ===== BLOG =====
   Seção #blog na home, listagem /blog, post individual e 404.

   Sem token novo: tudo daqui usa as variáveis do :root definidas no
   topo deste arquivo e reaproveita o desenho que a página já tem —
   .post-card parte do .dif__item, .paginacao parte do .chips,
   .artigo blockquote repete o detalhe em --orange-deep do
   .local__destaque, e os botões são os .btn de sempre.
   ========================================================= */

/* ---------------------------------------------------------
   NAV nas páginas internas

   O .nav--fixa é um REFORÇO do estado claro, não um estado próprio: nas
   páginas do blog a navbar passa por cima de uma grade de cards clara,
   onde o rgba(255,255,255,.62) da home fica lavado.

   Por isso toda regra aqui exige TAMBÉM o .is-light. Sem esse escopo,
   elas venciam o estado escuro padrão (.nav--fixa .pillbox tem
   especificidade 0,2,0 contra 0,1,0 de .pillbox) e a navbar ficava
   branca sobre o cabeçalho escuro — inclusive o botão do menu no
   mobile, que sobrepunha o .nav__burger{color:#fff} do bloco
   responsivo e sumia no fundo.

   Com data-nav="dark" o main.js retira o .is-light e nada aqui se
   aplica: a navbar se comporta exatamente como na index.php.
   --------------------------------------------------------- */
.nav--fixa.is-light .pillbox {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 14, 17, 0.08);
  box-shadow: 0 2px 20px rgba(11, 14, 17, 0.12);
}
.nav--fixa.is-light .nav__logo {
  color: #333;
}
.nav--fixa.is-light .nav__menu a {
  color: #454f59;
}
.nav--fixa.is-light .nav__menu a:hover,
.nav--fixa.is-light .nav__menu a.is-current {
  background: rgba(11, 14, 17, 0.06);
  color: var(--on-light);
}
.nav--fixa.is-light .nav__burger {
  color: var(--on-light);
}
/* sombra serve nos dois estados */
.nav--fixa .nav__cta {
  box-shadow:
    0 6px 14px rgba(242, 99, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* ---------------------------------------------------------
   CABEÇALHO DAS PÁGINAS INTERNAS
   Faz o papel do hero: dá altura suficiente para a navbar passar por
   cima de um fundo escuro, sem vídeo e sem preloader. Declara
   data-nav="dark", então a navbar fica igual à da home.
   --------------------------------------------------------- */
.pagina-topo {
  position: relative;
  isolation: isolate;
  padding-block: clamp(128px, 16vh, 190px) clamp(44px, 6vw, 76px);
  background:
    radial-gradient(
      80% 120% at 82% 0%,
      rgba(255, 146, 57, 0.16),
      transparent 56%
    ),
    radial-gradient(
      60% 90% at 0% 100%,
      rgba(242, 99, 41, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--base-2), var(--base-3));
}
/* mesmo grão do .hero__grain — é ele que justifica o isolation:isolate
   acima e o que faz o cabeçalho parecer o hero da home */
.pagina-topo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.pagina-topo__titulo {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 700;
  color: var(--on-dark);
}
.pagina-topo__texto {
  margin-top: 20px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--on-dark-mut);
}

/* ---------------------------------------------------------
   GRADE DE CARDS
   3 colunas no desktop, 2 no tablet, 1 no mobile — mesmos pontos de
   quebra que a grade .dif já usa.
   --------------------------------------------------------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(40px, 5vw, 64px);
}

.blog.section {
  margin: 14px 14px 0px 14px;
}

.blog-lista .posts {
  margin-top: clamp(24px, 3vw, 36px);
}

.post-card {
  background: #fff;
  /* border:1px solid rgba(11,14,17,.09); */
  border-radius: 22px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.35s var(--ease);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.post-card:hover {
  border-color: rgba(11, 14, 17, 0.14);
  box-shadow: 0 14px 32px rgba(11, 14, 17, 0.1);
  transform: translateY(-3px);
}
.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--on-light);
}

/* a proporção é fixa: o espaço da foto já existe antes de ela chegar,
   então nada empurra o texto para baixo durante o carregamento */
.post-card__capa {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--concrete-2);
}
/* O :not() exclui o card sem capa. Lá dentro também há um <img> — o logo
   da marca — e sem o escopo ele herdaria o preenchimento, o filtro e o
   zoom de hover da capa. Enquanto o logo era SVG inline a questão não
   existia, porque estas regras só pegam <img>. */
.post-card__capa:not(.post-card__capa--vazia) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-card__capa:not(.post-card__capa--vazia) img {
  transform: scale(1.04);
}

/* sem capa: um bloco escuro discreto com o símbolo da marca */
.post-card__capa--vazia {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #161d24, #0c1013);
}
.post-card__marca {
  width: 66px;
  height: auto;
  opacity: 0.5;
  color: var(--on-dark-mut);
}

.post-card__corpo {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(20px, 2.4vw, 26px);
}
.post-card__data {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-light-mut);
  margin-bottom: 14px;
}
.post-card__titulo {
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.post-card:hover .post-card__titulo {
  color: var(--orange-deep);
}
.post-card__resumo {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--on-light-mut);
  margin-bottom: 20px;
}
.post-card__mais {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--orange-deep);
}
.post-card__mais svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 0.35s var(--ease);
}
.post-card:hover .post-card__mais svg {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   SEÇÃO #blog NA HOME
   --------------------------------------------------------- */
.blog__acao {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 4vw, 52px);
}

/* ---------------------------------------------------------
   LISTAGEM /blog
   --------------------------------------------------------- */
.blog-lista__conta {
  margin-bottom: 0;
}

.blog-vazio {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  padding-block: clamp(30px, 5vw, 60px);
}
.blog-vazio h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-vazio p {
  color: var(--on-light-mut);
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.blog-vazio__acoes {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   PAGINAÇÃO
   --------------------------------------------------------- */
.paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line-light);
}
.paginacao__numeros {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.paginacao__numeros a,
.paginacao__numeros span,
.paginacao__salto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 45px;
  min-height: 45px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  font-size: 0.88rem;
  justify-content: center;
  color: var(--on-light-mut);
  transition:
    border-color 0.3s,
    color 0.3s,
    background-color 0.3s;
}
.paginacao__numeros a:hover,
.paginacao__salto:hover {
  border-color: rgba(255, 146, 57, 0.6);
  color: var(--orange-deep);
}
.paginacao__numeros [aria-current='page'] {
  border-color: transparent;
  color: #2a1705;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(255, 187, 73, 0.9) 0%,
    rgba(242, 99, 41, 0.9) 100%
  );
}
.paginacao__salto {
  font-weight: 500;
}

/* ---------------------------------------------------------
   POST INDIVIDUAL — cabeçalho
   --------------------------------------------------------- */
.pagina-topo--post {
  padding-bottom: clamp(36px, 5vw, 60px);
}

.artigo-previa {
  display: inline-block;
  margin-bottom: 22px;
  padding: 11px 18px;
  border-radius: 100px;
  background: rgba(255, 187, 73, 0.12);
  border: 1px solid rgba(255, 187, 73, 0.3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.artigo-volta {
  margin-bottom: 22px;
}
.artigo-volta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  transition: color 0.25s;
}
.artigo-volta a:hover {
  color: var(--orange-deep);
}

.artigo-titulo {
  max-width: 26ch;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.034em;
  font-weight: 700;
  color: var(--on-dark);
}
.artigo-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}
.artigo-meta__sep {
  color: var(--orange-deep);
}
/* "atualizado em" só aparece quando a publicação foi mesmo editada */
.artigo-meta__atualizado {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--on-dark-mut);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
}

/* ---------------------------------------------------------
   POST INDIVIDUAL — corpo
   Fundo branco como .diferenciais e .local, pelo mesmo motivo: é onde
   se lê texto longo.
   --------------------------------------------------------- */
.artigo-corpo {
  background: #fff;
}

.artigo-capa {
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.artigo-capa img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--card-r);
}
.artigo-capa figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--on-light-mut);
}

/* corpo do texto — largura de leitura confortável */
.artigo {
  max-width: 68ch;
  margin-inline: auto;
  color: var(--on-light);
  font-size: clamp(1.04rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}
.artigo > * + * {
  margin-top: 1.35em;
}
.artigo p {
  color: var(--on-light-mut);
}
.artigo strong {
  color: var(--on-light);
  font-weight: 600;
}
.artigo em {
  font-style: italic;
}
.artigo u {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.artigo h2 {
  margin-top: 2em;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.16;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: var(--on-light);
}
.artigo h3 {
  margin-top: 1.7em;
  font-size: clamp(1.16rem, 1.9vw, 1.35rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--on-light);
}
.artigo h2 + *,
.artigo h3 + * {
  margin-top: 0.7em;
}

.artigo ul,
.artigo ol {
  padding-left: 1.6em;
}
.artigo li {
  color: var(--on-light-mut);
}
.artigo li + li {
  margin-top: 0.5em;
}
.artigo ul > li {
  list-style: disc;
}
.artigo ol > li {
  list-style: decimal;
}
.artigo ul ul,
.artigo ol ol,
.artigo ul ol,
.artigo ol ul {
  margin-top: 0.5em;
}
.artigo li::marker {
  color: var(--orange-deep);
}

/* mesmo detalhe em laranja do .local__destaque */
.artigo blockquote {
  padding-left: clamp(20px, 3vw, 30px);
  border-left: 2px solid var(--orange-deep);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--on-light);
}
.artigo blockquote p {
  color: inherit;
}

.artigo a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.artigo a:hover {
  color: var(--orange);
}

.artigo img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
}
.artigo figure {
  margin-block: 1.8em;
}
.artigo figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--on-light-mut);
}
.artigo hr {
  border: 0;
  height: 1px;
  background: var(--line-light);
  margin-block: 2.4em;
}

/* tabelas vindas do editor.

   A caixa rolável existe para o celular: uma tabela de 5 colunas não
   cabe em 360px, e sem ela a PÁGINA inteira rolaria na horizontal. */
.artigo .artigo__tabela {
  overflow-x: auto;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
}
.artigo table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  min-width: 520px;
}
.artigo th,
.artigo td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-light);
  color: var(--on-light-mut);
}
.artigo thead th {
  background: var(--mist);
  color: var(--on-light);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.artigo tbody tr:last-child td {
  border-bottom: 0;
}
.artigo tbody tr:hover {
  background: rgba(11, 14, 17, 0.02);
}

/* ---------------------------------------------------------
   COMPARTILHAR
   --------------------------------------------------------- */
.compartilhar {
  max-width: 68ch;
  margin: clamp(48px, 6vw, 76px) auto 0;
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid var(--line-light);
}
.compartilhar .mono-label {
  color: var(--on-light-mut);
  margin-bottom: 14px;
}
.compartilhar__botoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* sobre fundo claro o .btn--soft precisa de contraste próprio */
.compartilhar .btn--soft {
  background: rgba(11, 14, 17, 0.05);
  color: var(--on-light);
  border-color: var(--line-light);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.compartilhar .btn--soft:hover {
  background: rgba(11, 14, 17, 0.09);
  border-color: rgba(255, 146, 57, 0.5);
}
.compartilhar .btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

/* ---------------------------------------------------------
   VEJA TAMBÉM
   --------------------------------------------------------- */
.veja-tambem {
  background: var(--mist);
  color: var(--on-light);
  border-top: 1px solid var(--line-light);
}
.veja-tambem__titulo {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

/* ---------------------------------------------------------
   404
   --------------------------------------------------------- */
.erro-404 {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding-block: clamp(140px, 18vh, 210px) clamp(70px, 9vw, 120px);
  background:
    radial-gradient(
      80% 110% at 50% 0%,
      rgba(242, 99, 41, 0.14),
      transparent 58%
    ),
    var(--concrete);
  color: var(--on-light);
}
.erro-404__codigo {
  color: var(--orange-deep);
  margin-bottom: 20px;
}
.erro-404__titulo {
  max-width: 22ch;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.038em;
  font-weight: 700;
  color: var(--on-light);
}
.erro-404__texto {
  margin-top: 22px;
  max-width: 48ch;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--on-light-mut);
}
.erro-404__acoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
/* .btn--soft nasce translúcido para fundo escuro */
.erro-404__acoes .btn--soft,
.blog-vazio__acoes .btn--soft {
  background: var(--paper);
  color: var(--on-light);
  border-color: var(--line-light);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.erro-404__acoes .btn--soft:hover,
.blog-vazio__acoes .btn--soft:hover {
  background: #fff;
  border-color: rgba(255, 146, 57, 0.55);
}
.erro-404__atalhos {
  margin-top: clamp(44px, 6vw, 68px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line-light);
}
.erro-404__atalhos .mono-label {
  color: var(--on-light-mut);
}
.erro-404__atalhos .chips li {
  padding: 0;
  border-color: var(--line-light);
  color: var(--on-light-mut);
}
.erro-404__atalhos .chips li:hover {
  border-color: rgba(255, 146, 57, 0.6);
  color: var(--on-light);
}
.erro-404__atalhos .chips li a {
  display: block;
  padding: 9px 16px;
}

/* ---------------------------------------------------------
   BLOG — RESPONSIVO
   --------------------------------------------------------- */
@media (max-width: 1080px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .posts {
    grid-template-columns: 1fr;
  }
  .paginacao {
    flex-direction: column;
    gap: 16px;
  }
  .paginacao__salto {
    width: 100%;
  }
  .blog-vazio__acoes .btn,
  .erro-404__acoes .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .artigo-titulo {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .pagina-topo {
    padding-block: 118px clamp(34px, 7vw, 46px);
  }
  .erro-404 {
    padding-block: 130px 70px;
  }
  .compartilhar__botoes .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
