/* ============================================================
   ZETECH · Landing Page
   Premium tech style · 16 seções
   Paleta: Azul #5EC1EE · Branco #F0F0F0
   ============================================================ */

:root {
  /* Brand */
  --blue: #5EC1EE;
  --blue-2: #2BAFEB;
  --blue-3: #1493D6;
  --blue-soft: rgba(94, 193, 238, 0.12);
  --white: #F0F0F0;

  /* Surfaces */
  --bg-dark: #0A0E1A;
  --bg-dark-2: #0E1426;
  --bg-dark-3: #161D33;
  --bg-light: #F0F0F0;
  --bg-light-2: #FFFFFF;
  --bg-light-3: #E8EBEF;

  /* Semântico */
  --bad: #E0625A;
  --bad-soft: rgba(224, 98, 90, 0.08);
  --good: #4FB87A;
  --good-soft: rgba(79, 184, 122, 0.08);

  /* Text */
  --text-dark: #0A0E1A;
  --text-mid: #404757;
  --text-light: #ECEFF5;
  --text-mid-light: #8A93A6;
  --text-muted: #5A6479;

  /* Borders */
  --border-light: rgba(10, 14, 26, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Sizing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --nav-height: 64px;
  --announce-height: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 220ms;
  --t-med: 480ms;
  --t-slow: 820ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-height) + var(--announce-height) + 16px);
}

html {
  background: #060912;
}
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on;
  /* overflow-x: clip — não quebra position: sticky (Chrome 90+, FF 81+, Safari 16+) */
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blue); color: var(--bg-dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Placeholder pill for [X] data to be confirmed */
.ph {
  display: inline-block;
  font-style: normal;
  padding: 0 6px;
  margin: 0 2px;
  border-radius: 6px;
  background: rgba(94,193,238,0.12);
  color: var(--blue);
  border: 1px dashed rgba(94,193,238,0.4);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  vertical-align: middle;
}
.ph--quote { display: inline; padding: 0; border: 0; background: transparent; color: rgba(0,0,0,0.45); font-style: italic; font-weight: 400; font-size: 1em; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity 600ms var(--ease), visibility 600ms var(--ease);
}
.page-loader.is-done { opacity: 0; visibility: hidden; }
.page-loader__logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(94,193,238,0.35));
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.03); }
}
.page-loader__bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.page-loader__bar i {
  display: block; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: loadBar 1.2s ease-in-out infinite;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================================================
   AMBIENT BG — atmosfera sui.io
   Camadas: base navy + 5 orbs azuis (blue1→blue5) + grão + vinheta
   ============================================================ */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.ambient-bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #0F1832 0%, transparent 60%),
    linear-gradient(180deg, #060912 0%, #0A0E1A 40%, #050810 100%);
}

.ambient-bg__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  filter: blur(110px);
}

/* Orb 1 — blue1: branco-azulado luminoso, topo direito */
.ambient-bg__orb--1 {
  width: 70vmax; height: 70vmax;
  background: radial-gradient(circle, rgba(180,225,255,0.35) 0%, rgba(94,193,238,0.15) 35%, transparent 70%);
  top: -22vmax; right: -18vmax;
  opacity: 0.7;
  animation: drift1 22s ease-in-out infinite;
}

/* Orb 2 — blue2: cyan principal, esquerda meia altura */
.ambient-bg__orb--2 {
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(94,193,238,0.45) 0%, transparent 70%);
  top: 25%; left: -20vmax;
  opacity: 0.55;
  animation: drift2 28s ease-in-out infinite;
}

/* Orb 3 — blue3: azul profundo, centro abaixo */
.ambient-bg__orb--3 {
  width: 75vmax; height: 75vmax;
  background: radial-gradient(circle, rgba(20,147,214,0.42) 0%, transparent 65%);
  top: 50%; left: 30%;
  opacity: 0.5;
  animation: drift3 32s ease-in-out infinite;
}

/* Orb 4 — blue4: violeta-azulado sutil, direita meio-baixo */
.ambient-bg__orb--4 {
  width: 55vmax; height: 55vmax;
  background: radial-gradient(circle, rgba(80,120,220,0.32) 0%, transparent 70%);
  bottom: 8%; right: -15vmax;
  opacity: 0.6;
  animation: drift4 26s ease-in-out infinite;
}

/* Orb 5 — blue5: ciano-claro flutuante */
.ambient-bg__orb--5 {
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle, rgba(120,210,255,0.28) 0%, transparent 70%);
  bottom: -10vmax; left: 25%;
  opacity: 0.5;
  animation: drift5 24s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-3vmax, 4vmax, 0) scale(1.08); }
}
@keyframes drift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(4vmax, -3vmax, 0) scale(1.1); }
}
@keyframes drift3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.5; }
  50%      { transform: translate3d(-5vmax, -2vmax, 0) scale(1.05); opacity: 0.6; }
}
@keyframes drift4 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-4vmax, -3vmax, 0) scale(1.06); }
}
@keyframes drift5 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(3vmax, -4vmax, 0) scale(1.08); }
}

/* Grão de filme — adiciona textura fotográfica */
.ambient-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-3%, -2%); }
  20%  { transform: translate(2%, -4%); }
  30%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, 3%); }
  50%  { transform: translate(-3%, -3%); }
  60%  { transform: translate(2%, 4%); }
  70%  { transform: translate(-4%, -2%); }
  80%  { transform: translate(3%, -3%); }
  90%  { transform: translate(-2%, 2%); }
  100% { transform: translate(0, 0); }
}

/* Vinheta — escurece bordas para sensação atmosférica */
.ambient-bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* ============================================================
   01 · ANNOUNCE BAR
   ============================================================ */
.announce {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--announce-height);
  z-index: 101;
  background: linear-gradient(90deg, var(--bg-dark), #0E1426, var(--bg-dark));
  border-bottom: 1px solid rgba(94,193,238,0.18);
  color: var(--white);
  font-size: 13px;
  display: flex; align-items: center;
}
.announce__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; width: 100%;
}
.announce__text { display: inline-flex; align-items: center; gap: 10px; }
.announce__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
.announce__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 12.5px;
  transition: gap var(--t-fast);
}
.announce__link:hover { gap: 10px; }

.announce__contacts {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.announce__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.announce__contact:hover {
  opacity: 0.85;
  transform: translateX(2px);
}
.announce__contact svg {
  color: var(--blue);
  flex-shrink: 0;
}
.announce__contact--whatsapp svg {
  color: var(--blue);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================================
   02 · NAV (SEM MENU)
   ============================================================ */
.nav {
  position: fixed;
  top: var(--announce-height);
  left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex; align-items: center;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--t-fast);
}
.nav.is-scrolled {
  background: rgba(10, 14, 26, 0.88);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav__brand img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
}
.nav__menu a {
  color: rgba(240,240,240,0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  transition: color var(--t-fast);
  padding: 6px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width var(--t-med) var(--ease);
}
.nav__menu a:hover { color: var(--white); }
.nav__menu a:hover::after { width: 100%; }

.nav__right {
  display: flex; gap: 14px; align-items: center;
}
.btn--nav { padding: 10px 18px; font-size: 13.5px; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  width: 0%; transition: width 100ms linear;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn--lg { padding: 16px 28px; font-size: 15.5px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--blue);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px -8px var(--blue);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px var(--blue);
}
.btn--primary svg { transition: transform var(--t-fast) var(--ease); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

.btn--ghost-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(240,240,240,0.22);
}
.btn--ghost-light:hover { background: rgba(240,240,240,0.08); border-color: rgba(240,240,240,0.4); }

/* ============================================================
   03 · HERO  (2 colunas com formulário inline)
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: calc(var(--announce-height) + var(--nav-height) + 32px) 0 64px;
  overflow: hidden;
}
/* Vídeo de background do hero */
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
}
.hero__tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(10,14,26,0.65) 50%, rgba(10,14,26,0.88) 100%),
    radial-gradient(800px 600px at 80% 30%, rgba(94,193,238,0.18), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.hero__lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
}
.hero__lines span {
  position: absolute; top: -10%;
  width: 1px; height: 120%;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity: 0;
  animation: scanLine 8s linear infinite;
}
.hero__lines span:nth-child(1) { left: 12%; animation-delay: 0s; }
.hero__lines span:nth-child(2) { left: 32%; animation-delay: 1.6s; }
.hero__lines span:nth-child(3) { left: 56%; animation-delay: 3.2s; }
.hero__lines span:nth-child(4) { left: 75%; animation-delay: 4.8s; }
.hero__lines span:nth-child(5) { left: 92%; animation-delay: 6.4s; }
@keyframes scanLine {
  0% { opacity: 0; transform: translateY(-30%); }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(30%); }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__credential {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(94,193,238,0.08);
  border: 1px solid rgba(94,193,238,0.22);
  color: var(--blue);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero__credential .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 28px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
  background: none;
  -webkit-background-clip: initial; background-clip: initial;
  text-shadow: 0 0 36px rgba(94,193,238,0.35);
}

.hero__lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 580px;
  color: rgba(240,240,240,0.78);
  margin-bottom: 28px;
}

/* Botões abaixo do subtítulo */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__actions .btn { letter-spacing: -0.005em; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
  color: rgba(240,240,240,0.55);
  letter-spacing: 0.005em;
}
.hero__trust .sep { color: rgba(240,240,240,0.25); }

/* Nobreak em destaque (substitui o formulário) */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}
.hero__nobreak-glow {
  position: absolute;
  inset: 5%;
  background: radial-gradient(circle at center, rgba(94,193,238,0.45), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: nobreakGlow 4s ease-in-out infinite;
}
@keyframes nobreakGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.05); }
}

/* Stack: 3 nobreaks lado a lado, alinhados na base */
.hero__nobreak-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
/* Overlap acentuado pra ficarem bem próximos como família */
.hero__nobreak--back  { margin-right: clamp(-180px, -10vw, -80px); }
.hero__nobreak--front { margin-left:  clamp(-180px, -10vw, -80px); }
.hero__nobreak {
  position: relative;
  object-fit: contain;
  height: auto;
  width: auto;
  /* Dessaturação leve esconde o ponch das logomarcas */
  filter: saturate(0.55) brightness(0.96)
          drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}
/* Esquerda — Master industrial (Double Way), tamanho médio-grande */
.hero__nobreak--back {
  max-height: 460px;
  left: clamp(24px, 3.5vw, 60px);
  margin-bottom: clamp(20px, 2.8vw, 50px);
  opacity: 1;
  filter: saturate(0.95) brightness(1.02)
          drop-shadow(0 22px 44px rgba(0,0,0,0.55));
  animation: nobreakFloat 7.5s ease-in-out infinite -1.5s;
}
/* Centro — Master EXM33, principal e mais alto */
.hero__nobreak--main {
  max-height: 600px;
  z-index: 2;
  filter: saturate(0.6) brightness(0.98)
          drop-shadow(0 30px 60px rgba(0,0,0,0.6))
          drop-shadow(0 0 36px rgba(94,193,238,0.32));
  animation: nobreakFloat 6s ease-in-out infinite;
}
/* Direita — Intelbras Linha EX, o menor (escala real proporcional) */
.hero__nobreak--front {
  max-height: 280px;
  margin-bottom: clamp(24px, 3.5vw, 60px); /* sobe um pouco em relação aos outros */
  opacity: 1;
  filter: saturate(0.95) brightness(1.02)
          drop-shadow(0 18px 36px rgba(0,0,0,0.5));
  animation: nobreakFloat 8s ease-in-out infinite -3s;
}
@keyframes nobreakFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Hero form */
.hero-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  color: var(--white);
}
.hero-form__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.hero-form__sub {
  font-size: 13.5px;
  color: rgba(240,240,240,0.6);
  margin-bottom: 22px;
}
.hero-form__alt {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 600;
  transition: transform var(--t-fast);
}
.hero-form__alt:hover { transform: translateX(3px); }
.hero-form__legal {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(240,240,240,0.42);
  line-height: 1.5;
}

/* Field (shared form styles) */
.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 12px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 12px;
}
.field span {
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(240,240,240,0.65);
}
.field span i { color: rgba(240,240,240,0.4); font-style: normal; font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit; font-size: 14.5px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235EC1EE' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 36px;
}
.field option { color: var(--bg-dark); background: var(--bg-light-2); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(240,240,240,0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(94,193,238,0.05);
  box-shadow: 0 0 0 4px rgba(94,193,238,0.1);
}

.form__success {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(94,193,238,0.08);
  border: 1px solid rgba(94,193,238,0.3);
  border-radius: 10px;
  font-size: 13.5px;
}
.form__success strong { display: block; margin-bottom: 4px; color: var(--white); }
.form__success span { color: rgba(240,240,240,0.7); }

/* ============================================================
   04 · FABRICANTES
   ============================================================ */
.fabricantes {
  background: var(--bg-light);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  position: relative; z-index: 1;
}
.fabricantes .kicker { display: inline-block; }

.marquee {
  position: relative;
  margin: 36px 0 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  width: max-content;
  animation: marqueeScroll 46s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.marquee__item img {
  max-height: 90px;
  max-width: 240px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.65) contrast(1.05);
  opacity: 0.78;
  transition: filter 320ms var(--ease), opacity 320ms var(--ease), transform 320ms var(--ease);
}
/* RagTech */
.marquee__item img[src*="ragtech"] {
  max-height: 130px;
  max-width: 320px;
}
/* Engetron */
.marquee__item img[src*="engetron"] {
  max-height: 140px;
  max-width: 350px;
}
.marquee__item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fabricantes__note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (max-width: 760px) {
  .marquee__item { min-height: 80px; }
  .marquee__item img { max-height: 64px; max-width: 170px; }
  .marquee__item img[src*="ragtech"] { max-height: 92px; max-width: 220px; }
  .marquee__track { gap: 44px; animation-duration: 36s; }
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  max-width: 920px;
  margin-bottom: 64px;
}
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: ''; position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--blue-3);
}
.kicker--alert { color: var(--bad); }
.kicker--alert::before { background: var(--bad); }

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin-bottom: 22px;
}
h2 em {
  font-style: normal;
  color: var(--blue-3);
}

.section-head p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 720px;
}

.section-head--dark { color: var(--white); }
.section-head--dark .kicker { color: var(--blue); }
.section-head--dark .kicker::before { background: var(--blue); }
.section-head--dark h2 em { color: var(--blue); }
.section-head--dark p { color: rgba(240,240,240,0.7); }

/* ============================================================
   05 · BIG NUMBERS
   ============================================================ */
.numbers {
  background: var(--bg-light);
  padding: 100px 0 120px;
}
.numbers__title {
  text-align: center;
  margin-bottom: 56px;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  max-width: 900px;
  margin: 0 auto;
}
.num-cell {
  padding: 40px 20px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light-2);
  transition: background var(--t-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.num-cell:hover { background: rgba(94,193,238,0.04); }
.num-cell strong {
  display: block;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.num-cell strong span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0;
  margin-left: 0;
  margin-top: 4px;
}
.num-cell > span {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 4px;
}
.num-cell--accent { background: var(--bg-dark); color: var(--white); text-align: center; }
.num-cell--accent:hover { background: var(--bg-dark); }
.num-cell--accent strong { color: var(--blue); }
.num-cell--accent strong span { color: rgba(240,240,240,0.6); }
.num-cell--accent > span { color: rgba(240,240,240,0.55); text-align: center; }

/* ============================================================
   06 · CUSTO DA PARADA
   ============================================================ */
.custo {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 140px 0;
  overflow: hidden;
}
/* Vídeo de background do "custo da parada" — cria tensão */
.custo__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  filter: grayscale(0.4) contrast(1.1) saturate(0.8);
  pointer-events: none;
}
.custo__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.7) 100%),
    radial-gradient(900px 600px at 50% 50%, rgba(224,98,90,0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.custo__container {
  position: relative; z-index: 2;
  max-width: 900px;
}
.custo h2 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.custo h2 em { color: var(--bad); }
.custo__lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: rgba(240,240,240,0.78);
  margin-bottom: 40px;
}
.custo__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.custo__list li {
  padding: 18px 22px 18px 56px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,98,90,0.18);
  border-radius: var(--radius);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(240,240,240,0.85);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.custo__list li:hover {
  background: var(--bad-soft);
  border-color: rgba(224,98,90,0.4);
}
.custo__list .bullet {
  position: absolute;
  left: 22px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(224,98,90,0.15);
  color: var(--bad);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ============================================================
   07 · ANTES E DEPOIS
   ============================================================ */
.ad {
  background: var(--bg-light);
  padding: 140px 0;
}
.ad__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ad__col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.ad__col--bad {
  background: linear-gradient(180deg, var(--bad-soft), transparent 80%);
  border-color: rgba(224,98,90,0.2);
}
.ad__col--good {
  background: linear-gradient(180deg, var(--good-soft), transparent 80%);
  border-color: rgba(79,184,122,0.22);
}
.ad__col h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.ad__col--bad h3 { color: var(--bad); border-color: rgba(224,98,90,0.22); }
.ad__col--good h3 { color: var(--good); border-color: rgba(79,184,122,0.22); }
.ad__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ad__col li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-mid);
  padding-left: 28px;
  position: relative;
}
.ad__col li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
}
.ad__col--bad li::before {
  background: var(--bad);
  box-shadow: 0 0 0 4px var(--bad-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l4 4M6 2l-4 4' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ad__col--good li::before {
  background: var(--good);
  box-shadow: 0 0 0 4px var(--good-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   08 · O QUE A ZETECH ENTREGA
   ============================================================ */
.entrega {
  background: transparent;
  color: var(--white);
  padding: 0;
  position: relative;
}

/* Pin = runway vertical que dirige o scroll horizontal */
.entrega__pin {
  position: relative;
  height: 140vh; /* fallback enxuto — JS recalcula em função da largura real da track */
}

/* Sticky = o que pina no topo enquanto a track desliza */
.entrega__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
  overflow: hidden;
  padding: calc(var(--announce-height) + var(--nav-height) + 16px) 0 28px;
}
.entrega__sticky .section-head { margin-bottom: 0; }
.entrega__sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% 30%, rgba(94,193,238,0.12), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(20,147,214,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.entrega__sticky > * { position: relative; z-index: 1; }

/* Viewport = wrapper posicionado pra ancorar as setas (mobile only) */
.entrega__viewport {
  position: relative;
}

/* Rail = janela visível da track */
.entrega__rail {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

/* Setas — escondidas por padrão; ativadas só no mobile via media query */
.entrega__nav {
  display: none;
}

/* Track = fileira horizontal que o JS translada */
.entrega__track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  padding: 8px var(--gutter);
  width: max-content;
  will-change: transform;
}

/* Card */
.ent-card {
  flex: 0 0 clamp(260px, 24vw, 340px);
  padding: 28px 26px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--t-med) var(--ease), background var(--t-med), border-color var(--t-med);
  min-height: 300px;
  display: flex; flex-direction: column;
}
.ent-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(94,193,238,0.07), rgba(94,193,238,0.012));
  border-color: rgba(94,193,238,0.34);
}
.ent-card__num {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 14px;
}
.ent-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(94,193,238,0.12);
  border: 1px solid rgba(94,193,238,0.26);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.ent-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.25;
}
.ent-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240,240,240,0.74);
}

/* Barra de progresso horizontal */
/* Controls row — desktop centraliza progress; mobile vira [seta] [barra] [seta] */
.entrega__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.entrega__progress {
  height: 3px;
  width: min(420px, 80%);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.entrega__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  border-radius: 999px;
  transition: width 100ms linear;
}

/* ============================================================
   09 · PAINÉIS DE APROFUNDAMENTO
   ============================================================ */
.paineis {
  background: var(--bg-light);
  padding: 100px 0 120px;
  position: relative;
}
.paineis .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== Sticky stack: cada painel fixa no topo e o próximo sobe por cima ===== */
.painel {
  position: sticky;
  top: calc(var(--announce-height) + var(--nav-height) + 24px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3.4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  will-change: transform;
  overflow: hidden;
  isolation: isolate;
}

/* Painel 1 — claro */
.painel--lg {
  background: linear-gradient(180deg, var(--bg-light-2) 0%, #FAFBFD 100%);
  box-shadow: 0 -10px 40px -10px rgba(10,14,26,0.06);
}

/* Painel 2 — escuro, cobre o anterior */
.painel--rev {
  background: linear-gradient(135deg, #0A0E1A 0%, #0E1426 50%, #131A30 100%);
  border-color: rgba(94,193,238,0.22);
  color: var(--white);
  box-shadow: 0 -24px 60px -10px rgba(10,14,26,0.45);
}
.painel--rev::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 80% 20%, rgba(94,193,238,0.16), transparent 60%),
    radial-gradient(500px 400px at 10% 80%, rgba(20,147,214,0.14), transparent 60%);
  pointer-events: none;
}
.painel--rev > * { position: relative; z-index: 1; }

.painel--rev .painel__copy { order: 2; }
.painel--rev .painel__copy h2 { color: var(--white); }
.painel--rev .painel__copy h2 em { color: var(--blue); text-shadow: 0 0 28px rgba(94,193,238,0.35); }
.painel--rev .painel__copy p { color: rgba(240,240,240,0.78); }
.painel--rev .kicker { color: var(--blue); }
.painel--rev .kicker::before { background: var(--blue); }
.painel--rev .painel__bullets li { color: rgba(240,240,240,0.92); }
.painel--rev .painel__bullets li::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(94,193,238,0.18);
}

.painel__copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 22px;
}
.painel__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.painel__bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.painel__bullets li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-dark);
  padding-left: 28px;
  position: relative;
}
.painel__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%230A0E1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Imagem do painel (substitui stack-card / pulse-card) */
.painel__visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.painel__img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}
/* Painel 1 (claro) — remove o fundo branco da imagem via blend mode */
.painel--lg .painel__img {
  mix-blend-mode: multiply;
}
/* Painel 2 (escuro) — mantém imagem como card flutuante com elevação */
.painel--rev .painel__img {
  border-radius: 18px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6);
}

/* Painel visuals */
.painel__visual {
  display: grid; place-items: center;
  position: relative;
}
.painel__stack {
  display: flex; flex-direction: column; gap: 14px;
  width: min(360px, 100%);
  perspective: 1000px;
}
.stack-card {
  padding: 22px 26px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 20px 50px -25px rgba(10,14,26,0.16);
  transform: rotateX(2deg);
  transition: transform var(--t-med);
}
.stack-card:hover { transform: rotateX(0deg) translateY(-2px); }
.stack-card span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
.stack-card strong {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
}
.stack-card--accent {
  background: linear-gradient(135deg, var(--bg-dark), #0E1426);
  border-color: rgba(94,193,238,0.4);
  color: var(--white);
}
.stack-card--accent span { color: var(--blue); }
.stack-card--accent strong { color: var(--white); }

.pulse-card {
  width: min(380px, 100%);
  padding: 22px;
  background: linear-gradient(135deg, var(--bg-dark), #0E1426);
  border: 1px solid rgba(94,193,238,0.25);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -25px rgba(10,14,26,0.36);
  color: var(--white);
}
.pulse-card__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(240,240,240,0.78);
}
.pulse-card__row:last-child { border-bottom: 0; }
.pulse-card__row .ok {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(79,184,122,0.18);
  animation: blip 2.4s ease-in-out infinite;
}
.pulse-card__row:nth-child(2) .ok { animation-delay: 0.3s; }
.pulse-card__row:nth-child(3) .ok { animation-delay: 0.6s; }
.pulse-card__row:nth-child(4) .ok { animation-delay: 0.9s; }
.pulse-card__row:nth-child(5) .ok { animation-delay: 1.2s; }
@keyframes blip {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.6; }
}

/* ============================================================
   10 · COMO FUNCIONA
   ============================================================ */
/* ============================================================
   10 · COMO FUNCIONA (Scrollytelling)
   ============================================================ */
.passos {
  background: transparent;
  padding: 100px 0 60px;
  position: relative;
}
.passos__intro {
  max-width: 900px;
  margin-bottom: 56px;
  color: var(--white);
}
.passos__cta {
  text-align: center;
  padding-top: 80px;
}

/* Pin runway dimensionado para os retângulos (4 × ~75vh + buffer) */
.scroll-stack { position: relative; padding: 0 var(--gutter); }
.scroll-stack__pin {
  position: relative;
  height: 340vh;
  max-width: 1280px;
  margin: 0 auto;
}

/* Cada frame é um retângulo centralizado, sticky no topo */
.scroll-stack__frame {
  position: sticky;
  top: calc(var(--announce-height) + var(--nav-height) + 28px);
  height: 78vh;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 -10px 30px -10px rgba(94,193,238,0.12),
    0 30px 80px -30px rgba(0,0,0,0.55);
  border: 1px solid rgba(94,193,238,0.12);
}
.scroll-frame__inner {
  position: relative;
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* texto à esquerda, imagem maior à direita */
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 48px);
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Background base */
.scroll-frame__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* === Cores temáticas por frame (Passo 01 → 04) === */
.scroll-frame--1 .scroll-frame__bg { background: linear-gradient(135deg, #061B30 0%, #0E2D4A 50%, #103B61 100%); }
.scroll-frame--2 .scroll-frame__bg { background: linear-gradient(135deg, #0A1124 0%, #1A2452 50%, #2A2F6E 100%); }
.scroll-frame--3 .scroll-frame__bg { background: linear-gradient(135deg, #08221F 0%, #0F3D3A 50%, #145A52 100%); }
.scroll-frame--4 .scroll-frame__bg { background: linear-gradient(135deg, #0B0E20 0%, #1A2A52 50%, #1F4280 100%); }

/* Texturas decorativas por frame */
.scroll-frame__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(94,193,238,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,193,238,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.7;
}
.scroll-frame__waves {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 200px at 50% 50%, rgba(120,90,220,0.16), transparent 70%),
    radial-gradient(circle 500px at 50% 50%, rgba(94,193,238,0.08), transparent 70%);
  animation: pulseWave 5s ease-in-out infinite;
}
@keyframes pulseWave {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.75; }
}
.scroll-frame__rays {
  position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 70% 50%,
    rgba(79,184,122,0.05) 0deg 4deg, transparent 4deg 16deg);
  mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
}
.scroll-frame__map {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 6px at 22% 38%, rgba(94,193,238,0.6) 0%, transparent 50%),
    radial-gradient(circle 4px at 35% 52%, rgba(94,193,238,0.5) 0%, transparent 50%),
    radial-gradient(circle 5px at 48% 41%, rgba(94,193,238,0.55) 0%, transparent 50%),
    radial-gradient(circle 3px at 65% 60%, rgba(94,193,238,0.4) 0%, transparent 50%),
    radial-gradient(circle 7px at 78% 33%, rgba(94,193,238,0.7) 0%, transparent 50%),
    radial-gradient(circle 4px at 55% 70%, rgba(94,193,238,0.45) 0%, transparent 50%),
    radial-gradient(circle 5px at 30% 70%, rgba(94,193,238,0.5) 0%, transparent 50%);
  opacity: 0.9;
}

/* Glows comuns */
.scroll-frame__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.scroll-frame__glow--1 { width: 60vmax; height: 60vmax; background: radial-gradient(circle, rgba(94,193,238,0.45), transparent 70%); top: -10vmax; right: -10vmax; }
.scroll-frame__glow--2 { width: 40vmax; height: 40vmax; background: radial-gradient(circle, rgba(20,147,214,0.35), transparent 70%); bottom: -10vmax; left: -5vmax; }
.scroll-frame__glow--3 { width: 70vmax; height: 70vmax; background: radial-gradient(circle, rgba(120,90,220,0.32), transparent 70%); top: -15vmax; left: -10vmax; }
.scroll-frame__glow--4 { width: 50vmax; height: 50vmax; background: radial-gradient(circle, rgba(79,184,122,0.32), transparent 70%); top: 30%; right: -10vmax; }
.scroll-frame__glow--5 { width: 60vmax; height: 60vmax; background: radial-gradient(circle, rgba(94,193,238,0.4), transparent 70%); bottom: -15vmax; right: -15vmax; }

/* === Conteúdo do frame (coluna esquerda) === */
.scroll-frame__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  /* Sobrescreve a classe .container quando ela está aplicada inline */
  max-width: none;
  padding: 0;
  margin: 0;
  height: auto;
}
.scroll-frame__step {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(94,193,238,0.35);
  border-radius: 999px;
  background: rgba(94,193,238,0.08);
  align-self: flex-start;
}
.scroll-frame__content h3 {
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 18px;
}
.scroll-frame__content h3 em {
  font-style: normal;
  color: var(--blue);
  text-shadow: 0 0 32px rgba(94,193,238,0.4);
}
.scroll-frame__content p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: rgba(240,240,240,0.78);
  max-width: 540px;
}

/* Decoração / imagem (coluna direita) */
.scroll-frame__deco {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.scroll-deco-num {
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(94,193,238,0.36), rgba(94,193,238,0.04));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 0.82;
}

/* Imagem ilustrativa dos passos (coluna direita) */
.scroll-frame__img {
  width: 100%;
  max-width: 640px;
  height: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.5));
}
/* ============================================================
   11 · FABRICANTES E EQUIPAMENTOS — carrossel filtrável por marca
   ============================================================ */
.equip {
  background: transparent;
  color: var(--white);
  padding: 140px 0 120px;
}

/* Brand tabs */
.brand-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.brand-tab {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(240,240,240,0.75);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms, border-color 220ms, transform 220ms;
}
.brand-tab:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.brand-tab.is-active {
  background: var(--blue);
  color: var(--bg-dark);
  border-color: var(--blue);
  box-shadow: 0 8px 24px -10px var(--blue);
}

/* Carrossel */
.nobreak-rail {
  position: relative;
  margin: 36px 0 32px;
}
.nobreak-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 14px var(--gutter) 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nobreak-track::-webkit-scrollbar { display: none; }

.nobreak-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med), box-shadow var(--t-med), opacity 280ms;
}
.nobreak-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94,193,238,0.36);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5);
}
.nobreak-card.is-hidden { display: none; }

.nobreak-card__media {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #0E1426, #161D33);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.nobreak-card__media::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(94,193,238,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,193,238,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.nobreak-card__ghost {
  position: relative;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--blue), var(--blue-3));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0.92;
  filter: drop-shadow(0 6px 24px rgba(94,193,238,0.4));
}

/* Imagem real do nobreak */
.nobreak-card__img {
  position: relative;
  z-index: 2;
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,0.5));
  transition: transform 480ms var(--ease);
}
.nobreak-card:hover .nobreak-card__img {
  transform: scale(1.06);
}

.nobreak-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.nobreak-card__brand {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.nobreak-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.nobreak-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240,240,240,0.72);
  flex: 1;
}
.nobreak-card__cta {
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  align-self: stretch;
}
.nobreak-card__spec {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(94,193,238,0.14);
  color: var(--blue);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  align-self: flex-start;
}

/* Nav buttons */
.nobreak-nav {
  position: absolute;
  top: 38%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(10,14,26,0.7);
  border: 1px solid rgba(94,193,238,0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  transition: background 200ms, color 200ms, transform 200ms;
}
.nobreak-nav:hover {
  background: var(--blue);
  color: var(--bg-dark);
  transform: scale(1.05);
}
.nobreak-nav--prev { left: max(16px, calc((100vw - var(--container)) / 2 - 24px)); }
.nobreak-nav--next { right: max(16px, calc((100vw - var(--container)) / 2 - 24px)); }

/* Nota multimarca */
.equip__note {
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(240,240,240,0.75);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.equip__note strong { color: var(--white); font-weight: 600; }
.equip__note .link-arrow { margin-left: 6px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue);
  font-size: 14px; font-weight: 600;
  transition: gap var(--t-fast) var(--ease);
}
.link-arrow span {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.link-arrow:hover { gap: 14px; }
.link-arrow:hover span { transform: translateX(4px); }

/* ============================================================
   12 · CASES
   ============================================================ */
.cases {
  background: var(--bg-light);
  padding: 160px 0;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  padding: 32px 28px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med), border-color var(--t-med);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(10,14,26,0.16);
  border-color: rgba(94,193,238,0.3);
}
.case-card__seg {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-3);
  padding: 5px 10px; border-radius: 999px;
  background: var(--blue-soft);
  align-self: flex-start;
}
.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  line-height: 1.35;
}
.case-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mid);
}
.case-card__metric {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  color: var(--blue-3);
  font-weight: 600;
  border-top: 1px solid var(--border-light);
}

.depoimento {
  margin-top: 56px;
  padding: 40px 36px;
  background: var(--bg-light-2);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.depoimento p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ============================================================
   13 · FAIXA DE NÚMEROS (REFORÇO)
   ============================================================ */
.faixa {
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--white);
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faixa__inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.faixa__nums {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  font-size: 14.5px;
  color: rgba(240,240,240,0.85);
  font-weight: 500;
}
.faixa__nums .sep { color: rgba(240,240,240,0.25); }

/* ============================================================
   14 · FAQ
   ============================================================ */
.faq {
  background: var(--bg-light);
  padding: 140px 0;
}
.faq__container { max-width: 920px; }
.faq__list { margin-top: 24px; }
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-3); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-dark);
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq__icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon { background: var(--blue-3); border-color: var(--blue-3); }
.faq__item[open] .faq__icon::before { background: var(--white); }
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background: var(--white);
}
.faq__answer { overflow: hidden; padding-bottom: 24px; padding-right: 56px; }
.faq__answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ============================================================
   15 · CTA FINAL
   ============================================================ */
.cta-final {
  background: transparent;
  color: var(--white);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(94,193,238,0.16), transparent 70%),
    radial-gradient(700px 500px at 100% 100%, rgba(20,147,214,0.18), transparent 70%);
  pointer-events: none;
}
.cta-final__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  position: relative;
  align-items: start;
}
.cta-final__copy h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.cta-final__copy h2 em { font-style: normal; color: var(--blue); }
.cta-final__copy > p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(240,240,240,0.72);
  margin-bottom: 16px;
  max-width: 520px;
}
.cta-final__closing {
  font-size: 13.5px !important;
  color: rgba(240,240,240,0.5) !important;
  margin-bottom: 30px !important;
}

.form {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form__title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 6px; color: var(--white);
}
.form__sub {
  font-size: 14px;
  color: rgba(240,240,240,0.6);
  margin-bottom: 24px;
}
.form__legal {
  margin-top: 16px;
  font-size: 11.5px;
  color: rgba(240,240,240,0.45);
  line-height: 1.5;
}

/* ============================================================
   16 · FOOTER
   ============================================================ */
.footer {
  background: #06090F;
  color: var(--white);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 50px;
}
.footer__brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,240,240,0.55);
  max-width: 320px;
}
.footer__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__info > div { display: flex; flex-direction: column; gap: 10px; }
.footer__info span {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,240,240,0.4);
  margin-bottom: 4px;
}
.footer__info a {
  font-size: 14px;
  color: rgba(240,240,240,0.75);
  transition: color var(--t-fast);
}
.footer__info a:hover { color: var(--blue); }

/* Contatos no rodapé - inline com ícone */
.footer__info .footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13.5px;
  text-decoration: none;
  transition: color var(--t-fast), opacity var(--t-fast);
  line-height: 1.4;
}
.footer__info .footer__contact:hover { color: var(--blue); opacity: 0.85; }
.footer__info .footer__contact svg {
  color: var(--blue);
  flex-shrink: 0;
}
.footer__info .footer__contact--whatsapp svg { color: var(--blue); }
.footer__info .footer__contact--email svg { color: var(--blue); }
.footer__info .footer__contact span {
  text-transform: none; /* email em minúscula */
}

.footer__legal {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__legal .container {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: rgba(240,240,240,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__credit a {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.footer__credit a:hover { opacity: 0.9; }
.footer__28k-logo {
  display: inline-block;
  height: 60px;
  width: auto;
  vertical-align: middle;
  transition: transform var(--t-fast) var(--ease), filter var(--t-fast);
  filter: drop-shadow(0 4px 14px rgba(255, 106, 26, 0.35));
}
.footer__credit a:hover .footer__28k-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(255, 106, 26, 0.45));
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLL-DRIVEN WORD REVEAL (sui.io style)
   Cada palavra de h1/h2 aparece com opacidade ligada ao scroll.
   ============================================================ */
.reveal-word {
  display: inline-block;
  white-space: nowrap;
}
.reveal-word__inner {
  display: inline-block;
  opacity: 0.18;
  transform: translateY(0);
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

/* Lenis smooth scroll bindings */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE
   Breakpoints:
   · 1100px → tablet landscape
   · 1024px → hamburger menu
   · 760px  → mobile
   · 480px  → mobile pequeno
   ============================================================ */

/* ----- Tablet landscape ----- */
@media (max-width: 1100px) {
  .hero__container { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: calc(var(--announce-height) + var(--nav-height) + 40px) 0 80px; }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .nobreak-card { flex: 0 0 280px; }
  .scroll-frame__content h3 { font-size: clamp(26px, 4vw, 42px); }
  .scroll-frame__deco { right: 4vw; opacity: 0.55; }
  .scroll-deco-num { font-size: clamp(120px, 18vw, 220px); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final__container { grid-template-columns: 1fr; gap: 48px; }
  .footer__container { grid-template-columns: 1fr; gap: 36px; }
  .ad__grid { grid-template-columns: 1fr; }
  .custo__list { grid-template-columns: 1fr; }
  .painel { grid-template-columns: 1fr; gap: 32px; }
  .painel--rev .painel__copy { order: 1; }
  .painel__visual { display: none; }
}

/* ----- Hamburger menu ----- */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .nav.has-menu-open .nav__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 22px var(--gutter) 28px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav.has-menu-open .nav__menu a {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav.has-menu-open .nav__menu a:last-child { border-bottom: 0; }
}

/* ----- Mobile ----- */
@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --announce-height: 56px;
    --nav-height: 56px;
    --container: 100%;
  }

  body { font-size: 15.5px; }
  .container { padding-left: var(--gutter); padding-right: var(--gutter); }

  /* === Globais === */
  h2 { font-size: clamp(24px, 7vw, 34px); line-height: 1.12; letter-spacing: -0.02em; }
  h2 em { font-style: normal; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 14.5px; line-height: 1.55; }
  .kicker { font-size: 10.5px; margin-bottom: 14px; padding-left: 20px; letter-spacing: 0.16em; }
  .kicker::before { width: 14px; }
  .btn { padding: 11px 18px; font-size: 13.5px; gap: 8px; }
  .btn--lg { padding: 13px 20px; font-size: 14px; }
  .btn--nav { padding: 8px 14px; font-size: 11.5px; }

  /* Unifica padding vertical das seções */
  .position, .fabricantes, .numbers, .custo, .ad, .entrega, .paineis,
  .passos, .equip, .cases, .faq, .cta-final {
    padding: 60px 0;
  }
  .faixa { padding: 44px 0; }

  /* === 01 Announce bar (single-line fixa) === */
  .announce {
    height: var(--announce-height);
    font-size: 10.5px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .announce__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .announce__text {
    flex: 1;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .announce__link {
    flex-shrink: 0;
    font-size: 10.5px;
  }
  .announce__link svg { display: none; }

  .announce__contacts {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .announce__contact {
    font-size: 10.5px;
    gap: 4px;
  }
  .announce__contact svg { width: 12px; height: 12px; }

  /* === 02 Nav === */
  .nav {
    top: var(--announce-height);
    height: var(--nav-height);
    padding: 0;
  }
  .nav__inner { padding: 0 var(--gutter); gap: 12px; }
  .nav__brand img { height: 24px; }

  /* === 03 Hero === */
  .hero {
    min-height: auto;
    padding: calc(var(--announce-height) + var(--nav-height) + 32px) 0 56px;
  }
  .hero__container { gap: 36px; }
  .hero__title {
    font-size: clamp(26px, 9vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .hero__title .line { display: block; }
  .hero__lede { font-size: 14.5px; line-height: 1.55; margin-bottom: 20px; max-width: 100%; }
  .hero__trust {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 11px;
  }
  .hero__trust .sep { opacity: 0.5; }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* Hero visual no mobile: 3 nobreaks lado a lado em escala reduzida */
  .hero__visual { min-height: 320px; margin-top: 12px; }
  .hero__nobreak-glow { inset: 8%; filter: blur(50px); }
  .hero__nobreak-stack {
    min-height: 300px;
    gap: 0;
  }
  /* Resets pra mobile: tira deslocamentos do desktop */
  .hero__nobreak--back {
    max-height: 220px;
    left: 0;
    margin-bottom: 12px;
    margin-right: -72px; /* overlap acentuado pra ficarem encostados */
  }
  .hero__nobreak--main {
    max-height: 300px;
  }
  .hero__nobreak--front {
    max-height: 180px;
    margin-bottom: 16px;
    margin-left: -64px;
  }
  .hero-form {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .hero-form__title { font-size: 18px; }
  .hero-form__sub { font-size: 12.5px; margin-bottom: 18px; }
  .hero-form__legal { font-size: 11px; }
  .hero-form__alt { font-size: 12.5px; }
  .form__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .field { margin-bottom: 10px; }
  .field span { font-size: 11.5px; }
  .field input,
  .field select,
  .field textarea {
    padding: 11px 13px;
    font-size: 14.5px;
    border-radius: 9px;
  }

  /* === 04 Fabricantes / Marquee === */
  .fabricantes { padding: 44px 0 50px; text-align: center; }
  .marquee { margin: 26px 0 16px; }
  .marquee__item { min-height: 60px; }
  .marquee__item img { max-height: 48px; max-width: 130px; }
  .marquee__item img[src*="ragtech"] { max-height: 68px; max-width: 170px; }
  .marquee__track { gap: 30px; animation-duration: 28s; }
  .fabricantes__note { font-size: 13px; margin-top: 14px; padding: 0 var(--gutter); }

  /* === 05 Big Numbers === */
  .numbers { padding: 60px 0 70px; }
  .numbers__grid { grid-template-columns: 1fr; }
  .numbers__title { margin-bottom: 28px; text-align: left; }
  .num-cell { padding: 22px 18px; }
  .num-cell strong { font-size: 28px; }
  .num-cell strong span { font-size: 12.5px; margin-left: 6px; }
  .num-cell > span { font-size: 12.5px; }

  /* === 06 Custo === */
  .custo__container { padding: 0 var(--gutter); }
  .custo h2 { font-size: clamp(26px, 7.4vw, 36px); }
  .custo__lead { font-size: 14.5px; line-height: 1.55; margin-bottom: 26px; }
  .custo__list { grid-template-columns: 1fr; gap: 8px; margin-bottom: 28px; }
  .custo__list li {
    font-size: 13.5px;
    padding: 12px 14px 12px 44px;
    line-height: 1.4;
  }
  .custo__list .bullet { left: 14px; width: 18px; height: 18px; font-size: 9px; }

  /* === 07 Antes e Depois === */
  .ad__grid { grid-template-columns: 1fr; gap: 14px; }
  .ad__col { padding: 24px 20px; border-radius: 22px; }
  .ad__col h3 { font-size: 13.5px; margin-bottom: 16px; padding-bottom: 10px; letter-spacing: 0.04em; }
  .ad__col ul { gap: 10px; }
  .ad__col li { font-size: 14px; padding-left: 24px; line-height: 1.45; }
  .ad__col li::before { width: 12px; height: 12px; top: 6px; }

  /* === 08 Entrega — carrossel swipe touch ===
     Cards com snap pra esquerda + peek do próximo + fade na borda direita
     pra sinalizar que tem mais conteúdo. */
  .entrega { padding: 0; }
  .entrega__pin { height: auto; padding: 0; max-width: 100%; margin: 0; }
  .entrega__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 56px 0 64px;
    gap: 24px;
    overflow: hidden;
  }
  .entrega__sticky::before { display: none; }
  .entrega__rail {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-left: var(--gutter);
    scroll-padding-right: var(--gutter);
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Fade direito como dica visual de mais conteúdo */
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
  }
  .entrega__rail::-webkit-scrollbar { display: none; }
  .entrega__track {
    display: flex;
    flex-direction: row;
    transform: none !important;
    padding: 4px var(--gutter) 4px var(--gutter);
    padding-right: calc(22vw + var(--gutter)); /* espaço pro último card snapar até a esquerda */
    gap: 14px;
    width: max-content;
  }
  .ent-card {
    flex: 0 0 76vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 240px;
    padding: 22px 20px 26px;
    border-radius: 22px;
    /* Garante que cards não encolham nem se estiquem */
    min-width: 0;
  }
  .ent-card h3 { font-size: 17px; line-height: 1.25; }
  .ent-card p { font-size: 13.5px; line-height: 1.5; }
  .ent-card__icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .ent-card__num { font-size: 10.5px; margin-bottom: 12px; }

  /* Esconde nav genérico (legado de outro carrossel) */
  .carousel__nav { display: none; }

  /* Setas do carrossel — mobile only, ficam na linha do progress bar */
  .entrega__controls {
    gap: 14px;
    padding: 0 var(--gutter);
    margin-top: 4px;
  }
  .entrega__progress { width: 100%; max-width: 200px; }
  .entrega__nav {
    display: inline-flex;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 14, 26, 0.7);
    border: 1px solid rgba(94, 193, 238, 0.3);
    color: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px -6px rgba(0,0,0,0.5);
    transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
  }
  .entrega__nav:active {
    background: rgba(94, 193, 238, 0.2);
    transform: scale(0.92);
    border-color: var(--blue);
  }
  .entrega__nav svg { display: block; }

  /* Progress bar vira indicador de scroll horizontal nativo */
  .entrega__progress {
    display: block;
    height: 3px;
    width: 80px;
    margin: 6px auto 0;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
  }
  .entrega__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--blue);
    border-radius: 999px;
    transition: width 180ms ease;
  }

  /* === 09 Painéis: desliga sticky, single col === */
  .paineis { padding: 60px 0 64px; }
  .paineis .container { gap: 14px; }
  .painel {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 22px;
  }
  .painel--rev .painel__copy { order: 1; }
  .painel__copy h2 { font-size: 22px; line-height: 1.18; margin-bottom: 12px; }
  .painel__copy p { font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
  .painel__bullets { gap: 6px !important; margin-bottom: 18px !important; }
  .painel__bullets li { font-size: 13.5px; padding-left: 22px; line-height: 1.45; }
  .painel__bullets li::before { top: 5px; width: 11px; height: 11px; }
  .painel__visual { display: none; }
  .painel .kicker { margin-bottom: 10px; }

  /* === 10 Passos (scrollytelling → blocos verticais) === */
  .passos { padding: 60px 0 64px; }
  .passos__intro { margin-bottom: 28px; padding: 0 var(--gutter); }
  .scroll-stack { padding: 0 var(--gutter); }
  .scroll-stack__pin { height: auto; max-width: 100%; margin: 0; }
  .scroll-stack__frame {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    max-width: 100%;
    width: 100%;
    margin: 0 0 14px;
    border-radius: 22px;
    overflow: hidden;
  }
  .scroll-frame__inner {
    transform: none !important;
    opacity: 1 !important;
    height: auto;
    display: block;        /* mobile: stack vertical, texto cobre tudo, imagem flutua */
    padding: 0;
    grid-template-columns: none;
  }
  .scroll-frame__deco {
    position: absolute;
    top: 14px;
    right: 16px;
    bottom: auto;
    left: auto;
    transform: none;
    opacity: 0.5;
    margin: 0;
    z-index: 1;
    pointer-events: none;
  }
  .scroll-deco-num { font-size: clamp(80px, 22vw, 130px); }
  .scroll-frame__img {
    width: clamp(110px, 26vw, 160px);
    max-height: 26vh;
  }
  .scroll-frame__content {
    padding: 28px 22px;
    max-width: 100%;
    height: auto;
  }
  .scroll-frame__content h3 { font-size: clamp(22px, 6.2vw, 30px); margin-bottom: 12px; }
  .scroll-frame__content p { font-size: 14px; line-height: 1.55; }
  .scroll-frame__step { font-size: 10.5px; padding: 5px 12px; margin-bottom: 14px; }
  .passos__cta { padding-top: 36px; text-align: center; }

  /* === 11 Equip — brand tabs + carrossel === */
  .equip { padding: 60px 0; }
  .brand-tabs { gap: 8px; margin: 26px 0 4px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .brand-tabs::-webkit-scrollbar { display: none; }
  .brand-tab { padding: 9px 16px; font-size: 12.5px; flex-shrink: 0; }

  .nobreak-rail { margin: 24px 0 18px; }
  .nobreak-nav { display: none; } /* swipe natural no mobile, sem setas */
  .nobreak-track { padding: 10px var(--gutter) 24px; gap: 14px; }
  .nobreak-card { flex: 0 0 78vw; border-radius: 20px; }
  .nobreak-card__media { aspect-ratio: 1/1; }
  .nobreak-card__ghost { font-size: 44px; }
  .nobreak-card__body { padding: 20px 18px 22px; gap: 4px; }
  .nobreak-card h3 { font-size: 19px; }
  .nobreak-card p { font-size: 13.5px; line-height: 1.5; }
  .nobreak-card__brand { font-size: 10px; }
  .nobreak-card__spec { font-size: 11px; padding: 5px 10px; }

  .equip__note { font-size: 13.5px; padding: 0 var(--gutter); margin-top: 18px; }
  .equip__note .link-arrow { display: inline-flex; margin-top: 6px; }

  /* === 12 Cases === */
  .cases__grid { grid-template-columns: 1fr; gap: 12px; }
  .case-card { padding: 22px 20px; border-radius: 20px; }
  .case-card h3 { font-size: 15px; line-height: 1.3; }
  .case-card p { font-size: 13px; line-height: 1.5; }
  .case-card__seg { font-size: 9.5px; }
  .case-card__metric { font-size: 12px; }
  .depoimento { padding: 24px 22px; margin-top: 32px; }
  .depoimento p { font-size: 14.5px; line-height: 1.55; }

  /* === 13 Faixa === */
  .faixa__inner { flex-direction: column; gap: 18px; text-align: center; align-items: center; }
  .faixa__nums { justify-content: center; font-size: 12.5px; gap: 8px; flex-wrap: wrap; }
  .faixa__nums .sep { opacity: 0.5; }

  /* === 14 FAQ === */
  .faq { padding: 60px 0; }
  .faq__container { max-width: 100%; }
  .faq__item summary { padding: 20px 0; font-size: 15px; gap: 14px; line-height: 1.35; }
  .faq__icon { width: 22px; height: 22px; flex-shrink: 0; }
  .faq__icon::before { width: 8px; }
  .faq__icon::after { height: 8px; }
  .faq__answer { padding-bottom: 20px; padding-right: 0; }
  .faq__answer p { font-size: 14px; line-height: 1.6; }

  /* === 15 CTA Final === */
  .cta-final { padding: 60px 0 70px; }
  .cta-final__container { grid-template-columns: 1fr; gap: 36px; }
  .cta-final__copy h2 { font-size: clamp(26px, 7vw, 36px); }
  .cta-final__copy > p { font-size: 14.5px; line-height: 1.55; }
  .cta-final__closing { font-size: 12px !important; }
  .form { padding: 22px 20px; border-radius: 22px; }
  .form__title { font-size: 18px; }
  .form__sub { font-size: 12.5px; margin-bottom: 18px; }
  .form__legal { font-size: 11px; }

  /* === 16 Footer === */
  .footer { padding: 50px 0 0; }
  .footer__container { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__brand img { height: 28px; }
  .footer__brand p { font-size: 13px; line-height: 1.55; }
  .footer__info { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer__info span { font-size: 10.5px; }
  .footer__info a { font-size: 13px; }
  .footer__legal { padding: 18px 0; }
  .footer__legal .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11.5px;
  }

  /* === Atmosfera: reduz peso visual no mobile === */
  .ambient-bg__orb { filter: blur(70px); opacity: 0.5; }
  .ambient-bg__orb--1 { width: 90vmax; height: 90vmax; }
  .ambient-bg__orb--2 { width: 80vmax; height: 80vmax; }
  .ambient-bg__orb--3 { width: 90vmax; height: 90vmax; }
  .ambient-bg__orb--4 { width: 70vmax; height: 70vmax; }
  .ambient-bg__orb--5 { width: 60vmax; height: 60vmax; }
  .ambient-bg__noise { opacity: 0.04; }
  .ambient-bg__vignette { opacity: 0.6; }
}

/* ----- Mobile pequeno ----- */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .nav__brand img { height: 22px; }
  .btn--nav { padding: 8px 12px; font-size: 11.5px; letter-spacing: -0.005em; }
  .hero__title { font-size: clamp(24px, 8.6vw, 32px); }
  .hero-form__title { font-size: 18px; }
  .num-cell strong { font-size: 26px; }
  .ent-card { flex: 0 0 82vw; min-height: 240px; padding: 22px 20px 24px; }
  .marquee__item img { max-height: 44px; max-width: 120px; }
  .marquee__item img[src*="ragtech"] { max-height: 60px; max-width: 150px; }
  .scroll-deco-num { font-size: clamp(70px, 22vw, 110px); }
  .scroll-frame__content { padding: 28px 18px; }
}

/* ============================================================
   17 · SUBPAGES — PAGE HERO (cabeçalho das páginas internas)
   ============================================================ */
.page-hero {
  position: relative;
  color: var(--white);
  padding: calc(var(--announce-height) + var(--nav-height) + 72px) 0 84px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 80% 20%, rgba(94,193,238,0.16), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(20,147,214,0.12), transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.page-hero__inner .kicker { color: var(--blue); }
.page-hero__inner .kicker::before { background: var(--blue); }
.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 22px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--blue);
  text-shadow: 0 0 36px rgba(94,193,238,0.35);
}
.page-hero__lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: rgba(240,240,240,0.78);
  max-width: 660px;
  margin-bottom: 30px;
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(240,240,240,0.55);
}
.page-hero__meta .sep { color: rgba(240,240,240,0.25); }

/* Navegação interna de páginas (breadcrumb pill row) */
.page-nav {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-nav a {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(240,240,240,0.75);
  font-size: 13px;
  font-weight: 600;
  transition: background 220ms var(--ease), color 220ms, border-color 220ms, transform 220ms;
}
.page-nav a:hover {
  background: rgba(94,193,238,0.14);
  border-color: rgba(94,193,238,0.4);
  color: var(--white);
  transform: translateY(-2px);
}

/* Nav — estado ativo por página */
.nav__menu a.is-active { color: var(--white); }
.nav__menu a.is-active::after { width: 100%; }

/* ============================================================
   18 · EMPRESA — NOSSA HISTÓRIA
   ============================================================ */
.historia {
  background: var(--bg-light);
  padding: 120px 0;
}
.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.historia__copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 22px;
}
.historia__copy h2 em { color: var(--blue-3); font-style: normal; }
.historia__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.historia__copy .btn { margin-top: 12px; }
.historia__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(10,14,26,0.3);
}
.historia__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.historia__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10,14,26,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(94,193,238,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
}
.historia__badge strong { display: block; color: var(--blue); font-size: 15px; margin-bottom: 2px; }

/* Linha do tempo */
.timeline {
  background: var(--bg-light);
  padding: 0 0 120px;
}
.timeline__list {
  position: relative;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline__list::before {
  content: '';
  position: absolute;
  left: 44px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--blue-3), var(--blue-3), transparent);
  opacity: 0.35;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}
.timeline__year {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-3);
  line-height: 1.2;
}
.timeline__card {
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 18px 44px -22px rgba(10,14,26,0.14);
}
.timeline__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline__card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* Missão, visão e valores */
.mvv {
  background: transparent;
  color: var(--white);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mvv .section-head--dark { margin-bottom: 48px; }
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mvv-card {
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med), background var(--t-med);
}
.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94,193,238,0.34);
  background: linear-gradient(180deg, rgba(94,193,238,0.07), rgba(94,193,238,0.012));
}
.mvv-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(94,193,238,0.12);
  border: 1px solid rgba(94,193,238,0.26);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.mvv-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--white);
}
.mvv-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,240,240,0.74);
}

/* ============================================================
   19 · SOLUÇÕES — GRID DOS 6 CARDS (versão página)
   ============================================================ */
.solucoes-grid {
  background: transparent;
  color: var(--white);
  padding: 110px 0 120px;
}
.solucoes-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   20 · CTA BLOCO (reuso do cta-final em subpáginas)
   ============================================================ */
.sub-cta { padding: 110px 0 120px; }

/* ============================================================
   RESPONSIVO — SUBPAGES
   ============================================================ */
@media (max-width: 1100px) {
  .historia__grid { grid-template-columns: 1fr; gap: 40px; }
  .historia__visual img { aspect-ratio: 16/10; }
  .mvv__grid { grid-template-columns: repeat(2, 1fr); }
  .solucoes-grid__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .page-hero {
    padding: calc(var(--announce-height) + var(--nav-height) + 40px) 0 56px;
  }
  .page-hero h1 { font-size: clamp(26px, 8.2vw, 38px); }
  .page-hero__lede { font-size: 14.5px; line-height: 1.55; }
  .page-hero__meta { font-size: 11px; gap: 8px; }
  .page-nav { margin-top: 28px; gap: 8px; }
  .page-nav a { padding: 8px 14px; font-size: 12px; }

  .historia { padding: 60px 0; }
  .historia__copy h2 { font-size: 24px; line-height: 1.18; }
  .historia__copy p { font-size: 14.5px; line-height: 1.6; }
  .historia__badge { padding: 12px 14px; font-size: 12px; }

  .timeline { padding: 0 0 60px; }
  .timeline__list { margin-top: 32px; gap: 16px; }
  .timeline__list::before { left: 34px; }
  .timeline__item { grid-template-columns: 70px 1fr; gap: 16px; }
  .timeline__year { font-size: 18px; }
  .timeline__card { padding: 18px 20px; }
  .timeline__card h3 { font-size: 15.5px; }
  .timeline__card p { font-size: 13.5px; }

  .mvv { padding: 60px 0; }
  .mvv__grid { grid-template-columns: 1fr; gap: 14px; }
  .mvv-card { padding: 26px 22px; }
  .mvv-card h3 { font-size: 17px; }

  .solucoes-grid { padding: 60px 0; }
  .solucoes-grid__grid { grid-template-columns: 1fr; gap: 14px; }
  .sub-cta { padding: 60px 0 70px; }
}
