/* ============================================================================
   CALLEVI IMPORTAÇÃO E EXPORTAÇÃO — Design System
   calleviimport.com.br
   ========================================================================= */

/* ---------------------------------------------------------------- 1. TOKENS */
:root {
  /* superfícies */
  --ink:        #04070E;
  --bg:         #060B16;
  --bg-2:       #09101F;
  --surface:    #0C1526;
  --surface-2:  #101C31;
  --surface-3:  #16243C;

  /* traços */
  --line:       rgba(255, 255, 255, .08);
  --line-2:     rgba(255, 255, 255, .14);
  --line-glow:  rgba(76, 141, 255, .38);

  /* texto */
  --tx:         #EAF0FA;
  --tx-2:       #A9B8CE;
  --tx-3:       #6F8098;

  /* marca */
  --blue:       #4C8DFF;
  --blue-deep:  #2563EB;
  --teal:       #19D9C2;
  --gold:       #F0C46A;
  --gold-deep:  #C79A3C;
  --danger:     #FF6B6B;

  --grad:       linear-gradient(115deg, var(--blue) 0%, var(--teal) 100%);
  --grad-soft:  linear-gradient(115deg, rgba(76,141,255,.16), rgba(25,217,194,.14));
  --grad-gold:  linear-gradient(115deg, #F5D89A, #C79A3C);

  /* tipografia */
  --ff-display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-mono:    ui-monospace, 'SF Mono', 'Cascadia Mono', 'Roboto Mono', Menlo, Consolas, monospace;

  /* medidas */
  --wrap:       1240px;
  --wrap-slim:  920px;
  --r-sm:       10px;
  --r:          16px;
  --r-lg:       24px;
  --r-xl:       32px;
  --pad-y:      clamp(72px, 9vw, 140px);

  --shadow:     0 24px 60px -20px rgba(0, 0, 0, .75);
  --shadow-lg:  0 40px 100px -30px rgba(0, 0, 0, .9);

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);

  --header-h:   76px;
  color-scheme: dark;
}

/* ------------------------------------------------------------- 2. RESET/BASE */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--tx-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
}

body::before {
  /* brilho ambiente fixo */
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 620px at 12% -6%, rgba(76, 141, 255, .16), transparent 62%),
    radial-gradient(760px 520px at 92% 4%, rgba(25, 217, 194, .10), transparent 60%);
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(76, 141, 255, .4); color: #fff; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #1D2C46; border-radius: 99px; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: #2C4166; }

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 999;
  background: var(--teal); color: #041210; font-weight: 700;
  padding: 12px 20px; border-radius: 10px; transition: top .2s;
}
.skip:focus { top: 12px; }

/* ----------------------------------------------------------- 3. TIPOGRAFIA */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--tx);
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 700;
  text-wrap: balance;
}

.h-xxl { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; }
.h-xl  { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-lg  { font-size: clamp(1.7rem, 3.1vw, 2.5rem); }
.h-md  { font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.2; }
.h-sm  { font-size: 1.12rem; line-height: 1.3; letter-spacing: -.015em; }

.lead {
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.62;
  color: var(--tx-2);
  max-width: 62ch;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

.grad-tx {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-tx {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.eyebrow--center::after {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.muted { color: var(--tx-3); }
.tx-sm { font-size: .92rem; }
.tx-xs { font-size: .82rem; }

/* --------------------------------------------------------------- 4. LAYOUT */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.wrap--slim { max-width: var(--wrap-slim); }

.section { padding-block: var(--pad-y); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 88px); }
.section--flush-t { padding-top: 0; }
.section--flush-b { padding-bottom: 0; }

.sec-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 18px; }
.sec-head--center p { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split--wide-l { grid-template-columns: 1.08fr .92fr; }
.split--wide-r { grid-template-columns: .92fr 1.08fr; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.stack   { display: flex; flex-direction: column; gap: 18px; }
.row     { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.row--sb { justify-content: space-between; }

.hr {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent);
}

/* -------------------------------------------------------------- 5. BOTÕES */
.btn {
  --btn-bg: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  line-height: 1;
  color: #041018;
  background: var(--btn-bg);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), filter .3s;
  box-shadow: 0 12px 30px -12px rgba(76, 141, 255, .8);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .35s var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(76, 141, 255, .9); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, var(--teal), var(--blue));
  opacity: 0; transition: opacity .4s;
}
.btn:hover::after { opacity: 1; }

.btn--ghost {
  background: rgba(255, 255, 255, .03);
  color: var(--tx);
  border-color: var(--line-2);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn--ghost::after { background: rgba(255, 255, 255, .07); }
.btn--ghost:hover { border-color: var(--line-glow); box-shadow: 0 16px 40px -18px rgba(76, 141, 255, .7); }

.btn--gold { background: var(--grad-gold); color: #1A1204; box-shadow: 0 12px 30px -14px rgba(199, 154, 60, .9); }
.btn--gold::after { background: linear-gradient(115deg, #FFE7B4, #D8A94A); }

.btn--wa { background: #25D366; color: #05270F; box-shadow: 0 12px 30px -14px rgba(37, 211, 102, .8); }
.btn--wa::after { background: #1FBE5A; }

.btn--sm { padding: 11px 20px; font-size: .87rem; }
.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 600; font-size: .93rem;
  color: var(--teal);
  transition: gap .3s var(--ease-out), color .3s;
}
.link-arrow svg { width: 15px; height: 15px; }
.link-arrow:hover { gap: 14px; color: #6FF0DD; }

/* ---------------------------------------------------------------- 6. CHIPS */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  font-size: .8rem;
  font-weight: 500;
  color: var(--tx-2);
  backdrop-filter: blur(10px);
}
.chip--live { border-color: rgba(25, 217, 194, .32); color: #9AEFE2; }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none;
  box-shadow: 0 0 0 0 rgba(25, 217, 194, .7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(25, 217, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 217, 194, 0); }
}

/* --------------------------------------------------------------- 7. HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .45s var(--ease), border-color .45s, backdrop-filter .45s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(6, 11, 22, .82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__tx { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.16rem;
  letter-spacing: .01em; color: #fff;
}
.brand__sub {
  font-family: var(--ff-mono); font-size: .565rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--tx-3); margin-top: 4px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px;
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--tx-2);
  position: relative;
  transition: color .25s, background .25s;
}
.nav a:hover { color: var(--tx); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] { color: var(--tx); }
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}
.burger span {
  display: block; width: 19px; height: 1.8px; border-radius: 2px; background: var(--tx);
  flex: none;
  transition: transform .35s var(--ease-out), opacity .2s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(4, 7, 14, .97);
  backdrop-filter: blur(24px);
  padding: calc(var(--header-h) + 30px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
body.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--tx);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer a span { font-family: var(--ff-mono); font-size: .7rem; color: var(--tx-3); letter-spacing: .1em; }
.drawer .btn { margin-top: 26px; }

.progressbar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 101;
  background: var(--grad);
  width: 0;
  transition: width .1s linear;
}

/* ----------------------------------------------------------------- 8. HERO */
.hero {
  position: relative;
  min-height: min(104vh, 940px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .68;
  transform: scale(1.08);
  animation: slowzoom 26s ease-in-out infinite alternate;
}
@keyframes slowzoom { to { transform: scale(1.16) translateY(-1.4%); } }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,7,14,.74) 0%, rgba(4,7,14,.44) 36%, rgba(6,11,22,.86) 78%, var(--bg) 100%),
    linear-gradient(96deg, rgba(4,7,14,.9) 4%, rgba(4,7,14,.2) 64%, rgba(4,7,14,.52) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 66% at 50% 34%, #000 30%, transparent 78%);
}
.hero .wrap { z-index: 2; }
.hero__inner { max-width: 860px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: normal; display: block; }
.hero .lead { font-size: clamp(1.06rem, 1.6vw, 1.28rem); max-width: 58ch; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__facts {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 780px;
}
.hero__fact { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--tx-3); }
.hero__fact svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: grid; place-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--tx-3);
}
.scroll-hint i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: dropline 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes dropline { 0%,100% { transform: scaleY(.35); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* --------------------------------------------------------- 9. TICKER CÂMBIO */
.fx {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 21, 38, .8), rgba(6, 11, 22, .5));
  backdrop-filter: blur(10px);
}
.fx__inner {
  display: flex; align-items: center; gap: 14px;
  padding-block: 16px; flex-wrap: wrap;
}
.fx__label {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--tx-3);
  padding-right: 18px; border-right: 1px solid var(--line);
  flex: none;
}
.fx__list { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.fx__item {
  display: flex; align-items: baseline; gap: 8px;
  padding: 7px 14px; border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  font-size: .86rem;
}
.fx__cur { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .1em; color: var(--tx-3); }
.fx__val { font-family: var(--ff-display); font-weight: 700; color: var(--tx); font-variant-numeric: tabular-nums; }
.fx__chg { font-size: .74rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.fx__chg.up   { color: #4ADE80; }
.fx__chg.down { color: var(--danger); }
.fx__note { font-size: .72rem; color: var(--tx-3); flex: none; }

/* -------------------------------------------------------------- 10. CARDS */
.card {
  position: relative;
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  overflow: hidden;
  transition: transform .45s var(--ease-out), border-color .45s, background .45s;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(76, 141, 255, .16), transparent 70%);
  opacity: 0; transition: opacity .45s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-glow); }
.card:hover::before { opacity: 1; }

.card__num {
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .16em;
  color: var(--tx-3); margin-bottom: 20px; display: block;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: .945rem; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(76, 141, 255, .22);
  margin-bottom: 22px;
  transition: transform .45s var(--ease-out);
}
.card__icon svg { width: 24px; height: 24px; color: var(--teal); }
.card:hover .card__icon { transform: scale(1.07) rotate(-4deg); }

.card__list { margin-top: 20px; display: grid; gap: 9px; }
.card__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .88rem; color: var(--tx-3);
}
.card__list li::before {
  content: ''; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); margin-top: .55em;
}

/* card destaque */
.card--hi {
  background: linear-gradient(160deg, rgba(76, 141, 255, .13), rgba(25, 217, 194, .05));
  border-color: rgba(76, 141, 255, .3);
}

/* ------------------------------------------------------------ 11. MÉTRICAS */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .008));
  backdrop-filter: blur(12px);
}
.metric { padding: 34px 28px; position: relative; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric__v {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--tx);
  display: flex; align-items: baseline; gap: 2px;
}
.metric__v .suf { font-size: .5em; color: var(--teal); }
.metric__l { margin-top: 12px; font-size: .86rem; color: var(--tx-3); line-height: 1.45; }

/* ------------------------------------------------------------ 12. TIMELINE */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: '';
  position: absolute; left: 27px; top: 18px; bottom: 40px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2) 8%, var(--line-2) 88%, transparent);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  padding-block: 22px;
  align-items: start;
}
.step__badge {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; font-size: .95rem;
  color: var(--tx-2);
  background: var(--surface);
  border: 1px solid var(--line-2);
  position: relative; z-index: 1;
  transition: all .45s var(--ease-out);
}
.step:hover .step__badge,
.step.is-in .step__badge { color: #04121A; background: var(--grad); border-color: transparent; box-shadow: 0 10px 26px -10px rgba(76,141,255,.9); }
.step__body { padding-top: 8px; }
.step__body h3 { margin-bottom: 9px; }
.step__body p { font-size: .94rem; max-width: 62ch; }
.step__meta {
  margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px;
}
.step__meta span {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid var(--line); color: var(--tx-3);
}

/* -------------------------------------------------------------- 13. SETORES */
.sectors { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.sector {
  position: relative;
  aspect-ratio: 1 / 1.06;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .4s;
}
.sector img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.55) brightness(.62) contrast(1.06);
  transform: scale(1.02);
  transition: transform .8s var(--ease-out), filter .6s;
}
.sector::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,7,14,.06) 30%, rgba(4,7,14,.86) 100%);
  transition: background .5s;
}
.sector:hover { transform: translateY(-6px); border-color: var(--line-glow); }
.sector:hover img { transform: scale(1.13); filter: grayscale(0) brightness(.75) contrast(1.04); }
.sector:hover::after { background: linear-gradient(180deg, rgba(9,20,40,.1) 20%, rgba(4,15,30,.9) 100%); }
.sector__tx { padding: 18px 16px; width: 100%; }
.sector__tx b {
  display: block;
  font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
  color: #fff; letter-spacing: -.015em; line-height: 1.22;
}
.sector__tx small {
  display: block; margin-top: 5px;
  font-family: var(--ff-mono); font-size: .63rem; letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------- 14. MAPA */
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(9, 16, 31, .9), rgba(6, 11, 22, .7));
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
}
.map {
  position: relative;
  aspect-ratio: 2400 / 900;
  width: 100%;
}
.map__img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: .34;
  filter: hue-rotate(-6deg);
}
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.map__route {
  fill: none;
  stroke: url(#routeGrad);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 4 5;
  opacity: .55;
  animation: dash 3.4s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -36; } }

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.pin__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(25, 217, 194, .16), 0 0 16px rgba(25, 217, 194, .8);
}
.pin--dest .pin__dot { background: var(--gold); box-shadow: 0 0 0 5px rgba(240,196,106,.16), 0 0 20px rgba(240,196,106,.85); }
.pin__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(25, 217, 194, .55);
  animation: ripple 2.8s var(--ease) infinite;
}
.pin--dest .pin__ring { border-color: rgba(240, 196, 106, .6); }
@keyframes ripple {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}
.pin__label {
  position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .07em;
  white-space: nowrap; color: var(--tx-2);
  background: rgba(6, 11, 22, .78);
  padding: 3px 8px; border-radius: 5px;
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s;
}
.pin:hover .pin__label,
.map-wrap.is-in .pin--dest .pin__label { opacity: 1; }
@media (min-width: 900px) { .pin__label { opacity: .82; } }

.map__legend {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--tx-3);
}
.map__legend span { display: flex; align-items: center; gap: 8px; }
.map__legend i { width: 8px; height: 8px; border-radius: 50%; }

/* --------------------------------------------------------- 15. CALCULADORA */
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(12, 21, 38, .96), rgba(6, 11, 22, .92));
  box-shadow: var(--shadow-lg);
}
.calc__in  { padding: clamp(24px, 3vw, 40px); }
.calc__out {
  padding: clamp(24px, 3vw, 40px);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(600px 320px at 80% 0%, rgba(76, 141, 255, .12), transparent 65%),
    rgba(255, 255, 255, .018);
  position: relative;
}
.calc__title {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 26px; flex-wrap: wrap;
}

.fieldset { border: 0; margin-bottom: 26px; }
.fieldset legend {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  padding: 0;
}
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .8rem; font-weight: 500; color: var(--tx-2);
  display: flex; align-items: center; gap: 6px;
}
.field .hint {
  font-size: .68rem; color: var(--tx-3); cursor: help;
  border: 1px solid var(--line-2); border-radius: 50%;
  width: 15px; height: 15px; display: grid; place-items: center; flex: none;
}
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .pre, .input-wrap .suf {
  position: absolute; font-family: var(--ff-mono); font-size: .76rem; color: var(--tx-3);
  pointer-events: none;
}
.input-wrap .pre { left: 14px; }
.input-wrap .suf { right: 14px; }
.input-wrap:has(.pre) input { padding-left: 40px; }
.input-wrap:has(.suf) input { padding-right: 34px; }

input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: rgba(4, 7, 14, .62);
  color: var(--tx);
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
  transition: border-color .3s, box-shadow .3s, background .3s;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(76, 141, 255, .16);
  background: rgba(4, 7, 14, .9);
}
input::placeholder, textarea::placeholder { color: #56657C; }
textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23A9B8CE' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
select option { background: #0C1526; color: var(--tx); }
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

.result-total {
  padding: 24px;
  border-radius: var(--r);
  background: linear-gradient(140deg, rgba(76, 141, 255, .18), rgba(25, 217, 194, .08));
  border: 1px solid rgba(76, 141, 255, .3);
  margin-bottom: 22px;
}
.result-total small {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tx-2); display: block; margin-bottom: 8px;
}
.result-total b {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.7rem); letter-spacing: -.04em;
  color: #fff; display: block; line-height: 1; font-variant-numeric: tabular-nums;
}
.result-total .u {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.result-total .u div { display: flex; flex-direction: column; gap: 5px; }
.result-total .u span {
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--tx-3);
}
.result-total .u b {
  font-family: var(--ff-display); font-size: 1.24rem; font-weight: 700;
  letter-spacing: -.02em; color: #fff; font-variant-numeric: tabular-nums;
}
.result-total .u b.gold { color: var(--gold); }

.res-rows { display: grid; gap: 1px; background: var(--line); border-radius: var(--r-sm); overflow: hidden; }
.res-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 12px 15px;
  background: rgba(6, 11, 22, .72);
  font-size: .88rem;
}
.res-row span { color: var(--tx-3); display: flex; align-items: center; gap: 8px; }
.res-row span i { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.res-row b { font-family: var(--ff-display); font-weight: 600; color: var(--tx); font-variant-numeric: tabular-nums; }
.res-row--sum { background: rgba(76, 141, 255, .1); }
.res-row--sum b, .res-row--sum span { color: var(--tx); font-weight: 700; }

.bar {
  display: flex; height: 12px; border-radius: 99px; overflow: hidden;
  margin: 20px 0 14px; border: 1px solid var(--line);
}
.bar i { height: 100%; transition: width .6s var(--ease-out); }

.calc__note {
  margin-top: 22px; padding: 14px 16px;
  border-radius: 11px;
  border: 1px solid rgba(240, 196, 106, .22);
  background: rgba(240, 196, 106, .06);
  font-size: .79rem; color: #D9C9A4; line-height: 1.55;
  display: flex; gap: 11px;
}
.calc__note svg { width: 17px; height: 17px; flex: none; color: var(--gold); margin-top: 2px; }

/* ----------------------------------------------------------------- 16. FAQ */
.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .022);
  overflow: hidden;
  transition: border-color .35s, background .35s;
}
.faq__item[open] { border-color: var(--line-glow); background: rgba(76, 141, 255, .05); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 21px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem;
  color: var(--tx); letter-spacing: -.015em;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q i {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform .35s var(--ease-out), background .35s, border-color .35s;
  position: relative;
}
.faq__q i::before, .faq__q i::after {
  content: ''; position: absolute; background: var(--tx-2); border-radius: 2px;
  transition: opacity .3s, background .3s;
}
.faq__q i::before { width: 11px; height: 1.6px; }
.faq__q i::after  { width: 1.6px; height: 11px; }
.faq__item[open] .faq__q i { transform: rotate(90deg); background: var(--grad); border-color: transparent; }
.faq__item[open] .faq__q i::after { opacity: 0; }
.faq__item[open] .faq__q i::before { background: #04121A; }
.faq__a { padding: 0 24px 24px; font-size: .95rem; max-width: 74ch; }
.faq__a p + p { margin-top: 12px; }

/* -------------------------------------------------------------- 17. FORMS */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__ok, .form__err {
  padding: 14px 16px; border-radius: 11px; font-size: .88rem; display: none;
}
.form__ok  { background: rgba(37, 211, 102, .1); border: 1px solid rgba(37, 211, 102, .3); color: #8FEFB4; }
.form__err { background: rgba(255, 107, 107, .1); border: 1px solid rgba(255, 107, 107, .3); color: #FFB4B4; }
.form__ok.show, .form__err.show { display: block; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .8rem; color: var(--tx-3); }
.consent input { width: 17px; height: 17px; accent-color: var(--teal); margin-top: 2px; flex: none; }
.consent a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------- 18. BANDA / MÍDIA */
.band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 400px;
  display: flex; align-items: center;
  padding: clamp(34px, 5vw, 76px);
  isolation: isolate;
}
.band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg, rgba(4,7,14,.93) 6%, rgba(4,7,14,.6) 52%, rgba(4,7,14,.24) 100%);
}
.band__tx { max-width: 620px; }

.media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media--tall img { aspect-ratio: 3/4; }
.media--wide img { aspect-ratio: 16/10; }
.media__badge {
  position: absolute; left: 18px; bottom: 18px;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(6, 11, 22, .82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--tx-2);
}
.media-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.media-stack .media:first-child { grid-row: span 2; }
.media-stack .media:first-child img { aspect-ratio: 3/4.35; }

/* --------------------------------------------------------------- 19. CTA */
.cta-box {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid rgba(76, 141, 255, .26);
  padding: clamp(38px, 5.5vw, 76px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(760px 400px at 50% 0%, rgba(76, 141, 255, .22), transparent 68%),
    linear-gradient(160deg, rgba(12, 21, 38, .96), rgba(6, 11, 22, .9));
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 72%);
  pointer-events: none;
}
.cta-box > * { position: relative; }
.cta-box .row { justify-content: center; margin-top: 34px; }

/* ------------------------------------------------------------- 20. FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 11, 22, .4), var(--ink));
  padding-top: clamp(56px, 7vw, 92px);
  margin-top: clamp(60px, 8vw, 110px);
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer h4 {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--tx-3); font-weight: 500;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .91rem; color: var(--tx-2); transition: color .25s, padding-left .25s; }
.footer__links a:hover { color: var(--teal); padding-left: 5px; }
.footer__brand p { font-size: .91rem; max-width: 40ch; margin-top: 20px; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact a, .footer__contact p {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .91rem; color: var(--tx-2); transition: color .25s;
}
.footer__contact a:hover { color: var(--teal); }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--teal); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--tx-3);
}
.footer__bottom a:hover { color: var(--teal); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

.cnae-list {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 22px;
}
.cnae-list span {
  font-family: var(--ff-mono); font-size: .63rem; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 6px;
  border: 1px solid var(--line); color: var(--tx-3);
}

/* ------------------------------------------------------------ 21. FLUTUANTE */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px 13px 15px;
  border-radius: 999px;
  background: #25D366;
  color: #04270F;
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, .65);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s, box-shadow .3s;
}
.wa-float.show { transform: none; opacity: 1; }
.wa-float:hover { box-shadow: 0 22px 52px -14px rgba(37, 211, 102, .85); }
.wa-float svg { width: 24px; height: 24px; flex: none; }

.to-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 89;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  background: rgba(12, 21, 38, .86);
  backdrop-filter: blur(12px);
  color: var(--tx-2);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s, transform .3s, color .3s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); color: var(--teal); }
.to-top svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------- 22. PAGE HEADER */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(70px, 9vw, 130px));
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,7,14,.82), rgba(6,11,22,.72) 45%, var(--bg) 100%);
}
.page-hero .wrap { z-index: 1; }
.page-hero .lead { margin-top: 20px; }

.crumbs {
  display: flex; flex-wrap: wrap; gap: 9px; align-items: center;
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--tx-3); margin-bottom: 22px;
}
.crumbs a:hover { color: var(--teal); }
.crumbs i { opacity: .5; font-style: normal; }

/* ---------------------------------------------------------- 23. ANIMAÇÕES */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  will-change: opacity, transform;
}
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; }
.rv-d5 { transition-delay: .40s; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 46px; width: max-content;
  animation: slide 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-weight: 600; font-size: .93rem;
  color: var(--tx-3); white-space: nowrap;
}
.marquee__item i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: .8; }

/* -------------------------------------------------------- 24. RESPONSIVO */
@media (max-width: 1080px) {
  .sectors { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 0; }
  .metric:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__cta .btn { display: none; }
  .header__cta { margin-left: auto; }
  .split, .split--wide-l, .split--wide-r, .grid-2, .grid-3, .grid-4, .form__row, .f-grid {
    grid-template-columns: 1fr;
  }
  .calc { grid-template-columns: 1fr; }
  .calc__out { border-left: 0; border-top: 1px solid var(--line); }
  .split--rev > *:first-child { order: 2; }
  .sectors { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 74px); }
  .media-stack .media:first-child { grid-row: auto; }
  .media-stack .media:first-child img { aspect-ratio: 4/3; }
  .fx__label { border-right: 0; padding-right: 0; width: 100%; }
}

@media (max-width: 620px) {
  .wrap { width: calc(100% - 32px); }
  .sectors { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .metrics { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; border-top: 1px solid var(--line); }
  .metric { padding: 26px 22px; }
  .card { padding: 24px; }
  .step { grid-template-columns: 44px 1fr; gap: 18px; }
  .step__badge { width: 44px; height: 44px; font-size: .85rem; }
  .timeline::before { left: 21px; }
  .footer__top { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
  .drawer a { font-size: 1.42rem; }
  .map__legend { font-size: .76rem; }
  .scroll-hint { display: none; }
  .pin__label { display: none; }
  .pin--dest .pin__label { display: block; }
}

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

@media print {
  .header, .drawer, .wa-float, .to-top, .scroll-hint, .footer__bottom, .progressbar { display: none !important; }
  body { background: #fff; color: #111; }
  body::before { display: none; }
  .card, .calc, .result-total { border-color: #ccc; background: #fff; }
  h1, h2, h3, .result-total b, .res-row b { color: #000; }
}
