/* ============================================================
   EJETEC — Landing Page
   Stylesheet seguindo o Design System oficial
   Acabamento: "premium discreto" — refino sobre os mesmos tokens
   ============================================================ */

/* ---------- VARIÁVEIS ---------- */
:root {
  /* Cores principais */
  --orange:       #E8711A;
  --orange-dark:  #C55D12;
  --orange-light: #F59D4F;
  --navy:         #1A2744;
  --navy-dark:    #111C32;
  --navy-light:   #243354;
  --white:        #FFFFFF;

  /* Suporte */
  --gray-100:     #F5F6F8;
  --gray-200:     #E2E5EA;
  --gray-400:     #8A92A1;
  --gray-700:     #3D4555;
  --gray-900:     #1C2130;
  --success:      #22A960;
  --error:        #D93025;

  /* Sombras */
  --shadow-sm:     0 2px 8px rgba(26, 39, 68, 0.06);
  --shadow-md:     0 8px 24px rgba(26, 39, 68, 0.10);
  --shadow-lg:     0 12px 40px rgba(26, 39, 68, 0.16);
  --shadow-orange: 0 0 0 3px rgba(232, 113, 26, 0.15);

  /* Espaçamento (sistema de 8px) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-section: 72px; /* mobile-first; desktop = 112px */

  /* Layout */
  --container-max: 1200px;
  --text-max: 640px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-full: 50%;

  /* Tipografia */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-heading: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Easing (acabamento) */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1100;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Acessível para leitores de tela, invisível na tela (labels embutidas) */
.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;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--sp-3);
}

/* ---------- TIPOGRAFIA UTILITÁRIA ---------- */
h1, h2, h3 { color: var(--navy); }

/* Supertítulo / eyebrow — padrão único: laranja, thin, bem espaçado */
.supertitle {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-3);
}
/* modificadores de cor para fundos específicos, quando necessário */
.supertitle--orange { color: var(--orange); }
.supertitle--muted  { color: var(--gray-400); }

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

.text-orange { color: var(--orange); }
.text-white  { color: var(--white) !important; }
.text-light  { color: rgba(255, 255, 255, 0.78); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 14px/1 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  min-height: 48px;
  padding: 16px 30px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}
@media (min-width: 768px) { .btn { font-size: 15px; } }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 113, 26, 0.25);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 113, 26, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 14.5px 30px;
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp { background: var(--success); color: var(--white); box-shadow: 0 4px 14px rgba(34, 169, 96, 0.25); }
.btn-whatsapp:hover { background: #1C8F4F; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34, 169, 96, 0.32); }
.btn-whatsapp svg { flex-shrink: 0; }

.btn-sm { min-height: 44px; padding: 12px 22px; }
.btn-block { width: 100%; }

/* WhatsApp flutuante */
.btn-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  z-index: 1000;
  transition: transform 0.25s var(--ease);
  animation: pulse 8s ease-in-out infinite;
}
.btn-whatsapp-float:hover { transform: scale(1.08); animation-play-state: paused; }

@keyframes pulse {
  0%, 92%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(34,169,96,0.45); }
  96% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 14px rgba(34,169,96,0); }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  background: transparent; /* estático: usa o degradê do próprio hero */
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(17, 28, 50, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  transition: padding 0.35s var(--ease);
}
.navbar.is-scrolled .navbar__inner { padding-block: 10px; }
.navbar__logo img { height: 60px; width: auto; transition: height 0.35s var(--ease); }
.navbar.is-scrolled .navbar__logo img { height: 50px; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.navbar__menu > li > a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.navbar__menu > li > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.navbar__menu > li > a:not(.btn):hover { color: var(--white); }
.navbar__menu > li > a:not(.btn):hover::after { width: 100%; }

.navbar__toggle {
  display: none;
  position: relative;
  z-index: 20; /* acima do painel do menu para o (X) ser clicável */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 96px;
  overflow: hidden;
  background: var(--navy-dark);
}
/* Fundo: ao colocar assets/hero-bg.jpg (foto de planta industrial),
   ela aparece automaticamente; sem ela, fica o degradê de aço como fallback. */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0e1a33;
  background-image:
    url("assets/hero-bg.jpg"),
    linear-gradient(120deg, #0c1428 0%, #16243f 55%, #21345a 100%);
  background-size: cover, cover;
  background-position: center right, center;
  background-repeat: no-repeat, no-repeat;
}
/* Overlay horizontal: opaco à esquerda (texto) -> transparente à direita (imagem) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,26,51,0.78) 0%, rgba(14,26,51,0.10) 18%, rgba(14,26,51,0) 30%),
    linear-gradient(90deg,
      rgba(14,26,51,0.97) 0%,
      rgba(14,26,51,0.93) 28%,
      rgba(14,26,51,0.62) 60%,
      rgba(14,26,51,0.20) 100%);
}
/* Textura halftone com recorte em onda na base (ref. print 2) */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  background: url("assets/halftone-waves.svg") bottom center / 100% auto no-repeat;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: var(--sp-6);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

/* Entrada suave do conteúdo do hero */
.hero__content > * { animation: heroIn 0.7s var(--ease) backwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.14s; }
.hero__content > *:nth-child(3) { animation-delay: 0.23s; }
.hero__content > *:nth-child(4) { animation-delay: 0.32s; }
.hero__content > *:nth-child(5) { animation-delay: 0.41s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Indicador de scroll (mouse) — canto inferior direito, como na ref. */
.hero__scroll {
  position: absolute;
  right: var(--sp-4);
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s var(--ease);
}
.hero__scroll:hover { color: var(--white); }
.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.hero__scroll-mouse::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 70% { opacity: 1; transform: translate(-50%, 9px); } 100% { opacity: 0; transform: translate(-50%, 9px); } }
.hero__scroll-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media (max-width: 991px) { .hero__scroll { display: none; } }

/* ---------- SELOS ---------- */
.selos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
}
.selo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font: 500 13px/1.4 var(--font-body);
}
.selos--light {
  gap: var(--sp-2) var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.selos--light .selo { color: rgba(255, 255, 255, 0.82); }
.selos--dark .selo  { color: var(--gray-700); }
.selo__check { color: var(--orange); font-size: 15px; font-weight: 700; }

/* ---------- SEÇÕES ---------- */
.section { padding-block: var(--sp-section); }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-100); }
.section--dark  { background: var(--navy); }

.section__head { margin-bottom: var(--sp-6); max-width: 760px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lead {
  font-size: 16px;
  color: var(--gray-700);
  max-width: var(--text-max);
  margin-top: var(--sp-2);
}
.section__lead--center { margin-inline: auto; }

/* ---------- GRID ---------- */
.grid { display: grid; gap: var(--sp-3); }
.grid--3 { grid-template-columns: 1fr; }

/* ---------- SHOWCASE DE SERVIÇOS (claro, premium) ---------- */
/* Mobile-first: acordeão (conteúdo dentro de cada item) */
.showcase {
  position: relative;
  margin-top: var(--sp-6);
}
/* Lista = cards separados com espaçamento */
.showcase__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.showcase__item:hover { box-shadow: var(--shadow-md); }
.showcase__item.is-active { box-shadow: var(--shadow-md); }

.showcase__tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--gray-700);
  transition: color 0.25s var(--ease);
}
.showcase__tab:hover, .showcase__tab.is-active { color: var(--navy); }
.showcase__tab.is-active { font-weight: 600; }
.showcase__tab-label { flex: 1; }

/* Toggle: + (inativo) / seta (ativo) */
.showcase__toggle {
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease);
}
.showcase__ico {
  grid-area: 1 / 1;
  width: 15px; height: 15px;
  transition: opacity 0.2s var(--ease);
}
.showcase__ico--plus { color: var(--gray-400); }
.showcase__ico--arrow { color: var(--orange); opacity: 0; }
.showcase__tab:hover .showcase__toggle { border-color: var(--orange-light); }
.showcase__tab.is-active .showcase__toggle { border-color: var(--orange); }
.showcase__tab.is-active .showcase__ico--plus { opacity: 0; }
.showcase__tab.is-active .showcase__ico--arrow { opacity: 1; }

/* Barra de progresso na borda inferior do item ativo */
.showcase__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: transparent;
  overflow: hidden;
}
.showcase__tab.is-active .showcase__bar { background: rgba(232, 113, 26, 0.18); }
.showcase__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
}

/* CTA abaixo da seção */
.showcase__cta {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
}
.showcase__cta-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
}

/* Painel = foto de fundo + overlay navy (linguagem do hero) */
.showcase__panel {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 300px;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-dark);
  animation: panelIn 0.4s var(--ease);
}
.showcase__panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Imagem preenchendo o painel */
.showcase__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  background: var(--navy-dark);
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Overlay navy (eco do hero) */
.showcase__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,
    rgba(17, 28, 50, 0.96) 0%,
    rgba(17, 28, 50, 0.82) 26%,
    rgba(17, 28, 50, 0.40) 55%,
    rgba(17, 28, 50, 0.08) 100%);
}

/* Conteúdo sobre a foto: ícone à esquerda do título, descrição abaixo */
.showcase__body {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 12px;
}
.showcase__eyebrow { margin: 3px 0 0; color: var(--orange); line-height: 0; }
.showcase__eyebrow-ico { width: 24px; height: 24px; }
.showcase__body h3 {
  font-size: 20px;
  color: var(--white);
  margin: 0;
}
.showcase__body > p:not(.showcase__eyebrow) {
  grid-column: 1 / -1;
  margin-top: var(--sp-2);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- LOGO BAR (CLIENTES) ---------- */
.logo-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.logo-bar__item {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bar__item img {
  max-height: 180px;
  max-width: 100%;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.logo-bar__item img:hover { filter: grayscale(0%); opacity: 1; }

/* ---------- DIFERENCIAIS ---------- */
.diferenciais { position: relative; overflow: hidden; }
.diferenciais__bg {
  position: absolute;
  inset: 0;
  background: url("assets/pt-04-diferenciais.jpg") center / cover no-repeat;
}
.diferenciais__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,39,68,0.86) 0%, rgba(17,28,50,0.95) 100%);
}
.diferenciais__content { position: relative; z-index: 2; }
.diferenciais .section__lead { color: rgba(255, 255, 255, 0.78); }

.card-diferencial {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.card-diferencial:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(232, 113, 26, 0.6);
  transform: translateY(-4px);
}
.card-diferencial .icon {
  width: 46px; height: 46px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  color: var(--orange);
  margin-bottom: var(--sp-2);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.card-diferencial:hover .icon { background: var(--orange); color: var(--white); }
.card-diferencial h3 { font-size: 18px; color: var(--white); margin-bottom: var(--sp-1); }
.card-diferencial p  { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.76); }

/* ---------- SOBRE ---------- */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

/* Coluna esquerda: narrativa */
.sobre__intro h2 { margin-bottom: var(--sp-3); }
.sobre__intro > p:not(.supertitle) { margin-top: var(--sp-3); max-width: var(--text-max); }

/* Coluna direita: três pilares empilhados com filete laranja */
.sobre__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.sobre__pillar {
  border-left: 3px solid var(--orange);
  padding-left: var(--sp-3);
}
.sobre__pillar h3 { color: var(--navy); margin-bottom: var(--sp-1); }
.sobre__pillar p  { font-size: 15px; color: var(--gray-700); }

/* Valores como chips (formato próprio — não é prosa) */
.sobre__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-1);
}
.sobre__values li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 7px 14px;
}

/* ---------- CONTATO ---------- */
.contato__head { margin-bottom: var(--sp-6); }

/* Card do formulário — branco sobre o cinza, profundidade suave */
.contato__card {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  padding: var(--sp-4);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.form__row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form__row .form-group { margin-bottom: 0; }

.form-input {
  width: 100%;
  padding: 15px 18px;
  font: 400 16px/1.4 var(--font-body);
  color: var(--gray-900);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.form-input.error {
  background: var(--white);
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }

.form-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--error);
}
.form-hp { position: absolute; left: -9999px; }

/* ── Navbar sólida em páginas sem hero ────────────────────── */
.page-policy .navbar { background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.page-policy .policy  { padding-top: calc(92px + var(--sp-4)); } /* navbar (60+16+16) + 32px folga */

/* ── Política de privacidade ───────────────────────────────── */
.policy { padding: var(--sp-8) 0 var(--sp-8); }
.policy__content { max-width: 720px; margin: 0 auto; }
.policy__content h1 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.policy__updated { font-size: 13px; color: var(--gray-400); margin-bottom: var(--sp-5); }
.policy__content h2 { font-size: 17px; font-weight: 600; color: var(--navy); margin: var(--sp-5) 0 10px; }
.policy__content p,
.policy__content li { font-size: 15px; line-height: 1.75; color: var(--gray-600); margin-bottom: 10px; }
.policy__content ul { padding-left: 20px; margin-bottom: 12px; }
.policy__content a { color: var(--orange); }
.policy__content a:hover { text-decoration: underline; }
.form-privacy {
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
}
.form-privacy a { color: inherit; text-decoration: underline; }
.form-success {
  margin-top: var(--sp-2);
  padding: 12px 16px;
  background: rgba(34, 169, 96, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius-sm);
  color: #157a44;
  font-size: 14px;
  font-weight: 500;
}

/* Faixa de canais diretos (eco editorial dos ícones de contato) */
.contato__channels { margin-top: var(--sp-6); text-align: left; }
.contato__channels-intro {
  font: 300 12px/1.4 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-400);
  margin-bottom: var(--sp-3);
}
.contato__channels-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
}
.channel {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 20px;
  border-radius: 12px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.channel:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.channel__ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--orange);
}
.channel__meta { display: flex; flex-direction: column; text-align: left; }
.channel__label {
  font: 600 11px/1 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
}
.channel__value {
  font: 500 17px/1.3 var(--font-heading);
  color: var(--navy);
  margin-top: 4px;
}

/* ---------- RODAPÉ ---------- */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.78); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-8);
}
.footer__brand img { height: 65px; width: auto; margin-bottom: var(--sp-3); }
.footer__tagline { max-width: 320px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); }

.footer__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 15px; color: rgba(255,255,255,0.78); transition: color 0.25s var(--ease), padding-left 0.25s var(--ease); }
.footer__links a:hover { color: var(--orange); padding-left: 5px; }

.footer__contact li { margin-bottom: 13px; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.82); }
.footer__contact span { display: block; color: var(--white); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.footer__contact li:last-child { margin-top: var(--sp-3); }
.footer__contact a:hover { color: var(--orange); }
.footer__phone-item { display: flex; align-items: center; gap: 8px; }
.footer__phone-item svg { flex-shrink: 0; opacity: 0.6; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--sp-3);
}
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.footer__bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.footer__bottom a { color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color 0.25s var(--ease); }
.footer__bottom a:hover { color: var(--orange); }
.footer__social { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--sp-2); color: rgba(255,255,255,0.78); font-size: 14px; transition: color 0.25s var(--ease); }
.footer__social:hover { color: var(--orange); }

/* ---------- ANIMAÇÕES SUTIS (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger leve dentro das grids */
.grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.grid .reveal:nth-child(4) { transition-delay: 0.06s; }
.grid .reveal:nth-child(5) { transition-delay: 0.12s; }
.grid .reveal:nth-child(6) { transition-delay: 0.18s; }

/* ============================================================
   BREAKPOINT — TABLET (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  body { font-size: 16px; }
  :root { --sp-section: 112px; }

  h2 { font-size: 40px; }
  h3 { font-size: 24px; }
  .supertitle { font-size: 13px; letter-spacing: 4px; }

  .hero__title { font-size: 60px; }
  .hero__subtitle { font-size: 18px; }
  .hero__content { max-width: 660px; }

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

  /* Showcase desktop: cards à esquerda (maiores) + palco à direita */
  .showcase { --list-w: 460px; --gap: 36px; }
  .showcase__list { width: var(--list-w); }
  .showcase__item { overflow: visible; } /* não cortar o palco absoluto */
  .showcase__tab { padding: 18px 22px; font-size: 18px; }

  /* Palco: painel absoluto preenchendo toda a altura da lista */
  .showcase__panel {
    position: absolute;
    top: 0; bottom: 0;
    left: calc(var(--list-w) + var(--gap));
    right: 0;
    margin: 0;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .showcase__body { padding: 40px; }
  .showcase__eyebrow-ico { width: 30px; height: 30px; }
  .showcase__body h3 { font-size: 30px; }
  .showcase__body > p:not(.showcase__eyebrow) { font-size: 15px; max-width: 68ch; }

  .logo-bar { grid-template-columns: repeat(3, 1fr); }
  .logo-bar__item { font-size: 22px; }

  .sobre__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--sp-8);
    align-items: center;
  }
  /* Aproxima as alturas das duas colunas: aperta os pilares à direita... */
  .sobre__pillars { gap: var(--sp-3); }
  /* ...e abre um pouco mais o respiro entre os elementos da esquerda */
  .sobre__intro h2 { margin-bottom: var(--sp-4); }
  .sobre__intro > p:not(.supertitle) { margin-top: var(--sp-4); line-height: 1.75; }
  .contato__card { padding: var(--sp-6); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .contato__channels { text-align: center; }
  .contato__channels-grid { flex-direction: row; justify-content: center; align-items: center; gap: 0; }
  .contato__channels-grid .channel:not(:first-child) { border-left: 1px solid var(--gray-200); border-radius: 0; }
  .contato__channels-grid .channel:not(:first-child):hover { border-radius: 12px; }

  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col { padding-top: var(--sp-1); }
  nav.footer__col { justify-self: center; }
  div.footer__col { justify-self: end; }
}

/* ============================================================
   BREAKPOINT — DESKTOP (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hero__title { font-size: 70px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .logo-bar { grid-template-columns: repeat(6, 1fr); }
  .logo-bar__item { font-size: 18px; padding: 16px 8px; }
  .logo-bar__item:not(:last-child) { border-right: 1px solid var(--gray-200); }
}

/* ============================================================
   MOBILE — Menu off-canvas (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  /* Selos do hero: um embaixo do outro no mobile */
  .selos { flex-direction: column; }

  /* No mobile o texto ocupa a largura toda: overlay mais uniforme */
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(14,26,51,0.70) 0%, rgba(14,26,51,0.88) 100%);
  }

  /* Showcase mobile: barra de progresso abaixo da imagem (base do card) */
  .showcase__item { position: relative; }
  .showcase__tab { position: static; }
  .showcase__bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
  /* Arrow aponta para baixo no acordeão mobile */
  .showcase__tab.is-active .showcase__ico--arrow { transform: rotate(90deg); }
  /* Fontes um pouco menores sobre a imagem */
  .showcase__body h3 { font-size: 18px; }
  .showcase__body > p:not(.showcase__eyebrow) { font-size: 14px; }
  .showcase__eyebrow-ico { width: 22px; height: 22px; }

  /* Logo no mobile fica no tamanho "compacto" (igual ao do scroll) */
  .navbar__logo img,
  .navbar.is-scrolled .navbar__logo img { height: 53px; padding-block: 5px; box-sizing: content-box; }

  .footer__bottom-inner { flex-direction: column; text-align: center; gap: var(--sp-2); }
  .footer__brand img { height: 60px; }

  .navbar__toggle { display: flex; }
  .navbar__menu {
    position: fixed;
    top: 0; right: 0;
    z-index: 10; /* abaixo do botão (X) */
    height: 100vh;
    height: 100dvh;
    width: min(80vw, 330px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--sp-2);
    padding: 100px var(--sp-4) var(--sp-4);
    background: var(--navy-dark);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .navbar__menu.is-open { transform: translateX(0); }
  .navbar__menu > li { width: 100%; }
  .navbar__menu > li > a:not(.btn) {
    display: block;
    width: 100%;
    padding: 13px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .navbar__cta-item { margin-top: var(--sp-3); }
  .navbar__cta-item .btn { width: 100%; }
}

/* ============================================================
   ACESSIBILIDADE — reduzir movimento
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { transform: none; }
}

/* ============================================================
   ATUAÇÃO NACIONAL — texto + mapa do Brasil (fundo navy)
   ============================================================ */
.atuacao__grid { display: grid; gap: var(--sp-6); align-items: center; }

.atuacao__text h2 { color: var(--white); }
.atuacao__lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: var(--sp-3);
  line-height: 1.7;
  max-width: 27rem; /* acompanha a largura da headline (pós-quebra na vírgula) */
}

.atuacao__bases {
  list-style: none;
  margin: var(--sp-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}
.atuacao__base { position: relative; padding-left: 26px; color: var(--white); }
.atuacao__base::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 113, 26, 0.18);
}
.atuacao__base-label {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-light);
}
.atuacao__base-place { display: block; font-size: 16px; }

.atuacao__badge {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: 10px 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

/* Mapa */
.atuacao__map-wrap { position: relative; max-width: 460px; margin: 0 auto; }
.atuacao__map { position: relative; min-height: 40px; }
.atuacao__map svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.atuacao__map .uf {
  fill: rgba(255, 255, 255, 0.10);
  stroke: var(--navy-dark);
  stroke-width: 0.6;
  transition: fill 0.2s ease;
}
.atuacao__map .uf:hover { fill: rgba(255, 255, 255, 0.20); }
.atuacao__map #pr,
.atuacao__map #pe { fill: var(--orange); }
.atuacao__map #pr:hover,
.atuacao__map #pe:hover { fill: var(--orange-light); }

/* Tooltip do mapa (posicionado via JS) */
.atuacao__tip {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -145%);
  background: var(--navy-dark);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.atuacao__tip[hidden] { display: none; }

/* Legenda — ancorada no espaço vazio a sudoeste do mapa (perto de PR/SC) */
.atuacao__legend {
  position: absolute;
  left: 3%;
  bottom: 8%;
  margin: 0;
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.atuacao__legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 6px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .atuacao__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); }
  .atuacao__map-wrap { max-width: none; margin: 0; }
}
