/* ============================================================
   GONDIM INFRAESTRUTURA OPERACIONAL — Design System
   Cores: Teal #006D71 · Petróleo #0B3235 · Concreto #C7CCCA
   Tipografia: Neurial Grotesk
   ============================================================ */

@font-face {
  font-family: 'Neurial Grotesk';
  src: url('../fonts/NeurialGrotesk-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('../fonts/NeurialGrotesk-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('../fonts/NeurialGrotesk-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neurial Grotesk';
  src: url('../fonts/NeurialGrotesk-Italic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}

:root {
  --ink: #061416;
  --petrol: #0B3235;
  --petrol-2: #0E3C40;
  --teal: #006D71;
  --teal-bright: #1FA9AE;
  --teal-soft: #6FC9CC;
  --paper: #EEF1F0;
  --paper-2: #E3E8E6;
  --concrete: #C7CCCA;
  --white: #FFFFFF;
  --line-dark: rgba(255,255,255,.12);
  --line-light: rgba(6,20,22,.14);
  --txt-dark-soft: rgba(234,242,241,.72);
  --txt-light-soft: rgba(6,20,22,.68);
  --font: 'Neurial Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --radius: 14px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--paper);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--teal); color: var(--white); }

/* ---------- Layout ---------- */
.container { width: min(1280px, 100% - 2*var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 10vw, 9rem); position: relative; }
.section--light { background: var(--paper); color: var(--ink); }
.section--paper2 { background: var(--paper-2); color: var(--ink); }
.section--petrol { background: var(--petrol); }

/* ---------- Typography ---------- */
.label {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal-bright);
}
.label::before { content: ''; width: 2.2rem; height: 1px; background: var(--teal-bright); }
.section--light .label, .section--paper2 .label { color: var(--teal); }
.section--light .label::before, .section--paper2 .label::before { background: var(--teal); }

.h-display {
  font-size: clamp(2.6rem, 7.2vw, 6.8rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -.02em;
  text-transform: uppercase;
}
.h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); font-weight: 700; line-height: 1.05; letter-spacing: -.018em; }
.h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -.015em; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.2; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300; line-height: 1.6; }
.muted { color: var(--txt-dark-soft); }
.section--light .muted, .section--paper2 .muted { color: var(--txt-light-soft); }
.accent { color: var(--teal-bright); }
.section--light .accent, .section--paper2 .accent { color: var(--teal); }

.sec-head { display: grid; gap: 1.4rem; max-width: 880px; margin-bottom: clamp(3rem, 6vw, 5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1.05rem 2.1rem; border-radius: 99px;
  font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translate(3px,-3px); }
.btn--solid { background: var(--teal); color: var(--white); }
.btn--solid:hover { background: var(--teal-bright); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line-dark); color: var(--paper); }
.btn--ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); transform: translateY(-3px); }
.section--light .btn--ghost, .section--paper2 .btn--ghost { border-color: var(--line-light); color: var(--ink); }
.section--light .btn--ghost:hover, .section--paper2 .btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Header (pílula flutuante de vidro) ---------- */
.header {
  position: fixed; top: clamp(.9rem, 2vh, 1.4rem); left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding-inline: var(--gutter);
  pointer-events: none;
  transition: transform .55s var(--ease);
}
.header__inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem);
  padding: .55rem .6rem .55rem 1.5rem;
  border-radius: 99px;
  background: rgba(6,20,22,.34);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 44px -18px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  transition: background .5s, border-color .5s, box-shadow .5s;
}
.header.is-scrolled .header__inner {
  background: rgba(6,20,22,.62);
  border-color: rgba(255,255,255,.18);
}
.header.is-hidden { transform: translateY(calc(-100% - 2rem)); }
.header__logo { display: flex; }
.header__logo img { height: 28px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 1.8vw, 1.8rem); }
.nav a {
  font-size: .84rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(238,241,240,.82); position: relative; padding-block: .35rem;
  transition: color .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--teal-bright); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--white); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: .62rem 1.4rem; font-size: .76rem; }
.nav a.btn::after { display: none; }
.nav a.btn:hover { color: var(--white); }

.burger { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; z-index: 110; }
.burger span {
  display: block; width: 26px; height: 2px; background: var(--white);
  margin: 6px auto; transition: transform .4s var(--ease), opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105; background: var(--petrol);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease);
}
.mobile-menu.is-open { clip-path: inset(0 0 0% 0); }
.mobile-menu a {
  font-size: clamp(2rem, 8vw, 3.2rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: -.01em; padding-block: .55rem; color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a.is-active { color: var(--teal-bright); }

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__inner { width: 100%; justify-content: space-between; padding: .5rem .6rem .5rem 1.2rem; }
}

/* ---------- Hero (vídeo) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,20,22,.55) 0%, rgba(6,20,22,.18) 35%, rgba(6,20,22,.82) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(0,109,113,.32), transparent 60%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(3rem, 7vh, 5.5rem); }
.hero__tag { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.6rem; }
.hero__tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 14px var(--teal-bright); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero__tag span { font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(238,241,240,.85); font-weight: 700; }
.hero__title { max-width: 18ch; text-shadow: 0 4px 60px rgba(0,0,0,.35); }
.hero__bottom {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-top: 2.4rem;
}
.hero__sub { max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 2.2rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(238,241,240,.6);
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ''; width: 1px; height: 56px; background: linear-gradient(var(--teal-bright), transparent); animation: drip 2s infinite var(--ease); }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 61% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* Hero interno (páginas) */
.page-hero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 10rem; }
.page-hero--short { min-height: 78svh; }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(2.2rem, 5vh, 3.6rem); display: grid; gap: 1.6rem; }
.breadcrumb {
  justify-self: start;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1.15rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(6,20,22,.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(238,241,240,.75);
  font-weight: 700;
}
.breadcrumb a:hover { color: var(--teal-bright); }
.page-hero__meta {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-top: clamp(.8rem, 2.5vh, 2rem);
}
.page-hero__idx, .page-hero__hint {
  font-size: .72rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(238,241,240,.55); white-space: nowrap;
}
.page-hero__idx { color: var(--teal-bright); }
.page-hero__rule { flex: 1; height: 1px; background: rgba(255,255,255,.22); display: block; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding-block: 1.4rem; border-block: 1px solid var(--line-dark); background: var(--ink); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee span {
  font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(238,241,240,.5); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3.5rem;
}
.marquee span i { font-style: normal; color: var(--teal-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Quem somos (2 blocos) ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.2rem; align-items: stretch; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  border-radius: var(--radius); border: 1px solid var(--line-dark);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  padding: clamp(1.8rem, 3.4vw, 2.8rem); display: grid; gap: 1.1rem; align-content: start;
}
.facets { display: grid; margin-top: .4rem; border-top: 1px solid var(--line-dark); }
.facet {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.1rem;
  padding: 1.05rem .4rem; border-bottom: 1px solid var(--line-dark);
  cursor: default; position: relative; overflow: hidden;
  transition: padding-left .45s var(--ease);
}
.facet::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,109,113,.28), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.facet:hover { padding-left: 1.1rem; }
.facet:hover::before { transform: scaleX(1); }
.facet > * { position: relative; }
.facet__num { font-size: .75rem; font-weight: 700; letter-spacing: .15em; color: var(--teal-bright); }
.facet__name { font-size: 1.02rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.facet__arrow { color: var(--teal-bright); opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .4s var(--ease); }
.facet:hover .facet__arrow { opacity: 1; transform: translateX(0); }

.socios-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; }
.socios-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.socios-card:hover img { transform: scale(1.05); }
.socios-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(6,20,22,.85)); }
.socios-card__body { position: relative; z-index: 2; padding: 1.8rem; display: grid; gap: .35rem; width: 100%; }
.socios-card__body h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); text-transform: uppercase; }
.socios-card__body p { color: var(--txt-dark-soft); font-size: .95rem; }
.socios-card__link {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: var(--white); transition: background .35s, transform .45s var(--ease);
}
.socios-card:hover .socios-card__link { background: var(--teal-bright); transform: rotate(45deg); }
.socios-card__link svg { width: 18px; height: 18px; }

/* ---------- Cards de solução ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 1080px) { .sol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .sol-grid { grid-template-columns: 1fr; } }
.sol-card {
  position: relative; padding: 2.2rem 1.9rem 2rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 1rem; min-height: 290px;
  overflow: hidden; transition: transform .55s var(--ease), border-color .4s, background .4s;
}
.sol-card::before {
  content: ''; position: absolute; inset: auto auto -40% -20%; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,109,113,.35), transparent 65%);
  opacity: 0; transition: opacity .5s;
}
.sol-card:hover { transform: translateY(-8px); border-color: rgba(31,169,174,.45); }
.sol-card:hover::before { opacity: 1; }
.sol-card__img {
  margin: -2.2rem -1.9rem 0; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  aspect-ratio: 16/8.5; position: relative;
}
.sol-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,20,22,.55)); }
.sol-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.92); }
.sol-card:hover .sol-card__img img { transform: scale(1.07); filter: saturate(1.05); }
.sol-card__num { font-size: .8rem; font-weight: 700; letter-spacing: .18em; color: var(--teal-bright); }
.sol-card__title { font-size: 1.3rem; font-weight: 700; line-height: 1.18; text-transform: uppercase; letter-spacing: .01em; }
.sol-card__result { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line-dark); font-size: .92rem; color: var(--txt-dark-soft); }
.sol-card__result b { color: var(--teal-soft); font-weight: 700; display: block; margin-bottom: .15rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- Split duplo (Estrutura + Agilidade) ---------- */
.dual { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: clamp(1.5rem, 4vw, 3.5rem); }
@media (max-width: 880px) { .dual { grid-template-columns: 1fr; } .dual__plus { justify-self: center; } }
.dual__col { display: grid; gap: 1.1rem; align-content: start; padding: clamp(1.6rem,3vw,2.6rem); border-radius: var(--radius); border: 1px solid var(--line-light); background: var(--white); }
.dual__col h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; font-weight: 700; letter-spacing: -.01em; }
.dual__plus { display: flex; align-items: center; justify-content: center; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: var(--teal); }
.dual__col ul { display: grid; gap: .55rem; }
.dual__col li { display: flex; gap: .7rem; align-items: baseline; color: var(--txt-light-soft); }
.dual__col li::before { content: ''; width: 8px; height: 8px; flex: none; background: var(--teal); border-radius: 2px; transform: translateY(-1px); }

/* ---------- Stats ---------- */
.stats {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 140% at 85% 10%, rgba(0,109,113,.38), transparent 55%),
    linear-gradient(160deg, var(--petrol), var(--ink) 70%);
  border-block: 1px solid var(--line-dark);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/simbolo-branco.png') no-repeat right -8% center / contain;
  opacity: .04; pointer-events: none;
}
.stats__head { display: grid; gap: 1rem; max-width: 760px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); text-align: center; justify-items: center; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); max-width: 1280px; margin-inline: auto; }
@media (max-width: 880px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat { position: relative; display: grid; gap: .7rem; padding-top: 1.4rem; text-align: left; }
.stat__bar { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--teal-bright), rgba(31,169,174,.1)); display: block; }
.stat__value { font-size: clamp(3.4rem, 7.5vw, 6.4rem); font-weight: 700; line-height: .95; letter-spacing: -.03em; color: var(--white); display: flex; align-items: baseline; gap: .1em; }
.stat__value sup { font-size: .4em; color: var(--teal-bright); font-weight: 700; transform: translateY(-.6em); }
.stat__label { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-dark-soft); max-width: 22ch; }

/* ---------- Media band (vídeo parallax) ---------- */
.media-band { position: relative; height: clamp(420px, 78vh, 760px); overflow: hidden; }
.media-band video, .media-band img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; }
.media-band__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,22,.6), rgba(6,20,22,.25) 45%, rgba(6,20,22,.7)); }
.media-band__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 5vw, 4rem) var(--gutter); z-index: 2; gap: 1.2rem; }

/* ---------- Setores ---------- */
.sector-list { border-top: 1px solid var(--line-light); }
.sector-row {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) 0; border-bottom: 1px solid var(--line-light);
  transition: padding-left .5s var(--ease), padding-right .5s var(--ease);
}
.sector-row::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--petrol), var(--teal) 140%);
  transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease);
  z-index: 0;
}
.sector-row > * { position: relative; z-index: 1; transition: color .45s; }
.sector-row:hover { padding-left: 1.6rem; padding-right: 1.2rem; }
.sector-row:hover::before { transform: scaleY(1); }
.sector-row:hover .sector-row__name { color: var(--white); }
.sector-row:hover .sector-row__num { color: var(--teal-bright); }
.sector-row:hover .sector-row__desc { color: rgba(238,241,240,.75); }
.sector-row__num { font-size: .85rem; font-weight: 700; color: var(--teal); letter-spacing: .1em; }
.sector-row__name { font-size: clamp(1.4rem, 3.4vw, 2.6rem); font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; }
.sector-row__desc { max-width: 36ch; font-size: .95rem; color: var(--txt-light-soft); text-align: right; }
@media (max-width: 760px) { .sector-row { grid-template-columns: auto 1fr; } .sector-row__desc { display: none; } }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery figure { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.g-7 { grid-column: span 7; aspect-ratio: 16/10; }
.g-5 { grid-column: span 5; aspect-ratio: 4/3.2; }
.g-4 { grid-column: span 4; aspect-ratio: 4/3; }
.g-6 { grid-column: span 6; aspect-ratio: 16/10; }
.g-12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } .gallery figure { grid-column: span 1 !important; aspect-ratio: 16/10; } }

/* ---------- Galeria horizontal (scrub) ---------- */
.hgallery { overflow: hidden; }
.hgallery__track { display: flex; gap: 1rem; width: max-content; will-change: transform; padding-bottom: 1.6rem; }
.hgallery__track figure {
  width: clamp(260px, 30vw, 420px); aspect-ratio: 4/3; flex: none;
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.hgallery__track figure:nth-child(even) { transform: translateY(1.6rem); }
.hgallery__track img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hgallery__track figure:hover img { transform: scale(1.06); }

/* ---------- Liderança ---------- */
.leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 820px) { .leaders { grid-template-columns: 1fr; } }
.leader {
  border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white);
  padding: clamp(1.8rem, 3.5vw, 3rem); display: grid; gap: 1.1rem; position: relative; overflow: hidden;
}
.leader::after {
  content: attr(data-letter); position: absolute; right: -1rem; top: -2.4rem;
  font-size: 11rem; font-weight: 700; color: rgba(0,109,113,.07); line-height: 1;
}
.leader__role { font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.leader__name { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.leader__force { font-style: italic; color: var(--txt-light-soft); }
.leader p { color: var(--txt-light-soft); }

/* ---------- Valores ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 980px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 1.9rem 1.7rem; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.03);
  display: grid; gap: .7rem; transition: transform .5s var(--ease), border-color .4s;
}
.value:hover { transform: translateY(-6px); border-color: rgba(31,169,174,.45); }
.value h4 { font-size: 1.08rem; text-transform: uppercase; letter-spacing: .04em; }
.value p { font-size: .94rem; color: var(--txt-dark-soft); }
.value__idx { font-size: .78rem; font-weight: 700; color: var(--teal-bright); letter-spacing: .15em; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; border-left: 1px solid var(--line-dark); margin-left: .5rem; }
.tl-item { position: relative; padding: 0 0 2.6rem 2.2rem; }
.tl-item::before {
  content: ''; position: absolute; left: -6px; top: .45rem; width: 11px; height: 11px;
  border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 5px rgba(31,169,174,.15);
}
.tl-item h4 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: .35rem; letter-spacing: .03em; }
.tl-item p { color: var(--txt-dark-soft); max-width: 56ch; }
.tl-item .tl-tag { font-size: .72rem; font-weight: 700; letter-spacing: .2em; color: var(--teal-bright); text-transform: uppercase; display: block; margin-bottom: .4rem; }

/* ---------- Frota ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.fleet-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; }
.fleet-card video, .fleet-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.fleet-card:hover video, .fleet-card:hover img { transform: scale(1.05); }
.fleet-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(6,20,22,.88)); }
.fleet-card__body { position: relative; z-index: 2; padding: 1.8rem; display: grid; gap: .5rem; }
.fleet-card__body h3 { text-transform: uppercase; font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.fleet-card__body p { color: var(--txt-dark-soft); font-size: .95rem; max-width: 52ch; }
.fc-8 { grid-column: span 8; min-height: 440px; }
.fc-4 { grid-column: span 4; }
.fc-6 { grid-column: span 6; }
.fc-12 { grid-column: span 12; min-height: 480px; }
@media (max-width: 880px) { .fleet-card { grid-column: span 12 !important; } }

/* ---------- Processo ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); padding: 2.1rem 1.7rem; display: grid; gap: .8rem; align-content: start; }
.step__num { font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.step h4 { text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em; }
.step p { font-size: .93rem; color: var(--txt-light-soft); }

/* ---------- CTA final ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(6rem, 13vw, 11rem);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.cta__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(90% 90% at 50% 50%, rgba(6,20,22,.25), rgba(6,20,22,.88)); }
.cta__content { position: relative; z-index: 2; display: grid; gap: 1.6rem; justify-items: center; }
.cta__content .h-display { font-size: clamp(2.2rem, 5.6vw, 5rem); }
.cta__ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Formulário ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 2rem; align-content: start; }
.contact-info__item { display: grid; gap: .3rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-dark); }
.contact-info__item span { font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-bright); }
.contact-info__item a, .contact-info__item p { font-size: 1.15rem; font-weight: 300; color: var(--paper); }
.contact-info__item a:hover { color: var(--teal-bright); }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .45rem; }
.field label { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-dark-soft); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: 10px; padding: 1rem 1.1rem; color: var(--paper);
  font-family: inherit; font-size: 1rem; transition: border-color .3s, background .3s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231FA9AE' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; }
.field select option { background: var(--petrol); color: var(--paper); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-bright); background: rgba(31,169,174,.06); }
.field textarea { min-height: 140px; resize: vertical; }
.form__success { display: none; padding: 1.2rem 1.4rem; border-radius: 10px; border: 1px solid rgba(31,169,174,.5); background: rgba(0,109,113,.18); color: var(--teal-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line-dark); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 52px; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--txt-dark-soft); max-width: 30ch; }
.footer h5 { font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: .6rem; }
.footer ul a { color: var(--txt-dark-soft); transition: color .3s; font-size: .96rem; }
.footer ul a:hover { color: var(--white); }
.footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: rgba(238,241,240,.45);
}
.footer__tagline-wrap { overflow: hidden; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.footer__tagline {
  font-size: clamp(4rem, 14.5vw, 15rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: -.03em; line-height: .95; color: rgba(238,241,240,.09);
  white-space: nowrap; user-select: none; width: max-content; will-change: transform;
}
.social-icons { display: flex; gap: .8rem; }
.social-icons a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark); color: var(--txt-dark-soft);
  transition: border-color .35s, color .35s, transform .45s var(--ease), background .35s;
}
.social-icons a:hover { border-color: var(--teal-bright); color: var(--white); background: rgba(0,109,113,.25); transform: translateY(-4px); }
.social-icons svg { width: 20px; height: 20px; }

/* ---------- Animations base ---------- */
[data-reveal] { opacity: 0; transform: translateY(46px); will-change: transform, opacity; }
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .w > span { display: inline-block; transform: translateY(110%); will-change: transform; }
.no-js [data-reveal], .no-js [data-split] .w > span { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  [data-split] .w > span { transform: none; }
  .marquee__track { animation-duration: 80s; }
}

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.two-col__media { border-radius: var(--radius); overflow: hidden; position: relative; }
.two-col__media img, .two-col__media video { width: 100%; height: 100%; object-fit: cover; }
.prose { display: grid; gap: 1.2rem; }
.prose p { color: var(--txt-dark-soft); }
.section--light .prose p, .section--paper2 .prose p { color: var(--txt-light-soft); }
.checklist { display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .8rem; align-items: baseline; }
.checklist li::before { content: '✓'; color: var(--teal-bright); font-weight: 700; }
.section--light .checklist li::before, .section--paper2 .checklist li::before { color: var(--teal); }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { padding: .5rem 1.1rem; border-radius: 99px; border: 1px solid var(--line-dark); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-dark-soft); }
.section--light .pill, .section--paper2 .pill { border-color: var(--line-light); color: var(--txt-light-soft); }

/* ============================================================
   PÁGINA A GONDIM — componentes premium
   ============================================================ */

/* ---------- História em 3 capítulos ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr; } }
.story-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-dark);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .55s var(--ease), border-color .4s;
}
.story-card:hover { transform: translateY(-10px); border-color: rgba(31,169,174,.5); }
.story-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.story-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.story-card:hover .story-card__img img { transform: scale(1.08); }
.story-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6,20,22,.6)); }
.story-card__chapter {
  position: absolute; top: 1.1rem; left: 1.3rem; z-index: 2;
  font-size: 3.2rem; font-weight: 700; line-height: 1; color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.story-card__chapter::after { content: ''; display: block; width: 2.4rem; height: 3px; background: var(--teal-bright); margin-top: .5rem; }
.story-card__body { padding: 1.7rem 1.6rem 1.9rem; display: grid; gap: .7rem; }
.story-card__body h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .02em; line-height: 1.15; }
.story-card__body p { color: var(--txt-dark-soft); font-size: .97rem; }
@media (min-width: 981px) {
  .story-card:nth-child(2) { margin-top: 3rem; }
  .story-card:nth-child(3) { margin-top: 6rem; }
}
.story-punch { margin-top: clamp(3rem, 6vw, 4.5rem); text-align: center; }
.story-punch .h2 { max-width: 22ch; margin-inline: auto; }

/* ---------- Plataforma de marca (premium editorial) ---------- */
.platform { position: relative; overflow: hidden; }
.platform::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/simbolo-branco.png') no-repeat 108% 120% / 42%;
  opacity: .045; pointer-events: none;
}
.platform__row {
  position: relative;
  display: grid; grid-template-columns: minmax(220px, .8fr) 2fr; gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.2rem, 4.5vw, 3.6rem) 0; align-items: start;
  border-top: 1px solid var(--line-dark);
}
.platform__row:last-child { border-bottom: 1px solid var(--line-dark); }
@media (max-width: 760px) { .platform__row { grid-template-columns: 1fr; } }
.platform__key { display: grid; gap: .5rem; }
.platform__num { font-size: .8rem; font-weight: 700; letter-spacing: .22em; color: var(--teal-bright); }
.platform__name {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: -.01em; line-height: 1;
}
.platform__statement { font-size: clamp(1.25rem, 2.4vw, 1.9rem); font-weight: 300; line-height: 1.45; color: rgba(238,241,240,.88); max-width: 30ch; }
.platform__statement strong { font-weight: 700; color: var(--teal-soft); }

/* ---------- Valores com fotos (blocos conectados) ---------- */
.values-photo {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border-radius: var(--radius); overflow: visible;
}
@media (max-width: 980px) { .values-photo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .values-photo { grid-template-columns: 1fr; } }
.vcard {
  position: relative; min-height: 400px; overflow: hidden;
  display: flex; align-items: flex-end;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  will-change: transform;
}
.values-photo .vcard:first-child { border-radius: var(--radius) 0 0 0; }
.values-photo .vcard:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.values-photo .vcard:nth-child(4) { border-radius: 0 0 0 var(--radius); }
.values-photo .vcard:last-child { border-radius: 0 0 var(--radius) 0; }
@media (max-width: 980px) { .values-photo .vcard { border-radius: 0 !important; } }
.vcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter .6s; filter: saturate(.95); }
.vcard::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,22,.18) 0%, rgba(6,20,22,.42) 55%, rgba(6,20,22,.92) 100%);
  transition: background .5s;
}
.vcard:hover { transform: translateY(-16px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(31,169,174,.5); z-index: 3; }
.vcard:hover img { transform: scale(1.07); filter: saturate(1.1); }
.vcard__body { position: relative; z-index: 2; padding: 1.7rem 1.6rem 1.8rem; display: grid; gap: .55rem; width: 100%; }
.vcard__idx { font-size: .75rem; font-weight: 700; letter-spacing: .2em; color: var(--teal-bright); }
.vcard__body h4 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .03em; color: var(--white); }
.vcard__body p { font-size: .93rem; color: rgba(238,241,240,.78); max-width: 34ch; }
.vcard__bar { width: 2.6rem; height: 3px; background: var(--teal-bright); transition: width .5s var(--ease); }
.vcard:hover .vcard__bar { width: 4.5rem; }

/* ---------- Sócios premium ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 880px) { .founders { grid-template-columns: 1fr; } }
.founder {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/4.6; display: flex; align-items: flex-end;
  border: 1px solid var(--line-light);
}
@media (max-width: 880px) { .founder { aspect-ratio: 4/4.2; } }
.founder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.founder:hover img { transform: scale(1.05); }
.founder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,22,.05) 30%, rgba(6,20,22,.55) 65%, rgba(6,20,22,.95) 100%);
}
.founder__letter {
  position: absolute; top: -1.8rem; right: .4rem; z-index: 1;
  font-size: 13rem; font-weight: 700; line-height: 1; color: rgba(238,241,240,.08);
  pointer-events: none; transition: color .6s;
}
.founder:hover .founder__letter { color: rgba(31,169,174,.18); }
.founder__body { position: relative; z-index: 2; padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: .55rem; width: 100%; }
.founder__role { font-size: .75rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-bright); }
.founder__name { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; text-transform: uppercase; line-height: 1; color: var(--white); }
.founder__force {
  display: inline-flex; align-items: center; gap: .6rem;
  font-style: italic; color: var(--teal-soft); font-size: 1.05rem;
}
.founder__force::before { content: ''; width: 1.8rem; height: 1px; background: var(--teal-bright); }
.founder__bio { color: rgba(238,241,240,.78); font-size: .95rem; max-width: 46ch; }
.founder__quote {
  margin-top: .5rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.18);
  font-size: .92rem; color: rgba(238,241,240,.6); font-style: italic;
}

/* ---------- Sede: colagem horizontal com profundidade ---------- */
.hpin { position: relative; overflow: hidden; background: var(--ink); }
.hpin__ghost {
  position: absolute; top: 50%; left: 4vw; transform: translateY(-50%); z-index: 0;
  font-size: clamp(9rem, 30vw, 26rem); font-weight: 700; text-transform: uppercase;
  white-space: nowrap; line-height: 1; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(238,241,240,.1);
  pointer-events: none; will-change: transform; user-select: none;
}
.hpin__stage { height: 100vh; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 1; }
.hpin__track { display: flex; align-items: center; padding-inline: var(--gutter); will-change: transform; }
.hpin__intro { flex: none; width: min(430px, 78vw); display: grid; gap: 1.3rem; margin-right: clamp(3rem, 7vw, 6rem); }
.hpin__track figure {
  flex: none; border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.75);
  will-change: transform;
}
.hpin__track figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s;
  filter: brightness(.92) saturate(.95);
}
.hpin__track figure:hover img { transform: scale(1.07); filter: brightness(1.05) saturate(1.05); }
.hpin__track figure::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  pointer-events: none;
}
.hp-a { width: clamp(380px, 38vw, 660px); height: 62vh; z-index: 2; }
.hp-b { width: clamp(220px, 21vw, 360px); height: 34vh; margin-left: clamp(-4rem, -3vw, -2rem); margin-top: -34vh; z-index: 3; }
.hp-c { width: clamp(280px, 27vw, 460px); height: 48vh; margin-left: clamp(2.5rem, 5vw, 4.5rem); margin-top: 22vh; z-index: 1; }
.hp-d { width: clamp(320px, 32vw, 560px); height: 56vh; margin-left: clamp(3rem, 6vw, 5rem); margin-top: -14vh; z-index: 2; }
.hp-e { width: clamp(200px, 19vw, 320px); height: 30vh; margin-left: clamp(-3.5rem, -2.5vw, -1.5rem); margin-top: 30vh; z-index: 3; }
.hpin__counter {
  position: absolute; left: var(--gutter); bottom: 2rem; z-index: 5;
  display: flex; align-items: baseline; gap: .5rem;
  font-weight: 700; letter-spacing: .1em;
}
.hpin__counter b { font-size: 1.6rem; color: var(--teal-bright); }
.hpin__counter span { font-size: .8rem; color: rgba(238,241,240,.5); }
.hpin__progress {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 1.4rem; z-index: 5;
  height: 2px; background: rgba(255,255,255,.12);
}
.hpin__progress i { display: block; height: 100%; width: 100%; background: var(--teal-bright); transform: scaleX(0); transform-origin: left; }
@media (max-width: 880px) {
  .hpin__ghost { display: none; }
  .hpin__stage { height: auto; padding-block: 4rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hpin__track { padding-block: 1rem; gap: 1rem; }
  .hpin__track figure { width: 78vw !important; height: 320px !important; margin: 0 !important; }
  .hpin__progress, .hpin__counter { display: none; }
}

/* ============================================================
   RODADA 3 — soluções, frota, setores, contato, rodapé
   ============================================================ */

/* ---------- Banda de vídeo com zoom no scroll ---------- */
.zoomband { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--ink); }
.zoomband__inner {
  position: relative; overflow: hidden; border-radius: clamp(14px, 2vw, 26px);
  height: clamp(480px, 86vh, 820px); margin-inline: var(--gutter);
  will-change: transform;
}
.zoomband__inner video, .zoomband__inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.zoomband__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,22,.35), rgba(6,20,22,.15) 40%, rgba(6,20,22,.82)); }
.zoomband__content {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(2rem, 4.5vw, 4rem); display: grid; gap: 1.3rem; justify-items: start;
}
.zoomband__chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.zoomband__chip {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .65rem 1.2rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px);
  background: rgba(6,20,22,.35);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(238,241,240,.92);
}
.zoomband__chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); }

/* ---------- Frase com preenchimento de cor no scroll ---------- */
[data-fill] { line-height: 1.15; }
[data-fill] .wf { display: inline-block; color: rgba(238,241,240,.14); transition: none; }
[data-fill] .wf--accent { font-style: normal; }
.section--light [data-fill] .wf { color: rgba(6,20,22,.14); }

/* ---------- Por que a Gondim (grid robusto) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  padding: 1.8rem 1.6rem; display: grid; gap: .9rem; align-content: start;
  transition: transform .5s var(--ease), border-color .4s;
}
.why-item::after {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--teal-bright), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.why-item:hover { transform: translateY(-8px); border-color: rgba(31,169,174,.5); }
.why-item:hover::after { transform: scaleX(1); }
.why-item__top { display: flex; align-items: center; justify-content: space-between; }
.why-item__num { font-size: .8rem; font-weight: 700; letter-spacing: .18em; color: var(--teal-bright); }
.why-item__icon {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(31,169,174,.45); color: var(--teal-bright);
  transition: background .4s, color .4s, transform .5s var(--ease);
}
.why-item:hover .why-item__icon { background: var(--teal); color: var(--white); transform: rotate(-8deg) scale(1.06); }
.why-item__icon svg { width: 18px; height: 18px; }
.why-item h4 { font-size: 1.12rem; text-transform: uppercase; letter-spacing: .03em; line-height: 1.25; }
.why-item p { font-size: .93rem; color: var(--txt-dark-soft); }

/* ---------- Showcase de veículos (painéis expansivos) ---------- */
.showcase { display: flex; gap: 8px; height: clamp(540px, 88vh, 860px); padding-inline: 8px; }
.showcase__item {
  position: relative; flex: 1; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; transition: flex .9s var(--ease);
  min-width: 0;
}
.showcase__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) brightness(.78); transition: filter .7s, transform 1.4s var(--ease);
}
.showcase__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,22,.25) 0%, transparent 40%, rgba(6,20,22,.88) 100%);
}
.showcase__item:hover, .showcase__item.is-active { flex: 3.4; }
.showcase__item:hover img, .showcase__item.is-active img { filter: saturate(1.05) brightness(1); transform: scale(1.04); }
.showcase__label {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%) rotate(180deg); z-index: 2;
  writing-mode: vertical-rl; white-space: nowrap;
  font-size: 1rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(238,241,240,.85); transition: opacity .4s;
}
.showcase__item:hover .showcase__label, .showcase__item.is-active .showcase__label { opacity: 0; }
.showcase__num {
  position: absolute; top: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .8rem; font-weight: 700; letter-spacing: .15em; color: var(--teal-bright);
  transition: all .5s var(--ease);
}
.showcase__item:hover .showcase__num, .showcase__item.is-active .showcase__num { left: 2rem; transform: none; }
.showcase__info {
  position: absolute; left: 2rem; right: 2rem; bottom: 2rem; z-index: 2;
  display: grid; gap: .6rem;
  opacity: 0; transform: translateY(26px); transition: opacity .55s .15s, transform .65s .15s var(--ease);
  pointer-events: none;
}
.showcase__item:hover .showcase__info, .showcase__item.is-active .showcase__info { opacity: 1; transform: translateY(0); }
.showcase__info h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); text-transform: uppercase; line-height: 1.08; color: var(--white); }
.showcase__info p { font-size: .95rem; color: rgba(238,241,240,.8); max-width: 44ch; }
.showcase__info .pill-row .pill { border-color: rgba(255,255,255,.3); color: rgba(238,241,240,.85); font-size: .72rem; padding: .35rem .85rem; }
@media (max-width: 880px) {
  .showcase { flex-direction: column; height: auto; }
  .showcase__item { min-height: 130px; flex: none; transition: min-height .7s var(--ease); }
  .showcase__item:hover, .showcase__item.is-active { min-height: 420px; flex: none; }
  .showcase__label { left: 1.4rem; bottom: 1.2rem; transform: none; writing-mode: horizontal-tb; }
  .showcase__num { left: auto; right: 1.4rem; top: 1.2rem; transform: none; }
  .showcase__info h3 { white-space: normal; }
}

/* ---------- Processo (linha desenhada) ---------- */
.process { position: relative; max-width: 1080px; margin-inline: auto; --pgap: clamp(3rem, 8vw, 6rem); display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--pgap); }
.process::before {
  content: ''; position: absolute; left: 50%; top: 10px; bottom: 10px; width: 1px;
  background: var(--line-dark); transform: translateX(-50%);
}
.process__progress {
  position: absolute; left: 50%; top: 10px; bottom: 10px; width: 3px;
  transform: translateX(-50%); transform-origin: top;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal));
  scale: 1 0;
}
.process__item { position: relative; padding-block: clamp(1.6rem, 3.5vw, 2.6rem); display: grid; gap: .7rem; }
.process__item:nth-child(odd) { grid-column: 1; text-align: right; justify-items: end; }
.process__item:nth-child(even) { grid-column: 2; transform: translateY(55%); justify-items: start; }
.process__badge {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--petrol); border: 1px solid rgba(31,169,174,.5);
  font-weight: 700; color: var(--teal-bright); font-size: 1.05rem;
  position: absolute; top: 50%; margin-top: -26px; z-index: 2;
}
.process__item:nth-child(odd) .process__badge { right: calc(-.5 * var(--pgap) - 26px); }
.process__item:nth-child(even) .process__badge { left: calc(-.5 * var(--pgap) - 26px); }
.process__item h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); text-transform: uppercase; letter-spacing: .03em; }
.process__item p { color: var(--txt-dark-soft); max-width: 38ch; }
.process__tag { font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-bright); }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; }
  .process::before, .process__progress { left: 10px; transform: none; }
  .process__item:nth-child(odd), .process__item:nth-child(even) {
    grid-column: 1; text-align: left; justify-items: start; transform: none;
    padding-left: 3.4rem;
  }
  .process__item:nth-child(odd) .process__badge, .process__item:nth-child(even) .process__badge { left: -16px; right: auto; width: 44px; height: 44px; margin-top: -22px; }
}

/* ---------- Setor público: cards com ícones ---------- */
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1020px) { .icon-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .icon-cards { grid-template-columns: 1fr; } }
.icon-card {
  border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white);
  padding: 2rem 1.7rem; display: grid; gap: 1rem; align-content: start;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.icon-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -24px rgba(6,20,22,.25); }
.icon-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(0,109,113,.1); color: var(--teal);
  transition: background .4s, color .4s, transform .5s var(--ease);
}
.icon-card:hover .icon-card__icon { background: var(--teal); color: var(--white); transform: rotate(-6deg) scale(1.05); }
.icon-card__icon svg { width: 26px; height: 26px; }
.icon-card h4 { font-size: 1.08rem; text-transform: uppercase; letter-spacing: .03em; }
.icon-card p { font-size: .92rem; color: var(--txt-light-soft); }

/* ---------- Setor privado: spotlight com preview ---------- */
.spotlight { border-top: 1px solid var(--line-light); }
.spot-row {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center; padding: clamp(1.5rem, 2.8vw, 2.3rem) 0;
  border-bottom: 1px solid var(--line-light); cursor: pointer;
  transition: padding-left .5s var(--ease);
}
.spot-row:hover { padding-left: 1.4rem; }
.spot-row__num { font-size: .82rem; font-weight: 700; color: var(--teal); letter-spacing: .12em; }
.spot-row__name {
  font-size: clamp(1.6rem, 4vw, 3.2rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: -.015em; line-height: 1.05; transition: color .4s;
}
.spot-row:hover .spot-row__name { color: var(--teal); }
.spot-row__tag { font-size: .85rem; color: var(--txt-light-soft); max-width: 30ch; text-align: right; transition: color .4s; }
@media (max-width: 700px) { .spot-row__tag { display: none; } .spot-row { grid-template-columns: auto 1fr; } }
.spot-preview {
  position: fixed; top: 0; left: 0; z-index: 60; width: clamp(240px, 24vw, 360px); aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden; pointer-events: none;
  opacity: 0; transform: scale(.86); transition: opacity .35s, transform .45s var(--ease);
  box-shadow: 0 30px 70px -20px rgba(6,20,22,.55);
}
.spot-preview.is-on { opacity: 1; transform: scale(1); }
.spot-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s; }
.spot-preview img.is-show { opacity: 1; }

/* ---------- O que combatemos (riscado) ---------- */
.enemies { margin-top: clamp(2rem, 4vw, 3rem); }
.enemy {
  position: relative; display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.2rem, 2.4vw, 1.9rem) 0; border-bottom: 1px solid var(--line-dark);
}
.enemy__x {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(31,169,174,.5); color: var(--teal-bright);
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
}
.enemy__text {
  position: relative; font-size: clamp(1.3rem, 3.4vw, 2.6rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1;
  color: rgba(238,241,240,.3);
}
.enemy__text i {
  position: absolute; left: -2%; right: auto; top: 50%; width: 104%; height: 3px;
  background: var(--teal-bright); display: block; transform-origin: left;
}
.enemy__fix { padding-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Rodapé enxuto ---------- */
.footer__grid--3 { grid-template-columns: 1.6fr 1fr 1.1fr; }
@media (max-width: 880px) { .footer__grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid--3 { grid-template-columns: 1fr; } }
.footer__contact { display: grid; gap: .9rem; justify-items: start; }
.footer__contact a.mail { font-size: 1.05rem; font-weight: 300; color: var(--paper); }
.footer__contact a.mail:hover { color: var(--teal-bright); }

/* ---------- Select customizado ---------- */
.field select.is-enhanced { display: none; }
.csel { position: relative; }
.csel__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: 10px; padding: 1rem 1.1rem; color: rgba(238,241,240,.45);
  font-family: inherit; font-size: 1rem; cursor: pointer; text-align: left;
  transition: border-color .3s, background .3s, color .3s;
}
.csel__trigger:hover { border-color: rgba(31,169,174,.5); }
.csel.is-open .csel__trigger, .csel__trigger.has-value { color: var(--paper); }
.csel.is-open .csel__trigger { border-color: var(--teal-bright); background: rgba(31,169,174,.06); }
.csel__chevron { flex: none; width: 12px; height: 8px; transition: transform .35s var(--ease); color: var(--teal-bright); }
.csel.is-open .csel__chevron { transform: rotate(180deg); }
.csel__list {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  background: rgba(10,36,39,.92);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(31,169,174,.35); border-radius: 12px;
  padding: .45rem; display: grid; gap: 2px;
  max-height: 264px; overflow: auto;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.65);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s, transform .4s var(--ease);
}
.csel.is-open .csel__list { opacity: 1; transform: translateY(0); pointer-events: auto; }
.csel__opt {
  padding: .68rem .9rem; border-radius: 8px; font-size: .95rem;
  color: var(--txt-dark-soft); cursor: pointer;
  transition: background .22s, color .22s, padding-left .3s var(--ease);
}
.csel__opt:hover { background: rgba(0,109,113,.4); color: var(--white); padding-left: 1.15rem; }
.csel__opt.is-sel { background: var(--teal); color: var(--white); }
.csel__list::-webkit-scrollbar { width: 6px; }
.csel__list::-webkit-scrollbar-thumb { background: rgba(31,169,174,.4); border-radius: 3px; }
