/* Imperial Representações — versão de produção
   Reconstrução técnica em HTML/CSS/JS puro do design aprovado no Claude Design.
   Compartilhado entre index.html e trabalhe-conosco.html. */

:root {
  --color-navy: #0C1840;
  --color-white: #FFFFFF;
  --color-ink: oklch(0.22 0.03 262);
  --color-muted: oklch(0.5 0.02 262);
  --color-border: oklch(0.9 0.01 262);
  --color-surface: oklch(0.97 0.006 262);

  /* Pendente: substituir por arquivos de fonte locais (Archivo / Public Sans)
     após verificação de licença. Fallbacks provisórios, não ajustados finamente. */
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Public Sans', sans-serif;

  --breakpoint-mobile: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  font-family: var(--font-body);
}

a {
  color: var(--color-navy);
}

a:hover {
  color: #24356e;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-cta {
  display: none;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1.5px solid var(--color-navy);
  border-radius: 2px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  display: block;
}

@media (min-width: 860px) {
  .site-header { height: 88px; }
  .header-inner { padding: 0 40px; }
  .logo-img { height: 46px; }
  .main-nav { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger-btn { display: none; }
}

/* ==========================================================================
   Menu mobile (overlay)
   ========================================================================== */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 100;
  flex-direction: column;
  padding: 24px 24px 40px;
  overflow-y: auto;
}

.mobile-overlay.is-open {
  display: flex;
}

.mobile-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-overlay-logo {
  height: 38px;
  width: auto;
}

.mobile-close-btn {
  border: none;
  background: none;
  color: var(--color-white);
  font-size: 22px;
  cursor: pointer;
}

.mobile-overlay-link {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-overlay-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  padding: 88px 20px 60px;
}

.hero-watermark {
  position: absolute;
  top: -30px;
  right: -70px;
  width: 230px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-headline {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 0 24px 0;
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 0 18px 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 860px) {
  .hero { padding: 140px 48px 120px; }
  .hero-watermark { top: -70px; right: -30px; width: 400px; }
  .hero-headline { font-size: 62px; }
  .hero-subheadline { font-size: 24px; }
}

/* ==========================================================================
   Textos compartilhados (eyebrow, heading, body)
   ========================================================================== */

.eyebrow-dark,
.eyebrow-light {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dark { color: var(--color-navy); }
.eyebrow-light { color: rgba(255, 255, 255, 0.68); }

.heading-2-dark {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
  color: var(--color-ink);
  font-size: 28px;
}

.body-text {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 18px 0;
}

.divider-dash {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

@media (min-width: 860px) {
  .heading-2-dark { font-size: 38px; }
  .body-text { font-size: 17px; }
}

/* ==========================================================================
   Quem Somos
   ========================================================================== */

.quem-somos {
  background: var(--color-white);
  padding: 56px 16px;
}

.quem-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 20px;
}

.quem-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quem-left {
  display: flex;
  flex-direction: column;
}

.attr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.attr-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.attr-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.attr-label {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.attr-desc {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 860px) {
  .quem-somos { padding: 110px 48px; }
  .quem-card { padding: 48px 56px; }
  .quem-grid { flex-direction: row; gap: 56px; }
  .quem-left { flex: 0 0 36%; }
  .attr-grid { flex: 1 1 64%; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .attr-card { padding: 24px; }
}

/* ==========================================================================
   Como Atuamos (Diferença)
   ========================================================================== */

.diferenca-section {
  background: var(--color-white);
  padding: 56px 16px;
}

.diff-split {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.diff-left-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.diff-watermark {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 180px;
  opacity: 0.12;
  pointer-events: none;
}

.diff-headline {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  margin: 4px 0 0 0;
  position: relative;
  z-index: 1;
}

.diff-left-text {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 340px;
}

.diff-right-panel {
  background: var(--color-surface);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.flow-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
}

.flow-node-label {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.flow-arrow {
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 18px;
  transform: rotate(90deg);
}

.flow-node-main {
  background: var(--color-navy);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-logo {
  height: 26px;
  width: auto;
}

.flow-node-main-label {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.diff-card-wide,
.diff-card-third {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.diff-card-title {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.diff-card-dash {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-border);
}

.diff-card-desc {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 860px) {
  .diferenca-section { padding: 100px 48px; }
  .diff-split { grid-template-columns: minmax(280px, 30%) 1fr; }
  .diff-left-panel { padding: 48px 36px; }
  .diff-watermark { left: -30px; bottom: -40px; width: 220px; }
  .diff-headline { font-size: clamp(22px, 2.3vw, 32px); }
  .diff-right-panel { padding: 36px clamp(20px, 3vw, 40px); gap: 28px; }
  .flow-card { flex-direction: row; padding: 18px 22px; gap: 16px; }
  .flow-node { padding: 8px 6px; }
  .flow-node-label { font-size: 15px; }
  .flow-arrow { transform: none; }
  .flow-node-main { padding: 14px 32px; }
  .flow-node-main-label { font-size: 18px; }
  .diff-grid { grid-template-columns: repeat(6, 1fr); }
  .diff-card-wide { grid-column: span 3; }
  .diff-card-third { grid-column: span 2; }
  .diff-card-wide,
  .diff-card-third { padding: 24px 20px; }
  .diff-card-title { font-size: 17px; }
  .diff-card-desc { font-size: 14px; }
}

/* ==========================================================================
   Localização
   ========================================================================== */

.loc-section {
  background: var(--color-navy);
  padding: 64px 20px;
}

.loc-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.loc-card {
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loc-head-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.loc-pin-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.heading-2-light {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
  color: var(--color-white);
  font-size: 22px;
  white-space: nowrap;
}

.loc-address {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 14px 0 20px 0;
}

.loc-divider {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 4px 0 20px 0;
}

.loc-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.loc-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-contact-text {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.loc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  width: fit-content;
}

.loc-graphic-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 280px;
  width: 100%;
}

.loc-map-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 860px) {
  .loc-section { padding: 110px 48px; }
  .loc-inner { flex-direction: row; gap: 56px; }
  .loc-card { flex: 1 1 40%; padding: 40px 40px; }
  .heading-2-light { font-size: clamp(20px, 2.1vw, 32px); }
  .loc-graphic-wrap { flex: 1 1 60%; height: 460px; }
}

/* ==========================================================================
   Faixa fotográfica (expedição)
   ========================================================================== */

.faixa-section {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.faixa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .faixa-section { height: 440px; }
}

/* ==========================================================================
   Para Indústrias
   ========================================================================== */

.ind-section {
  background: var(--color-navy);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.ind-watermark {
  position: absolute;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  height: 320px;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.ind-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.ind-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.ind-headline {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin: 4px 0 0 0;
  max-width: 640px;
}

.ind-intro {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  margin: 4px 0 0 0;
  max-width: 560px;
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 24px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}

.ind-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-bottom: 24px;
}

.ind-flow-label {
  color: #8b9bd6;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ind-flow-line {
  position: relative;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
}

.ind-flow-arrow {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 16px;
  height: 16px;
  transform: translateX(-50%) rotate(90deg);
}

.ind-flow-symbol {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.ind-flow-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ind-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ind-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ind-benefit-num-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.ind-benefit-num-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1.5px dotted rgba(139, 155, 214, 0.4);
  transform: translateY(-50%);
}

.ind-benefit-num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #24356e;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-benefit-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ind-benefit-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}

.ind-benefit-dash {
  display: block;
  width: 20px;
  height: 2px;
  background: #8b9bd6;
  margin: 8px 0;
}

.ind-benefit-desc {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 260px;
}

@media (min-width: 860px) {
  .ind-section { padding: 48px 56px 56px; }
  .ind-watermark { right: -80px; height: 560px; }
  .ind-top { margin-bottom: 40px; }
  .ind-headline { font-size: 38px; }
  .ind-intro { font-size: 16px; }

  .ind-flow { flex-direction: row; justify-content: center; gap: 24px; padding: 0; margin-bottom: 32px; }
  .ind-flow-label { font-size: 15px; }
  .ind-flow-line { width: auto; flex: 1 1 auto; max-width: 220px; height: 1px; }
  .ind-flow-arrow { left: auto; bottom: auto; top: 50%; right: -3px; transform: translateY(-50%); }
  .ind-flow-symbol { width: 92px; height: 92px; padding: 20px; }

  .ind-benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .ind-benefit-desc { max-width: none; }
}

/* ==========================================================================
   Para Clientes
   ========================================================================== */

.cli-section {
  background: var(--color-white);
  padding: 64px 20px;
}

.cli-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cli-head-row {
  margin-bottom: 36px;
  max-width: 680px;
}

.cli-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}

.cli-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cli-photo-wrap {
  width: 100%;
  height: 265px;
  overflow: hidden;
}

.cli-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.cli-card-body {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cli-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cli-title {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.cli-desc {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.cli-cta-wrap {
  display: flex;
  justify-content: flex-start;
}

.cli-cta {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border: 1.5px solid var(--color-navy);
  border-radius: 2px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 860px) {
  .cli-section { padding: 120px 48px; }
  .cli-head-row { margin-bottom: 64px; }
  .cli-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 64px; }
  .cli-photo-wrap { height: 193px; }
  .cli-photo--varejistas { object-position: center 36%; }
  .cli-card-body { padding: 18px 16px; gap: 10px; }
  .cli-icon-wrap { width: 40px; height: 40px; }
  .cli-title { font-size: 17px; }
  .cli-desc { font-size: 13.5px; line-height: 1.55; }
  .cli-card:hover .cli-photo { transform: scale(1.03); }
}

/* ==========================================================================
   Marcas Representadas
   ========================================================================== */

.brands-section {
  background: var(--color-white);
  padding: 64px 20px;
  border-top: 1px solid var(--color-border);
}

.brands-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.brands-head-row {
  margin-bottom: 32px;
  max-width: 640px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.brand-tile {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: var(--color-white);
}

.brand-cta-tile {
  grid-column: 1 / -1;
  border-radius: 2px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 22px;
  background: var(--color-navy);
}

.brand-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-cta-plus {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
}

.brand-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 14px;
}

.brand-cta-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

@media (min-width: 860px) {
  .brands-section { padding: 120px 48px; }
  .brands-head-row { margin-bottom: 48px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-tile { height: 124px; }
  .brand-cta-tile { flex-direction: row; align-items: center; padding: 32px 44px; }
  .brand-cta-plus { font-size: 21px; }
}

/* ==========================================================================
   Fechamento institucional
   ========================================================================== */

.close-section {
  background: var(--color-navy);
  padding: 44px 20px;
}

.close-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.close-mark {
  height: 38px;
  width: auto;
}

.close-headline {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  margin: 0;
}

.close-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  width: 100%;
}

.close-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.close-cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 860px) {
  .close-section { padding: 64px 48px; }
  .close-mark { height: 50px; }
  .close-headline { font-size: 36px; }
  .close-cta-row { flex-direction: row; width: auto; }
}

/* ==========================================================================
   Contato
   ========================================================================== */

.contact-section {
  background: var(--color-white);
  padding: 64px 20px;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-col {
  flex: 1 1 auto;
}

.contact-photo-col {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

.contact-item {
  border-top: 2px solid var(--color-navy);
  padding-top: 18px;
}

.contact-icon-wrap {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-label {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.contact-value {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.contact-value-text {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  display: block;
  line-height: 1.5;
}

.instagram-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 860px) {
  .contact-section { padding: 120px 48px; }
  .contact-split { flex-direction: row; align-items: stretch; gap: 56px; }
  .contact-info-col { flex: 0 0 52%; }
  .contact-photo-col { flex: 1 1 auto; height: auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--color-navy);
  padding: 56px 20px 28px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/footer-industrial.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 64, 0.92);
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: none;
  width: 100%;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-link-text {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: var(--font-body);
}

.footer-legal-row {
  display: flex;
  gap: 18px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
}

@media (min-width: 860px) {
  .site-footer { padding: 88px 48px 32px; }
  .footer-top { flex-direction: row; gap: 60px; padding-bottom: 56px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); max-width: 640px; }
  .footer-bottom { flex-direction: row; }
}

/* ==========================================================================
   Botão flutuante do WhatsApp
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(12, 24, 64, 0.35);
  z-index: 80;
  text-decoration: none;
}

@media (min-width: 860px) {
  .whatsapp-fab { bottom: 26px; right: 26px; width: 58px; height: 58px; }
}

/* ==========================================================================
   Trabalhe Conosco — hero interna e formulário
   ========================================================================== */

.page-hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  padding: 64px 20px 48px;
}

.page-hero-watermark {
  position: absolute;
  top: -30px;
  right: -70px;
  width: 220px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.page-headline {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px 0;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.form-section {
  background: var(--color-surface);
  padding: 48px 20px 64px;
}

.form-inner {
  max-width: 820px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-border);
}

.field-full {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-half {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.field-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-white);
  outline: none;
  font-family: var(--font-body);
}

.field-textarea {
  width: 100%;
  height: auto;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-white);
  outline: none;
  resize: vertical;
  font-family: var(--font-body);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: oklch(0.65 0.01 262);
}

.submit-btn {
  width: 100%;
  height: 54px;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.submit-note {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}

.privacy-box {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px dashed var(--color-border);
}

.privacy-text {
  font-family: monospace;
  font-size: 12px;
  color: var(--color-muted);
  margin: 0 0 8px 0;
}

.privacy-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-navy);
  text-decoration: none;
}

@media (min-width: 860px) {
  .page-hero { padding: 96px 48px 80px; }
  .page-hero-watermark { top: -60px; right: -30px; width: 340px; }
  .page-headline { font-size: 48px; }
  .page-hero-sub { font-size: 17px; }
  .form-section { padding: 80px 48px 100px; }
  .form-grid { grid-template-columns: 1fr 1fr; padding: 40px; }
  .field-full { grid-column: 1 / 3; }
}

/* ==========================================================================
   Página 404
   ========================================================================== */

.notfound-section {
  background: var(--color-navy);
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.notfound-watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  height: 420px;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.notfound-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.notfound-code {
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
}

.notfound-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  margin: 0;
}

.notfound-text {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.notfound-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}

@media (min-width: 860px) {
  .notfound-code { font-size: 140px; }
  .notfound-title { font-size: 34px; }
  .notfound-text { font-size: 16px; }
  .notfound-watermark { height: 640px; right: -60px; }
}
