/* NEXXT — design system (v3)
   Direção editorial/corporativa: hierarquia por tipografia e espaço em
   branco, não por caixas com borda. Serifada para títulos (Source Serif 4)
   + sans neutra pro corpo (Public Sans) + mono só para rótulos pequenos
   (IBM Plex Mono) — nenhuma dessas é a dupla padrão de gerador de site.
   Nenhum componente usa borda para "empacotar" conteúdo; separação vem de
   respiro vertical e peso tipográfico. */

:root {
  --navy: #0b2a4a;
  --navy-dark: #071e36;
  --navy-2: #0f3354;
  --ink: #13233a;
  --gold: #ffc400;
  --gold-dark: #e0a800;
  --paper: #f6f8fb;
  --muted: #5e7184;
  --line: #e4eaf1;
  --steel: #9fb1c2;
  --white: #ffffff;

  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Public Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --container: 1180px;
  --header-h: 84px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

.nx-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nx-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.nx-eyebrow.on-dark { color: var(--gold); }

.nx-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; }

/* ---------- Header ----------
   .nx-header itself must NOT be display:flex — .nx-container is its only
   child and already flexes internally. Making the header a flex container
   too turns .nx-container into a shrink-to-fit flex item instead of a
   full-width block, which collapses the logo/nav together. */
.nx-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 30, 54, 0.94);
  backdrop-filter: blur(14px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
/* Sem JS, o header fica sempre sólido (seguro). Com JS, começa translúcido
   sobre o hero e só solidifica depois de rolar — .is-scrolled é controlado
   por assets/js/main.js. */
.js .nx-header:not(.is-scrolled) {
  background: rgba(7, 30, 54, 0.18);
  backdrop-filter: blur(2px);
}
.nx-header.is-scrolled {
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.4);
}
.nx-header .nx-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nx-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nx-logo-img { height: 38px; width: auto; display: block; }
@media (max-width: 480px) {
  .nx-logo-img { height: 32px; }
}
.nx-logo-word {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nx-logo-word span { color: var(--gold); }

.nx-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nx-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
/* Escopado para .nx-nav-links (não .nx-nav a) — .nx-nav a também
   pegava o botão "Fale conosco" e sobrescrevia o padding do .nx-btn,
   por especificidade CSS mais alta (era o botão ficar apertado). */
.nx-nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.15s ease;
  padding: 6px 0;
}
.nx-nav-links a:hover, .nx-nav-links a[aria-current="page"] { color: var(--white); }
.nx-nav-links a[aria-current="page"] { color: var(--gold); }

.nx-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}

/* Agrupa nav + idioma + hambúrguer. O seletor de idioma fica FORA de
   .nx-nav de propósito: .nx-nav some no mobile, e o idioma precisa
   continuar visível nas duas larguras. */
.nx-header-end {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) { .nx-header-end { gap: 10px; } }

/* ---------- Seletor de idioma ---------- */
.nx-lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}
.nx-lang-opt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .6);
  transition: background-color .18s ease, color .18s ease;
}
.nx-lang-opt:hover { color: var(--white); }
.nx-lang-opt.is-active {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
}
.nx-flag {
  width: 18px;
  height: 13px;
  flex: none;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
}
/* Bandeiras como SVG inline no CSS: emoji de bandeira não renderiza
   colorido no Windows, que mostraria apenas as letras "BR" e "US". */
.nx-flag-br {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23009739'/%3E%3Cpath d='M14 2.6 25.4 10 14 17.4 2.6 10Z' fill='%23FEDD00'/%3E%3Ccircle cx='14' cy='10' r='4.1' fill='%23012169'/%3E%3C/svg%3E");
}
.nx-flag-us {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23fff'/%3E%3Cg fill='%23B22234'%3E%3Crect width='28' height='1.54' y='0'/%3E%3Crect width='28' height='1.54' y='3.08'/%3E%3Crect width='28' height='1.54' y='6.15'/%3E%3Crect width='28' height='1.54' y='9.23'/%3E%3Crect width='28' height='1.54' y='12.31'/%3E%3Crect width='28' height='1.54' y='15.38'/%3E%3Crect width='28' height='1.54' y='18.46'/%3E%3C/g%3E%3Crect width='12' height='10.77' fill='%233C3B6E'/%3E%3C/svg%3E");
}
@media (max-width: 480px) {
  .nx-lang-opt { padding: 6px 10px; gap: 6px; font-size: 11px; }
  .nx-flag { width: 16px; height: 11.5px; }
}

.nx-mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  background: var(--navy-dark);
  padding: 32px 24px;
}
.nx-mobile-nav.is-open { display: block; }
.nx-mobile-nav a {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  padding: 16px 0;
}

/* 1040px e não 900px: com 5 itens de menu + botão + seletor de idioma, o
   header precisa de ~1020px para respirar. Abaixo disso os links começavam a
   se espremer e "Áreas de Atuação" quebrava em duas linhas. */
@media (max-width: 1040px) {
  .nx-nav { display: none; }
  .nx-menu-btn { display: inline-flex; }
}

/* ---------- Buttons ----------
   Só a ação principal de cada página usa botão sólido. Tudo secundário é
   link de texto sublinhado (.nx-text-link) — menos "componente", mais
   frase clicável. */
.nx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 16px 34px;
  border-radius: 10px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.nx-btn-gold {
  background: linear-gradient(135deg, #ffd542, var(--gold) 45%, var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 600;
  box-shadow: 0 6px 18px -6px rgba(255, 196, 0, 0.55);
}
.nx-btn-gold:hover {
  background: linear-gradient(135deg, #ffe07a, #ffd542 45%, var(--gold));
  box-shadow: 0 10px 30px -6px rgba(255, 196, 0, 0.75);
  transform: translateY(-2px);
}

.nx-btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.nx-btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 196, 0, 0.1);
  box-shadow: 0 0 24px -4px rgba(255, 196, 0, 0.45);
  transform: translateY(-2px);
}

.nx-text-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  border-bottom: 1px solid var(--steel);
  padding-bottom: 3px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nx-text-link:hover { border-color: var(--navy); }
.nx-text-link.on-dark { color: var(--white); border-color: rgba(255,255,255,.35); }
.nx-text-link.on-dark:hover { border-color: var(--white); }

/* ---------- Sections ---------- */
.nx-section { padding: 128px 0; }
.nx-section-sm { padding: 80px 0; }
@media (max-width: 720px) {
  .nx-section { padding: 76px 0; }
  .nx-section-sm { padding: 56px 0; }
}

.nx-section-head { max-width: 700px; }
.nx-section-head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
}
.nx-section-head p {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.nx-section-head.on-dark p { color: var(--steel); }

/* ---------- Page header (páginas internas) ----------
   Marca-d'água do chevron da logo, gigante e suave, no lado direito —
   preenche o espaço vazio e assina a marca sem competir com o texto. */
.nx-page-header {
  position: relative;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy-2) 70%, var(--navy-dark));
  color: var(--white);
  padding: calc(var(--header-h) + 84px) 0 96px;
  overflow: hidden;
}
.nx-page-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 480px;
  height: 384px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32'%3E%3Cpath d='M2 2 L16 16 L2 30 L9 30 L23 16 L9 2 Z' fill='%23FFC400'/%3E%3Cpath d='M16 2 L30 16 L16 30 L23 30 L37 16 L23 2 Z' fill='%23FFC400' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
@media (max-width: 900px) {
  .nx-page-header::after { width: 300px; height: 240px; right: -60px; }
}
.nx-page-header p.lede {
  margin-top: 22px;
  max-width: 620px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

/* ---------- Hero ----------
   Duas colunas: texto num fundo sólido (sempre legível) + a foto real de
   operação industrial num painel emoldurado à direita — em vez da foto
   ficar atrás do texto (o que matava o contraste) e deixar o lado direito
   vazio, o layout usa a largura toda e a foto ganha destaque de verdade. */
.nx-hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy-2) 65%, var(--navy-dark));
  color: var(--white);
  padding: calc(var(--header-h) + 80px) 0 90px;
  overflow: hidden;
}
.nx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .nx-hero-grid { grid-template-columns: 1fr; }
}
.nx-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.55);
}
@media (max-width: 960px) {
  .nx-hero-media { aspect-ratio: 16 / 10; }
}
.nx-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.nx-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, rgba(255, 196, 0, 0.16), transparent 45%),
    linear-gradient(0deg, rgba(7, 30, 54, 0.55), transparent 35%);
  pointer-events: none;
}
.nx-hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.12;
}
.nx-hero h1 .accent { color: var(--gold); }
.nx-hero .lede {
  margin-top: 26px;
  max-width: 520px;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.65;
}
.nx-hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.nx-hero-tags {
  margin-top: 72px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 2;
}
.nx-locales {
  margin-top: 20px;
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--steel);
}
.nx-locales .dot { color: var(--gold); margin-right: 6px; }

/* ---------- Process (ex: O Modelo) ----------
   Numeral fantasma grande atrás do título — sem caixa, sem borda. */
.nx-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
@media (max-width: 860px) {
  .nx-process { grid-template-columns: 1fr; gap: 40px; }
}
.nx-process-step .n {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--line);
  line-height: 1;
}
.nx-process-step h3 { margin-top: 6px; font-size: 21px; }
.nx-process-step p { margin-top: 12px; color: var(--muted); line-height: 1.65; font-size: 15.5px; }
.nx-process-step ul { margin-top: 18px; display: grid; gap: 10px; }
.nx-process-step li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.nx-process-step li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--gold-dark);
}

/* ---------- Feature list (ex: diferenciais, Hong Kong, "por que a NEXXT") ----------
   Lista empilhada, sem borda entre itens — só espaço. */
.nx-feature-list {
  display: grid;
  gap: 40px;
}
.nx-feature-list.cols-2 { grid-template-columns: 1fr 1fr; column-gap: 56px; }
.nx-feature-list.cols-3 { grid-template-columns: repeat(3, 1fr); column-gap: 48px; }
@media (max-width: 860px) {
  .nx-feature-list.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nx-feature-list.cols-2, .nx-feature-list.cols-3 { grid-template-columns: 1fr; }
}
.nx-feature h3 { font-size: 19px; }
.nx-feature.on-dark h3 { color: var(--white); }
.nx-feature p { margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 46ch; }
.nx-feature.on-dark p { color: var(--steel); }

/* ---------- Painel escuro flutuante (curvas + gradiente + sombra) ---------- */
.nx-panel-dark {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-2) 65%, var(--navy-dark));
  border-radius: 28px;
  padding: 64px;
  box-shadow: 0 40px 80px -40px rgba(7, 30, 54, 0.55);
  overflow: hidden;
}
.nx-panel-dark::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 320px;
  height: 256px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32'%3E%3Cpath d='M2 2 L16 16 L2 30 L9 30 L23 16 L9 2 Z' fill='%23FFC400'/%3E%3Cpath d='M16 2 L30 16 L16 30 L23 30 L37 16 L23 2 Z' fill='%23FFC400' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
@media (max-width: 720px) {
  .nx-panel-dark { padding: 40px 28px; border-radius: 20px; }
}

/* ---------- Two-column band layout (ex: Presença na Ásia no Home) ----------
   BUG HISTÓRICO: esta classe tinha sumido numa reescrita anterior do CSS,
   deixando a seção cair em coluna única em qualquer largura de tela. */
.nx-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .nx-band { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Frentes (áreas de atuação) ---------- */
#higienizacao, #automacao, #logistica {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.nx-frente .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-dark);
}
.nx-frente h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 34px); }
.nx-frente p.desc { margin-top: 18px; max-width: 680px; color: var(--muted); line-height: 1.7; font-size: 16.5px; }
.nx-frente ul { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.nx-frente li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
}

/* ---------- Timeline (Como Trabalhamos) ----------
   Linha fina conectando os passos — é o único lugar onde uma linha faz
   sentido conceitualmente (é literalmente uma linha do tempo). */
.nx-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
  padding-top: 8px;
}
.nx-timeline::before {
  content: "";
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
@media (max-width: 1000px) {
  .nx-timeline { grid-template-columns: repeat(2, 1fr); }
  .nx-timeline::before { display: none; }
}
@media (max-width: 560px) {
  .nx-timeline { grid-template-columns: 1fr; }
}
.nx-step { position: relative; }
.nx-step::before {
  content: "";
  position: absolute;
  top: -32px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 1000px) {
  .nx-step::before { display: none; }
}
.nx-step .step-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--gold-dark);
}
.nx-step h3 { margin-top: 10px; font-size: 16.5px; font-family: var(--font-sans); font-weight: 600; }
.nx-step p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Marquee ---------- */
.nx-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nx-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: nx-scroll 28s linear infinite;
}
.nx-marquee:hover .nx-marquee-track { animation-play-state: paused; }
.nx-marquee-item { display: flex; align-items: center; height: 30px; }
.nx-marquee-item img { height: 100%; width: auto; filter: grayscale(1); opacity: 0.55; }
.nx-logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--steel);
}
@keyframes nx-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .nx-marquee-track { animation: none; }
}

/* ---------- CTA banner ---------- */
.nx-cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-2));
  color: var(--white);
  padding: 64px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 30px 60px -30px rgba(7, 30, 54, 0.5);
  overflow: hidden;
}
.nx-cta::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 40px;
  width: 220px;
  height: 176px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32'%3E%3Cpath d='M2 2 L16 16 L2 30 L9 30 L23 16 L9 2 Z' fill='%23FFC400'/%3E%3Cpath d='M16 2 L30 16 L16 30 L23 30 L37 16 L23 2 Z' fill='%23FFC400' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.nx-cta > * { position: relative; z-index: 1; }
.nx-cta h2 { font-size: clamp(26px, 3vw, 34px); max-width: 480px; }

/* ---------- Footer ---------- */
.nx-footer {
  background: var(--navy-dark);
  color: var(--steel);
  padding: 72px 0 32px;
}
.nx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) {
  .nx-footer-grid { grid-template-columns: 1fr; }
}
.nx-footer h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
.nx-footer p { color: var(--steel); font-size: 14.5px; line-height: 1.75; }
.nx-footer ul li { margin-bottom: 12px; }
.nx-footer a { font-size: 14.5px; color: var(--steel); transition: color 0.15s ease; }
.nx-footer a:hover { color: var(--white); }
.nx-footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
}

/* ---------- Form ---------- */
.nx-form { display: grid; gap: 20px; max-width: 560px; }
.nx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .nx-form-row { grid-template-columns: 1fr; } }
.nx-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.nx-field input, .nx-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nx-field input:focus, .nx-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.15);
}
.nx-field textarea { min-height: 110px; resize: vertical; }
.nx-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.nx-form-status {
  padding: 16px 0;
  font-size: 14.5px;
  display: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.nx-form-status.is-visible { display: block; }
.nx-form-status.success { color: #1a7f4b; }
.nx-form-status.error { color: #b3261e; }

.nx-submit-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Contact layout ---------- */
.nx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
@media (max-width: 860px) {
  .nx-contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Contact info block ---------- */
.nx-contact-info { display: grid; gap: 32px; }
.nx-contact-info .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nx-contact-info .value { margin-top: 8px; font-size: 19px; font-family: var(--font-serif); font-weight: 600; }

/* ---------- Numbered mini-steps (ex: Contato "o que esperar") ---------- */
.nx-mini-steps { display: grid; gap: 28px; }
.nx-mini-step { display: flex; gap: 18px; }
.nx-mini-step .n {
  flex: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--line);
  line-height: 1.3;
}
.nx-mini-step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-top: 3px; }
.nx-mini-step strong { display: block; font-size: 15.5px; color: var(--ink); font-family: var(--font-serif); }

/* ---------- Reveal on scroll ----------
   Hidden state only applies once .js is present on <html> (set by an inline
   script in <head>) — if JavaScript is blocked/fails, content stays visible. */
.js .nx-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .nx-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .nx-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.max-w-2 { max-width: 640px; margin-left: auto; margin-right: auto; }


/* ==========================================================================
   MISSÃO CHINA  (/missaochina/)
   Estética empresarial chinesa sobre a paleta navy/gold da marca: tipografia
   CJK usada como elemento gráfico, muito espaço em branco e fotografia real
   dos destinos. Prefixo .mc- para não colidir com nada do resto do site.
   ========================================================================== */

:root {
  --font-cjk: "Noto Serif SC", "Songti SC", "SimSun", "Microsoft YaHei", serif;
}

/* ---------- Hero ---------- */
.mc-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  padding: calc(var(--header-h) + 104px) 0 72px;
}
.mc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/missao/missao-hero.jpg") center 45% / cover no-repeat;
}
/* Duas camadas: uma vertical para assentar o topo/rodapé, outra diagonal
   para garantir contraste do texto sobre a lateral esquerda da foto. */
.mc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,30,54,.95) 0%, rgba(7,30,54,.80) 42%, rgba(7,30,54,.30) 100%),
    linear-gradient(180deg, rgba(7,30,54,.85) 0%, rgba(7,30,54,.25) 40%, rgba(7,30,54,.90) 100%);
}
.mc-hero > .nx-container { position: relative; z-index: 2; }

.mc-watermark {
  position: absolute;
  right: -3%;
  top: 46%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: var(--font-cjk);
  font-weight: 600;
  font-size: clamp(200px, 27vw, 460px);
  line-height: .82;
  color: var(--gold);
  opacity: .08;
  letter-spacing: .02em;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}
@media (max-width: 860px) { .mc-watermark { opacity: .05; right: -12%; } }

.mc-hero h1 {
  margin-top: 22px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.1;
  max-width: 15ch;
  text-shadow: 0 2px 28px rgba(0,0,0,.4);
}
.mc-hero h1 .accent { color: var(--gold); }
.mc-hero .lede {
  margin-top: 26px;
  max-width: 540px;
  color: rgba(255,255,255,.82);
  font-size: 18.5px;
  line-height: 1.7;
}
.mc-hero-meta {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gold);
}
.mc-hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Trilho das cidades no rodapé do hero */
.mc-rail {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
}
.mc-rail-cn {
  display: block;
  font-family: var(--font-cjk);
  font-weight: 600;
  font-size: 21px;
  color: var(--gold);
  line-height: 1.2;
}
.mc-rail-name {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

/* ---------- Declaração editorial ---------- */
.mc-statement {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .mc-statement { grid-template-columns: 1fr; gap: 32px; } }
.mc-statement h2 {
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.28;
}
.mc-statement p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.mc-statement p + p { margin-top: 18px; }

/* ---------- Números ---------- */
.mc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
@media (max-width: 860px) { .mc-stats { grid-template-columns: repeat(2, 1fr); } }
.mc-stat .n {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  color: var(--navy);
}
.mc-stat .l {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 22ch;
}
.mc-stats.on-dark .mc-stat .n { color: var(--gold); }
.mc-stats.on-dark .mc-stat .l { color: var(--steel); }

/* ---------- Roteiro: linhas alternadas foto/texto ---------- */
.mc-leg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 76px 0;
}
.mc-leg + .mc-leg { border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .mc-leg { grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
}
/* alterna o lado da foto nas pernas pares */
.mc-leg:nth-child(even) .mc-leg-media { order: 2; }
@media (max-width: 900px) { .mc-leg:nth-child(even) .mc-leg-media { order: 0; } }

.mc-leg-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 7 / 5;
  box-shadow: 0 34px 70px -34px rgba(7,30,54,.5);
}
.mc-leg-media img { width: 100%; height: 100%; object-fit: cover; }
.mc-leg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,30,54,.72) 100%);
}
.mc-leg-cn {
  position: absolute;
  left: 26px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-cjk);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 3px 26px rgba(0,0,0,.55);
}
.mc-leg-index {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--gold-dark);
}
.mc-leg h3 { margin-top: 14px; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
.mc-leg-dates {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}
.mc-leg p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.78;
  max-width: 48ch;
}

/* ---------- Painel Canton Fair ---------- */
.mc-fair {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 72px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-2) 62%, var(--navy-dark));
  box-shadow: 0 40px 80px -40px rgba(7,30,54,.55);
}
@media (max-width: 720px) { .mc-fair { padding: 40px 28px; border-radius: 20px; } }
/* treliça discreta, evocando as janelas vazadas da arquitetura chinesa */
.mc-fair::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  rgba(255,196,0,.075) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255,196,0,.075) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.mc-fair > * { position: relative; z-index: 1; }
.mc-fair h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.2; margin-top: 18px; max-width: 18ch; }
.mc-fair p { margin-top: 22px; max-width: 62ch; color: var(--steel); font-size: 17px; line-height: 1.8; }

/* ---------- Créditos das fotos (letra miúda no rodapé escuro) ----------
   Escopado com .nx-footer porque `.nx-footer p` (0,1,1) ganharia de
   `.mc-credits` (0,1,0) e devolveria o texto ao tamanho/cor de parágrafo. */
.nx-footer .mc-credits {
  margin-top: 48px;
  max-width: 70ch;
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .38);
}
.nx-footer .mc-credits a { font-size: inherit; color: rgba(255, 255, 255, .55); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.nx-footer .mc-credits a:hover { color: var(--white); border-color: rgba(255, 255, 255, .5); }
/* o bottom-bar já traz margem própria; sem isso o espaçamento dobra */
.mc-credits + .nx-footer-bottom { margin-top: 24px; }


/* ==========================================================================
   v4 — CAMADA EDITORIAL FOTOGRÁFICA
   ==========================================================================
   Motivo: as páginas internas tinham virado grades de blocos de texto de
   tamanho igual ("cards jogados") e listas cruas. Esta camada troca isso por
   três dispositivos editoriais, todos derivados do que já funcionava em
   /missaochina/, generalizados para o site inteiro:

     .nx-shot    hero fotográfico de sangria total, com scrim duplo
     .nx-index   índice de revista (substitui a grade de cards)
     .nx-split   lâmina alternada foto/texto  +  .nx-specs (ficha técnica)

   Paleta e tipografia continuam as do sistema (navy/gold, Source Serif 4 +
   Public Sans + IBM Plex Mono). Nada aqui usa borda para "empacotar"
   conteúdo: a separação vem de fio de 1px, respiro e peso tipográfico.
   ========================================================================== */

/* ---------- Foco visível global ----------
   Só :focus-visible, para o anel aparecer na navegação por teclado sem
   piscar a cada clique de mouse. */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Hero fotográfico ----------
   A foto entra como <img> real (e não background-image) para poder carregar
   cedo, ter alt e participar do LCP. Os scrims ficam num ::after acima dela. */
.nx-shot {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  padding: calc(var(--header-h) + 96px) 0 80px;
}
.nx-shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Dois gradientes: o diagonal garante contraste do texto à esquerda, o
   vertical assenta topo e rodapé contra o header e a seção seguinte. */
.nx-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,30,54,.96) 0%, rgba(7,30,54,.82) 46%, rgba(7,30,54,.34) 100%),
    linear-gradient(180deg, rgba(7,30,54,.88) 0%, rgba(7,30,54,.26) 42%, rgba(7,30,54,.86) 100%);
}
.nx-shot > .nx-container { position: relative; z-index: 2; }

/* Numeral fantasma: só faz sentido porque as soluções são um conjunto
   indexado de fato (01…08), não é ornamento. */
.nx-shot-index {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(190px, 26vw, 420px);
  line-height: .8;
  color: var(--gold);
  opacity: .09;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) { .nx-shot-index { opacity: .06; right: -4%; } }

.nx-shot h1 {
  margin-top: 20px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.11;
  max-width: 17ch;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.42);
}
.nx-shot h1 .accent { color: var(--gold); }
.nx-shot .lede {
  margin-top: 24px;
  max-width: 56ch;
  color: rgba(255,255,255,.84);
  font-size: 18.5px;
  line-height: 1.7;
}
.nx-shot-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
}
/* Trilho de metadados no pé do hero (setor / tecnologia / etc.) */
.nx-shot-rail {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.nx-shot-rail b { color: var(--gold); font-weight: 500; }

/* ---------- Índice (página de sumário) ----------
   Substitui a grade de 8 cards da /solucoes/. Cada linha inteira é o link:
   alvo de clique grande, uma leitura por linha, fio de 1px como separador. */
.nx-index { border-top: 1px solid var(--line); }
.nx-index-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 208px 28px;
  gap: 34px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background-color .35s ease, padding-left .35s ease;
}
.nx-index-row:hover { background: var(--paper); padding-left: 18px; }
.nx-index-n {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  color: var(--steel);
  transition: color .35s ease;
}
.nx-index-row:hover .nx-index-n { color: var(--gold-dark); }
/* display:block é obrigatório aqui: são <span> dentro da célula do grid, e
   como inline eles ignorariam o margin-top e o título colaria na descrição. */
.nx-index-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.25;
  color: var(--navy);
  text-wrap: balance;
}
.nx-index-desc {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}
.nx-index-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper);
}
.nx-index-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.nx-index-row:hover .nx-index-thumb img { transform: scale(1.06); }
.nx-index-go {
  justify-self: end;
  color: var(--steel);
  transition: color .35s ease, transform .35s ease;
}
.nx-index-row:hover .nx-index-go { color: var(--gold-dark); transform: translateX(5px); }
@media (max-width: 900px) {
  /* alinha pelo topo: com o texto ocupando várias linhas, o numeral centrado
     acabava ao lado da descrição em vez de ao lado do título. */
  .nx-index-row {
    grid-template-columns: 54px minmax(0, 1fr) 116px;
    gap: 18px;
    padding: 22px 0;
    align-items: start;
  }
  .nx-index-go { display: none; }
  .nx-index-n { font-size: 25px; line-height: 1.15; }
  .nx-index-thumb { margin-top: 4px; }
  .nx-index-row:hover { padding-left: 0; }
}
@media (max-width: 560px) {
  .nx-index-row { grid-template-columns: 44px minmax(0, 1fr); }
  .nx-index-thumb { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nx-index-row, .nx-index-thumb img, .nx-index-go, .nx-index-n { transition: none; }
  .nx-index-row:hover .nx-index-thumb img { transform: none; }
  .nx-index-row:hover { padding-left: 0; }
}

/* ---------- Lâmina alternada foto/texto ---------- */
.nx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nx-split.flip .nx-split-media { order: 2; }
@media (max-width: 900px) {
  .nx-split { grid-template-columns: 1fr; gap: 34px; }
  .nx-split.flip .nx-split-media { order: 0; }
}
.nx-split-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 34px 68px -34px rgba(7,30,54,.48);
}
.nx-split-media img { width: 100%; height: 100%; object-fit: cover; }
.nx-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,30,54,.5) 100%);
}
.nx-split h2 { font-size: clamp(26px, 3.1vw, 38px); line-height: 1.2; text-wrap: balance; }
.nx-split h3 { font-size: clamp(21px, 2.4vw, 27px); line-height: 1.25; }
.nx-split p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.8;
  max-width: 52ch;
}

/* ---------- Ficha técnica ----------
   Substitui os <ul> soltos: duas colunas rotuladas, cada item numa linha
   separada por fio — lê como especificação, não como card. */
.nx-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 720px) { .nx-specs { grid-template-columns: 1fr; gap: 40px; } }
.nx-spec-list { margin-top: 18px; border-top: 1px solid var(--line); }
.nx-spec-list li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}
.nx-spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 21px;
  width: 6px; height: 6px;
  background: var(--gold);
}
/* Variante sobre fundo escuro */
.nx-spec-list.on-dark { border-top-color: rgba(255,255,255,.16); }
.nx-spec-list.on-dark li { color: rgba(255,255,255,.86); border-bottom-color: rgba(255,255,255,.12); }

/* ---------- Afirmação em destaque ---------- */
.nx-pull {
  max-width: 26ch;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.3;
  color: var(--navy);
  text-wrap: balance;
}
.nx-pull.on-dark { color: var(--white); }

/* ---------- Statement editorial genérico (irmão do .mc-statement) ---------- */
.nx-statement {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .nx-statement { grid-template-columns: 1fr; gap: 30px; } }
.nx-statement h2 { font-size: clamp(27px, 3.2vw, 40px); line-height: 1.26; text-wrap: balance; }
.nx-statement p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.nx-statement p + p { margin-top: 18px; }


/* ---------- Ladrilho editorial (home: as três frentes) ----------
   Imagem + rótulo + título + uma linha. Sem borda, sem fundo, sem sombra de
   caixa: quem separa um do outro é a foto e o espaço, não uma moldura. */
.nx-tile { display: block; color: inherit; }
.nx-tile-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  box-shadow: 0 26px 52px -30px rgba(7, 30, 54, .5);
}
.nx-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.nx-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 30, 54, .55) 100%);
}
.nx-tile:hover .nx-tile-media img { transform: scale(1.05); }
.nx-tile h3 {
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.25;
  transition: color .3s ease;
}
.nx-tile:hover h3 { color: var(--gold-dark); }
.nx-tile p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .nx-tile-media img, .nx-tile h3 { transition: none; }
  .nx-tile:hover .nx-tile-media img { transform: none; }
}

/* Créditos de foto no rodapé (mesmo tratamento do .mc-credits, nome neutro
   porque agora aparece em todo o site, não só na Imersão). Escopado com
   .nx-footer porque `.nx-footer p` (0,1,1) ganharia de `.nx-credits` (0,1,0). */
.nx-footer .nx-credits {
  margin-top: 48px;
  max-width: 78ch;
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .38);
}
.nx-footer .nx-credits a { font-size: inherit; color: rgba(255, 255, 255, .55); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.nx-footer .nx-credits a:hover { color: var(--white); border-color: rgba(255, 255, 255, .5); }
.nx-credits + .nx-footer-bottom { margin-top: 24px; }
