/* ═══════════════════════════════════════════════
   K2 Environmental Assets · Brand System v2.0
   ═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --void:       #1C1C18;
  --void-2:     #222220;
  --void-3:     #2A2A26;
  --bone:       #EAE2CE;
  --bone-dim:   rgba(234, 226, 206, 0.68);
  --bone-faint: rgba(234, 226, 206, 0.13);
  --slate:      #1A2535;
  --slate-2:    #243348;
  --slate-light:#4A6080;
  --copper:     #C8904A;
  --copper-dim: rgba(200, 144, 74, 0.5);

  --font-display:   'Josefin Sans', sans-serif;
  --font-editorial: 'Instrument Serif', serif;
  --font-mono:      'DM Mono', monospace;

  --container: min(1200px, 92vw);
  --nav-h:     64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-mono);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container { width: var(--container); margin-inline: auto; }
.section { padding-block: clamp(80px, 12vw, 140px); }
section[id] { scroll-margin-top: var(--nav-h); }

/* ── Typography ── */
.label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.label-xs {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  line-height: 1.4;
}
.body-mono {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 13.5px);
  line-height: 1.75;
  color: var(--bone);
}
.section-label { margin-bottom: clamp(40px, 6vw, 72px); }
.section-title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pull-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--bone);
  border-left: 2px solid var(--copper);
  padding-left: 20px;
  margin-block: 32px;
  line-height: 1.5;
}
.copper       { color: var(--copper); }
.slate-text   { color: var(--slate-light); }
.dim-text     { color: var(--bone-dim); }
.mt-4         { margin-top: 4px; }
.mt-12        { margin-top: 12px; }
.mt-16        { margin-top: 16px; }
.mt-20        { margin-top: 20px; }
.mt-24        { margin-top: 24px; }
.mt-32        { margin-top: 32px; }
.mb-12        { margin-bottom: 12px; }
.mb-16        { margin-bottom: 16px; }
.mb-20        { margin-bottom: 20px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(28, 28, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(28, 28, 24, 0.97); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark { height: 32px; width: auto; }
.logo-mark--sm { height: 26px; }
.logo-official {
  height: 48px;
  width: auto;
}
.logo-official--footer {
  height: 32px;
  opacity: 0.65;
}
.logo-sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--bone-dim);
  display: none;
}
@media (min-width: 480px) { .logo-sub { display: block; } }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}
.nav__link {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--bone); }
.nav__link--cta {
  color: var(--bone);
  border: 1px solid rgba(234, 226, 206, 0.2);
  padding: 7px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.nav__link--cta:hover {
  border-color: var(--copper);
  background: rgba(200, 144, 74, 0.08);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(28, 28, 24, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--container);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(234, 226, 206, 0.08);
  }
  .nav__links.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: 14px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(234, 226, 206, 0.07);
    width: 100%;
  }
  .nav__link--cta { border: none; border-bottom: 1px solid rgba(234, 226, 206, 0.07); padding: 14px 0; }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
/* ── Background Boxes ── */
.hero__boxes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.boxes__grid {
  position: absolute;
  top: -25%;
  left: 25%;
  display: flex;
  flex-direction: row;
  pointer-events: auto;
  transform: translate(-40%, -60%) skewX(-48deg) skewY(14deg) scale(1.05) translateZ(0);
  will-change: transform;
}
.box-col {
  display: flex;
  flex-direction: column;
}
.box-cell {
  width: 64px;
  height: 32px;
  border-right: 1px solid rgba(234, 226, 206, 0.018);
  border-top: 1px solid rgba(234, 226, 206, 0.018);
  position: relative;
  flex-shrink: 0;
}
.box-col:first-child .box-cell {
  border-left: 1px solid rgba(234, 226, 206, 0.018);
}
.box-crosshair {
  position: absolute;
  top: -14px;
  left: -22px;
  width: 40px;
  height: 24px;
  fill: none;
  stroke: rgba(234, 226, 206, 0.03);
  stroke-width: 1;
  pointer-events: none;
  overflow: visible;
}
.hero__boxes-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1C1C18;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 60% 50%, transparent 15%, black 72%);
  mask-image: radial-gradient(ellipse 95% 85% at 60% 50%, transparent 15%, black 72%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(80px, 14vw, 140px);
  padding-top: clamp(40px, 8vw, 80px);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 32px;
}
.hero__char--carbon {
  font-size: 0.28em;
  letter-spacing: 0.18em;
  color: var(--copper);
  vertical-align: middle;
  margin-left: 0.5em;
}
.hero__tagline {
  font-family: var(--font-mono);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(16px, 2.2vw, 26px);
  line-height: 1.6;
  max-width: 520px;
  color: var(--bone);
  margin-bottom: 0;
}

/* ── Hero CTAs ── */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-cta {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}
.hero-cta:hover { transform: translateY(-1px); }
.hero-cta--primary {
  background: var(--bone);
  color: var(--void);
  border: 1px solid var(--bone);
}
.hero-cta--primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--void);
}
.hero-cta--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(234, 226, 206, 0.22);
}
.hero-cta--ghost:hover {
  border-color: rgba(234, 226, 206, 0.6);
  background: rgba(234, 226, 206, 0.05);
}

/* ── Hero HUD (top-right data cluster) ── */
.hero__hud {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  right: clamp(20px, 5vw, 64px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}
.hero__hud-coord {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.hero__hud-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__hud-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(234, 226, 206, 0.28);
  display: block;
  margin-bottom: 5px;
}
.hero__hud-val {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(234, 226, 206, 0.55);
  display: block;
}
.hero__hud-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  animation: hud-pulse 2.8s ease-in-out infinite;
}
.hero__hud-status .hero__hud-label { margin-bottom: 0; }
@keyframes hud-pulse {
  0%, 100% { opacity: 0.55; box-shadow: 0 0 0 0 rgba(200, 144, 74, 0.5); }
  50%       { opacity: 1;    box-shadow: 0 0 0 5px rgba(200, 144, 74, 0); }
}
@media (max-width: 767px) { .hero__hud { display: none; } }

.hero__scroll {
  position: absolute;
  bottom: 28px; right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--bone), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════
   MANIFESTO
══════════════════════════════════ */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
}
@media (min-width: 768px) {
  .manifesto__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.manifesto__left .section-title { margin-bottom: 28px; }
.voice-card {
  border: 1px solid rgba(234, 226, 206, 0.09);
  background: var(--void-2);
  padding: 24px;
}
.voice-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.voice-icon { font-size: 18px; line-height: 1; }
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voice-list li {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.voice-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bone-dim);
}

/* ══════════════════════════════════
   PROJETO
══════════════════════════════════ */
.projeto__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (min-width: 768px) {
  .projeto__top { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Data Table */
.data-table { display: flex; flex-direction: column; }
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
}
.data-row:first-child { border-top: 1px solid rgba(234, 226, 206, 0.07); }
.data-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  white-space: nowrap;
}
.data-val {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  text-align: right;
}
.data-val--lg { font-size: 18px; font-weight: 300; }

/* UC List */
.uc-block { border-top: 1px solid rgba(234, 226, 206, 0.07); padding-top: 20px; }
.uc-list { display: flex; flex-direction: column; gap: 0; }
.uc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.06);
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12px;
  gap: 12px;
}

/* Info cards */
.projeto__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 768px) { .projeto__info { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: var(--void-2);
  border: 1px solid rgba(234, 226, 206, 0.07);
  padding: 28px;
}

/* Differentials */
.diff-grid {
  margin-bottom: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(234, 226, 206, 0.1);
  padding-top: 32px;
}
.diff-grid__label { margin-bottom: 28px; }
.diff-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px)  { .diff-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .diff-items { grid-template-columns: repeat(5, 1fr); } }
.diff-item {
  border-left: 2px solid rgba(200, 144, 74, 0.25);
  padding: 16px 16px 16px 18px;
  background: var(--void-2);
}
.diff-item .num {
  display: block;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 100;
  line-height: 1;
  margin-bottom: 12px;
}
.diff-item p {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--bone);
}

/* Asset statement */
.asset-statement {
  background: var(--slate);
  padding: clamp(28px, 4vw, 48px);
  border-left: 3px solid var(--copper);
}
.asset-statement .editorial {
  font-size: clamp(16px, 2.2vw, 22px);
  margin-bottom: 24px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(234, 226, 206, 0.2);
  padding: 5px 10px;
  color: var(--bone-dim);
}

/* ══════════════════════════════════
   TECNOLOGIA · ORBITAL COMPONENT
══════════════════════════════════ */
.tecnologia__header {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.tecnologia__header .section-title {
  font-size: clamp(28px, 3.8vw, 56px);
  white-space: nowrap;
}

/* Orbital wrapper — desktop flex, mobile stacked */
.orbit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 900px) {
  .orbit-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
}

/* Orbital system */
.orbit-system {
  position: relative;
  width: min(420px, 88vw);
  height: min(420px, 88vw);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .orbit-system {
    width: 480px;
    height: 480px;
  }
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(234, 226, 206, 0.1);
  pointer-events: none;
}
.orbit-ring--inner { width: 60%; height: 60%; }
.orbit-ring--outer { width: 86%; height: 86%; }

/* Hub */
.orbit-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--void);
  border: 1px solid rgba(200, 144, 74, 0.45);
  border-radius: 50%;
  z-index: 10;
  overflow: visible;
}
.orbit-hub__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 144, 74, 0.2);
  animation: hub-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.orbit-hub__pulse::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 144, 74, 0.08);
  animation: hub-pulse 2.8s ease-in-out 0.6s infinite;
}
@keyframes hub-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.4; }
}
.orbit-hub__logo {
  width: 64px;
  height: auto;
  opacity: 0.85;
  display: block;
}
.orbit-hub__hint {
  color: var(--copper);
  letter-spacing: 0.2em;
  font-size: 7px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.orbit-hub:hover .orbit-hub__hint { opacity: 1; }
.orbit-hub svg { width: 52px; height: auto; margin-bottom: 4px; }

/* Satellite nodes */
.orbit-sat {
  position: absolute;
  left: 50%; top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 0.3s ease;
}
.orbit-sat__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bone-dim);
  border: 1px solid var(--bone);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.orbit-sat__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bone-dim);
  line-height: 1.3;
  max-width: 72px;
  transition: color 0.25s;
  pointer-events: none;
}
.orbit-sat:hover .orbit-sat__dot,
.orbit-sat.selected .orbit-sat__dot {
  background: var(--copper);
  border-color: var(--copper);
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(200, 144, 74, 0.5);
}
.orbit-sat:hover .orbit-sat__label,
.orbit-sat.selected .orbit-sat__label {
  color: var(--copper);
}
.orbit-sat.dimmed { opacity: 0.3; }

/* Detail panel */
.orbit-detail {
  width: min(100%, 420px);
  position: relative;
  transition: border-color 0.35s ease, background 0.35s ease, padding 0.35s ease;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
}
.orbit-detail.active {
  border-color: rgba(200, 144, 74, 0.35);
  background: var(--void-2);
  padding: 32px;
  min-height: 340px;
}
.orbit-placeholder {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0;
}
.orbit-detail.active .orbit-placeholder { display: none; }
.orbit-placeholder__stat {
  display: flex;
  align-items: center;
  gap: 28px;
}
.orbit-placeholder__numblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.orbit-placeholder__unit {
  color: var(--copper);
  letter-spacing: 0.22em;
  font-size: 10px;
}
.orbit-num-wrap {
  position: relative;
  flex-shrink: 0;
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-num-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(200, 144, 74, 0.18);
  animation: num-ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
.orbit-num-wrap::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 8px var(--copper), 0 0 22px rgba(200, 144, 74, 0.6);
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  animation: num-sat-orbit 3.2s linear infinite;
  pointer-events: none;
}
@keyframes num-sat-orbit {
  from { transform: rotate(0deg)   translateX(112px); }
  to   { transform: rotate(360deg) translateX(112px); }
}
@keyframes num-ring-pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1;    }
}
.orbit-placeholder__num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(110px, 14vw, 190px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(234, 226, 206, 0.13);
}
.orbit-placeholder__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.orbit-placeholder__body {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.75;
  color: rgba(234, 226, 206, 0.55);
}
.orbit-placeholder__sub {
  color: var(--copper);
  letter-spacing: 0.16em;
  font-size: 10px;
  opacity: 0.85;
}
.orbit-placeholder__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.orbit-placeholder__cta .label-xs {
  color: rgba(234, 226, 206, 0.25);
  letter-spacing: 0.18em;
}
.orbit-cta-arrow {
  font-size: 14px;
  color: var(--copper);
  animation: cta-bounce 1.6s ease-in-out infinite;
  display: inline-block;
  opacity: 0.8;
}
@keyframes cta-bounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-6px); }
}
.detail-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  font-size: 18px;
  color: var(--bone-dim);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.detail-close:hover { color: var(--bone); }
.detail-agency {
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.detail-name {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--bone);
}
.detail-specs {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-top: 1px solid rgba(234, 226, 206, 0.07);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
}
.spec-label { color: var(--bone-dim); white-space: nowrap; }
.spec-value { color: var(--copper); text-align: right; }
.detail-role-label { margin-bottom: 8px; }
.detail-role-text {
  font-size: 11px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.detail-extra { font-size: 11px; line-height: 1.65; color: var(--bone-dim); }

/* Mobile satellite cards */
.sat-cards { display: none; }
@media (max-width: 639px) {
  .orbit-wrapper { display: none; }
  .sat-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.sat-card {
  border: 1px solid rgba(234, 226, 206, 0.09);
  background: var(--void-2);
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s;
  overflow: hidden;
}
.sat-card:hover { border-color: rgba(200, 144, 74, 0.3); }
.sat-card.open  { border-color: var(--copper); }
.sat-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  gap: 12px;
}
.sat-card__name {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
}
.sat-card__agency { font-size: 9px; color: var(--bone-dim); margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.sat-card__chevron {
  font-size: 12px;
  color: var(--bone-dim);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}
.sat-card.open .sat-card__chevron { transform: rotate(180deg); color: var(--copper); }
.sat-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.sat-card.open .sat-card__body { max-height: 500px; }
.sat-card__content {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(234, 226, 206, 0.08);
}
.sat-card__role {
  font-size: 11px;
  line-height: 1.65;
  color: var(--copper);
  padding: 14px 0 12px;
  letter-spacing: 0.05em;
}
.sat-card__detail { font-size: 11.5px; line-height: 1.7; color: var(--bone-dim); }

/* ══════════════════════════════════
   IBM ENVIZI
══════════════════════════════════ */
.envizi__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 768px) {
  .envizi__header { grid-template-columns: auto 1fr; gap: 48px; }
}
.slate-badge {
  display: inline-block;
  background: var(--slate);
  padding: 6px 14px;
  margin-top: 16px;
  color: var(--slate-light);
  font-size: 9px;
  letter-spacing: 0.18em;
}
.envizi__pull {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.55;
  border-left: 2px solid var(--slate-light);
  padding-left: 20px;
  color: var(--bone);
}
.envizi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 768px) { .envizi__grid { grid-template-columns: 1fr 1fr; } }

.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
}
.feature-item:first-child { border-top: 1px solid rgba(234, 226, 206, 0.07); }
.feature-arrow {
  font-size: 16px;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--bone);
  margin-bottom: 5px;
}
.feature-item p {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--bone-dim);
}

/* CVM Timeline */
/* ── Envizi Panels ── */
.envizi-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(234,226,206,0.07);
  border: 1px solid rgba(234,226,206,0.07);
}
@media (min-width: 640px) {
  .envizi-panels { grid-template-columns: 1fr 1fr 1fr; }
}

.envizi-panel {
  background: rgba(28,28,24,0.95);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.envizi-panel--center { align-items: center; }

.envizi-panel__label {
  color: rgba(234,226,206,0.58);
  letter-spacing: 0.18em;
}
.envizi-panel__big {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Bars */
.envizi-bars { display: flex; flex-direction: column; gap: 10px; }
.envizi-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.envizi-bar-row .label-xs {
  color: rgba(234,226,206,0.55);
  width: 68px;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}
.envizi-bar-track {
  flex: 1;
  height: 2px;
  background: rgba(234,226,206,0.06);
  overflow: hidden;
}
.envizi-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--copper), rgba(200,144,74,0.4));
  transition: width 0s;
}
.envizi-panels.is-visible .envizi-bar {
  width: var(--w);
  transition: width 1.1s cubic-bezier(0.4,0,0.2,1);
}
.envizi-bar-row:nth-child(1) .envizi-bar { transition-delay: 0.1s; }
.envizi-bar-row:nth-child(2) .envizi-bar { transition-delay: 0.2s; }
.envizi-bar-row:nth-child(3) .envizi-bar { transition-delay: 0.3s; }
.envizi-bar-row:nth-child(4) .envizi-bar { transition-delay: 0.4s; }
.envizi-bar-row:nth-child(5) .envizi-bar { transition-delay: 0.5s; }

/* Donut */
.envizi-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.envizi-donut {
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  transform: rotate(-90deg);
  overflow: visible;
}
.donut-seg {
  fill: none;
  stroke-width: 16;
  stroke-linecap: butt;
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.envizi-panels.is-visible .donut-seg { opacity: 1; }
.donut-seg--1 { stroke: var(--copper); transition-delay: 0.2s; }
.donut-seg--2 { stroke: rgba(234,226,206,0.55); transition-delay: 0.35s; }
.donut-seg--3 { stroke: rgba(234,226,206,0.18); transition-delay: 0.5s; }

.envizi-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
}
.envizi-legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.envizi-legend-row .label-xs { color: rgba(234,226,206,0.4); letter-spacing: 0.1em; }
.envizi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Compliance */
.envizi-compliance { display: flex; flex-direction: column; gap: 0; }
.envizi-compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(234,226,206,0.05);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s, transform 0.4s;
}
.envizi-compliance-item:last-child { border-bottom: none; }
.envizi-panels.is-visible .envizi-compliance-item { opacity: 1; transform: none; }
/* fix: show compliance when envizi-detail expander is open */
#envizi-detail.open .envizi-compliance-item { opacity: 1; transform: none; }
.envizi-compliance-item:nth-child(1) { transition-delay: 0.15s; }
.envizi-compliance-item:nth-child(2) { transition-delay: 0.28s; }
.envizi-compliance-item:nth-child(3) { transition-delay: 0.41s; }
.envizi-compliance-item:nth-child(4) { transition-delay: 0.54s; }

.envizi-check {
  color: var(--copper);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.3;
  flex-shrink: 0;
}
.envizi-compliance-name {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin: 0 0 2px;
}
.envizi-compliance .dim-text { font-size: 9px; letter-spacing: 0.12em; }

.envizi__delivery {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.7;
  color: rgba(234,226,206,0.7);
  max-width: 360px;
}

/* ── Envizi law block ── */
.envizi-law {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid rgba(234,226,206,0.07);
}
@media (min-width: 768px) {
  .envizi-law { grid-template-columns: 1fr 1fr; align-items: start; }
}
.envizi-law__plain {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--bone);
  margin: 0 0 8px;
}
.envizi-law__sub {
  font-size: 0.72em;
  color: rgba(234,226,206,0.55);
  display: block;
  margin-top: 0.15em;
}
.envizi-k2-statement {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--bone);
}
.envizi-k2-statement em {
  font-style: normal;
  color: var(--copper);
}
.envizi-k2-statement strong {
  font-weight: 300;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.mt-32 { margin-top: 32px; }
.envizi-flow-down {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-left: 2px;
}
.envizi-flow-between {
  align-items: center;
  padding: 20px 0 0;
}
.envizi-flow-ch {
  font-size: 1.1rem;
  line-height: 0.85;
  color: var(--copper);
  opacity: 0;
  animation: flowPulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(200,144,74,0.7);
}
.envizi-flow-ch:nth-child(1) { animation-delay: 0s; }
.envizi-flow-ch:nth-child(2) { animation-delay: 0.22s; }
.envizi-flow-ch:nth-child(3) { animation-delay: 0.44s; }
@keyframes flowPulse {
  0%          { opacity: 0;   transform: translateY(-3px); }
  35%         { opacity: 0.9; transform: translateY(0); }
  70%         { opacity: 0;   transform: translateY(3px); }
  100%        { opacity: 0; }
}

.mt-80 { margin-top: clamp(48px, 6vw, 80px); }

/* ── Envizi deliver list ── */
.envizi-delivers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.envizi-deliver {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(234,226,206,0.07);
}
.envizi-deliver:first-child { border-top: 1px solid rgba(234,226,206,0.07); }
.envizi-deliver__num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.envizi-deliver__title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--bone);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.envizi-deliver__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(234,226,206,0.5);
  margin: 0;
}

/* ── CVM detail expandable inside law block ── */
.cvm-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--slate);
  padding: clamp(28px, 4vw, 48px);
  border-left: 3px solid var(--slate-light);
}
@media (min-width: 768px) { .cvm-block { grid-template-columns: 1fr 1fr; } }
.cvm-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.cvm-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.08);
}
.cvm-item:last-child { border-bottom: none; }
.cvm-year {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

/* ══════════════════════════════════
   BASE LEGAL
══════════════════════════════════ */
.base-legal { background: var(--void-2); }
.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 56px);
}
@media (min-width: 768px) { .legal-grid { grid-template-columns: 1fr 1fr; } }
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-list li {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.7;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(234, 226, 206, 0.06);
  position: relative;
  color: var(--bone-dim);
}
.legal-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
}
.legal-statement {
  border-top: 1px solid rgba(234, 226, 206, 0.08);
  padding-top: clamp(28px, 4vw, 44px);
}
.legal-quote {
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 720px;
  line-height: 1.5;
  border-left: 2px solid var(--copper);
  padding-left: 22px;
}

/* ══════════════════════════════════
   CONTATO
══════════════════════════════════ */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
}
@media (min-width: 768px) { .contato__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.cta-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover { color: var(--copper); }
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.audience-item {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
  color: var(--bone-dim);
  transition: color 0.2s, padding-left 0.2s;
}
.audience-item:first-child { border-top: 1px solid rgba(234, 226, 206, 0.07); }
.audience-item:hover { color: var(--bone); padding-left: 8px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #141410;
  border-top: 1px solid rgba(234, 226, 206, 0.07);
  padding-block: 48px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--bone-dim);
  border-left: 1px solid rgba(234, 226, 206, 0.15);
  padding-left: 20px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--bone); }
.footer__copy { color: var(--bone-dim); }

/* ══════════════════════════════════
   AESTHETIC LAYER · ELEVATED
══════════════════════════════════ */

/* ── Film grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: -100%;
  width: 300%; height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.034;
  pointer-events: none;
  z-index: 9990;
  will-change: transform;
  animation: grain-anim 0.22s steps(1) infinite;
}
@keyframes grain-anim {
  0%   { transform: translate(0,     0);    }
  14%  { transform: translate(-5%,   8%);   }
  28%  { transform: translate(3%,  -12%);   }
  43%  { transform: translate(-8%,   5%);   }
  57%  { transform: translate(10%,  -3%);   }
  71%  { transform: translate(-4%,  -9%);   }
  85%  { transform: translate(7%,   11%);   }
  100% { transform: translate(-2%,   4%);   }
}

/* ── Custom cursor (fine pointer only) ── */
@media (pointer: fine) {
  html { cursor: none; }
  *, *::before, *::after { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--bone);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.2s, width 0.2s, height 0.2s, opacity 0.2s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border: 1px solid rgba(234, 226, 206, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              border-color 0.25s, opacity 0.25s;
  will-change: left, top;
}
body.cursor--hover .cursor-dot {
  width: 3px; height: 3px;
  background: var(--copper);
}
body.cursor--hover .cursor-ring {
  width: 48px; height: 48px;
  border-color: rgba(200, 144, 74, 0.55);
}
body.cursor--text .cursor-ring {
  width: 3px; height: 26px;
  border-radius: 2px;
  border-color: var(--bone);
}

/* ── Hero orchestrated entrance ── */
.hero__eyebrow {
  animation: fade-up-hero 0.7s var(--ease-out) 0.05s both;
}
.hero__char {
  display: inline-block;
  animation: char-reveal 1.1s var(--ease-out) both;
  animation-delay: calc(0.25s + var(--d) * 0.12s);
}
.hero__tagline {
  animation: fade-up-hero 0.9s var(--ease-out) 0.4s both;
}
.hero__meta {
  animation: fade-up-hero 0.8s var(--ease-out) 0.82s both;
}
.hero__ctas {
  animation: fade-up-hero 0.8s var(--ease-out) 0.72s both;
}
.hero__scroll {
  animation: fade-up-hero 0.7s var(--ease-out) 1.1s both;
}
.hero__hud {
  animation: fade-up-hero 0.9s var(--ease-out) 1.3s both;
}
.hero__bridge {
  animation: fade-up-hero 0.8s var(--ease-out) 1.5s both;
}

@keyframes char-reveal {
  from {
    opacity: 0;
    transform: translateY(0.12em) scale(0.95);
    filter: blur(10px);
  }
  55% { filter: blur(0); }
  to  {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes fade-up-hero {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-hero-visual {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Hero scanlines ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(234, 226, 206, 0.009) 3px,
    rgba(234, 226, 206, 0.009) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* ── Hero bridge to next section ── */
.hero__bridge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(234, 226, 206, 0.07);
  padding: 18px 0;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}
.hero__bridge:hover {
  border-color: rgba(234, 226, 206, 0.16);
  background: rgba(234, 226, 206, 0.02);
}
.hero__bridge-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__bridge-num {
  color: var(--copper);
  flex-shrink: 0;
  opacity: 0.75;
}
.hero__bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(234,226,206,0.12), transparent);
}
.hero__bridge-title {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(234, 226, 206, 0.35);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.hero__bridge:hover .hero__bridge-title {
  color: rgba(234, 226, 206, 0.6);
}
.hero__bridge-arrow {
  font-size: 12px;
  color: rgba(234, 226, 206, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.3s ease;
}
.hero__bridge:hover .hero__bridge-arrow {
  transform: translateY(3px);
  color: rgba(234, 226, 206, 0.55);
}
@media (max-width: 640px) {
  .hero__bridge-title { display: none; }
}

/* ── Nav hover underline ── */
.nav__link:not(.nav__link--cta) {
  position: relative;
}
.nav__link:not(.nav__link--cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.3s var(--ease-out);
}
.nav__link:not(.nav__link--cta):hover::after { width: 100%; }

/* ── Section divider gradient ── */
.section + .section {
  border-top: 1px solid rgba(234, 226, 206, 0.05);
}

/* ── Orbit SVG overlay ── */
.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.orbit-line {
  stroke: var(--copper);
  stroke-width: 0.7;
  stroke-dasharray: 3 5;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.orbit-line.visible { opacity: 0.45; }

/* Orbit: pulsing glow on selected dot */
.orbit-sat.selected .orbit-sat__dot {
  animation: sat-pulse 1.6s ease-in-out infinite;
}
@keyframes sat-pulse {
  0%, 100% { box-shadow: 0 0 8px  rgba(200, 144, 74, 0.4); }
  50%       { box-shadow: 0 0 20px rgba(200, 144, 74, 0.75); }
}

/* Orbit rings: subtle inner glow when active */
.orbit-ring--inner { box-shadow: inset 0 0 40px rgba(200,144,74,0.03); }
.orbit-ring--outer { box-shadow: inset 0 0 60px rgba(26,37,53,0.08);  }

/* ── Counter number highlight ── */
[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ── Diff items: hover lift ── */
.diff-item {
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
  position: relative;
}
.diff-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 144, 74, 0.55);
}
.diff-item--clickable {
  cursor: pointer;
  padding-bottom: 40px;
}
.diff-item--clickable:hover {
  background: rgba(200, 144, 74, 0.05);
}
.diff-item__cta {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(200, 144, 74, 0.55);
  transition: color 0.2s;
}
.diff-item--clickable:hover .diff-item__cta {
  color: rgba(200, 144, 74, 0.9);
}

/* ── Diff modal ── */
.diff-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 24px;
}
.diff-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.diff-modal {
  background: #16150f;
  border: 1px solid rgba(200, 144, 74, 0.18);
  border-left: 2px solid rgba(200, 144, 74, 0.55);
  border-radius: 6px;
  padding: 40px 44px 44px;
  max-width: 560px;
  width: 100%;
  transform: translateY(18px);
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1);
}
.diff-modal-overlay.active .diff-modal {
  transform: translateY(0);
}
.diff-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.diff-modal__num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 28px;
  color: rgba(200, 144, 74, 0.6);
  line-height: 1;
}
.diff-modal__close {
  background: none;
  border: none;
  color: rgba(234, 226, 206, 0.35);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.diff-modal__close:hover { color: var(--bone); }
.diff-modal__title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 20px;
}
.diff-modal__body {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(234, 226, 206, 0.72);
}

/* ── Asset statement: inset copper glow on reveal ── */
.asset-statement {
  transition: box-shadow 1s var(--ease-out) 0.35s;
}
.asset-statement.visible {
  box-shadow: inset 6px 0 40px -18px rgba(200,144,74,0.3);
}

/* ── Feature items: hover copper tick ── */
.feature-item {
  position: relative;
  transition: background 0.25s;
}
.feature-item:hover {
  background: rgba(200, 144, 74, 0.03);
}

/* ── Audience items: hover indent ── */
.audience-item {
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.audience-item::before {
  content: '→';
  display: inline-block;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  color: var(--copper);
  transition: width 0.3s var(--ease-out), margin-right 0.3s var(--ease-out);
  vertical-align: middle;
}
.audience-item:hover::before {
  width: 16px;
  margin-right: 6px;
}

/* ── CTA link hover ── */
.cta-link {
  transition: color 0.25s, letter-spacing 0.3s var(--ease-out), border-color 0.25s;
}
.cta-link:hover {
  color: var(--copper);
  letter-spacing: 0.1em;
  border-color: var(--copper);
}

/* ── Voice cards: subtle border glow ── */
.voice-card {
  transition: border-color 0.3s;
}
.voice-card:hover {
  border-color: rgba(234, 226, 206, 0.18);
}

/* ── Legal list item reveal ── */
.legal-list li {
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
}
.legal-list li:hover {
  color: var(--bone);
  padding-left: 22px;
}

/* ── Section label: copper dot before ── */
.section-label::before {
  content: '·';
  color: var(--copper);
  margin-right: 6px;
}

/* ══════════════════════════════════
   EXPANDABLE SECTIONS
══════════════════════════════════ */
.expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease-out);
}
.expandable.open {
  max-height: 3000px;
}

/* Expand button */
.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid rgba(234, 226, 206, 0.15);
  padding: 12px 18px;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.expand-btn:hover,
.expand-btn.open {
  color: var(--bone);
  border-color: var(--copper);
  background: rgba(200, 144, 74, 0.05);
}
.expand-btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.expand-btn.open .expand-btn__arrow {
  transform: rotate(90deg);
}
.projeto__expand-bar {
  margin-top: clamp(32px, 4vw, 48px);
}

/* ══════════════════════════════════
   MANIFESTO · IMPACT LAYOUT
══════════════════════════════════ */
/* ── Manifesto rotating globe ── */
.manifesto {
  position: relative;
  overflow: hidden;
}
.manifesto__globe {
  position: absolute;
  right: clamp(0px, 3vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  width:  clamp(280px, 34vw, 440px);
  height: clamp(280px, 34vw, 440px);
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 42%);
  mask-image: linear-gradient(to right, transparent 0%, black 42%);
}
@media (max-width: 900px) { .manifesto__globe { display: none; } }

.manifesto__impact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 768px) {
  .manifesto__impact { grid-template-columns: 1fr 1fr; }
}
.manifesto__title {
  font-size: clamp(36px, 5.5vw, 68px);
}
.manifesto__statement {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bone);
  grid-column: 1 / -1;
}
@media (min-width: 901px) {
  .manifesto__statement { max-width: 740px; }
}
.manifesto__statement--sub {
  font-size: clamp(20px, 2.8vw, 38px);
  color: rgba(234, 226, 206, 0.72);
}
.manifesto__globe-btn {
  position: absolute;
  right: calc(clamp(0px, 3vw, 60px) + clamp(150px, 19vw, 250px));
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
}
@media (max-width: 900px) { .manifesto__globe-btn { display: none; } }
.manifesto__cta-col {
  display: flex;
  align-items: center;
}
.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(234, 226, 206, 0.1);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-right: 1px solid rgba(234, 226, 206, 0.07);
  padding-right: 16px;
}
.pillar:last-child { border-right: none; }
.pillar strong {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12px;
  color: var(--bone);
  line-height: 1.4;
}
.manifesto__expanded {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(234, 226, 206, 0.07);
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 768px) {
  .manifesto__expanded { grid-template-columns: 1fr 1fr; }
}
.voice-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ══════════════════════════════════
   DRAWER — SOBRE A K2
══════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 28, 24, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: min(520px, 92vw);
  background: var(--void);
  border-left: 1px solid rgba(234, 226, 206, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  overflow: hidden;
}
.drawer.open {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
  flex-shrink: 0;
}
.drawer__label {
  color: var(--copper);
  letter-spacing: 0.18em;
}
.drawer__close {
  background: transparent;
  border: 1px solid rgba(234, 226, 206, 0.12);
  color: rgba(234, 226, 206, 0.5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}
.drawer__close:hover {
  color: var(--bone);
  border-color: rgba(234, 226, 206, 0.3);
}
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 40px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(234, 226, 206, 0.1) transparent;
}
.drawer__lede {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: var(--bone);
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
}
.drawer__axes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.drawer__axis {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
}
.drawer__axis-num {
  color: var(--copper);
  flex-shrink: 0;
  padding-top: 2px;
  opacity: 0.8;
}
.drawer__axis-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 8px;
}
.drawer__axis-body {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(234, 226, 206, 0.55);
}
.drawer__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(234, 226, 206, 0.6);
  border-left: 2px solid var(--copper);
  padding-left: 20px;
  margin: 0;
}

/* ══════════════════════════════════
   PROJETO · KPI LAYOUT
══════════════════════════════════ */
/* ── Project tabs ── */
.proj-tabs {
  display: flex;
  gap: 0;
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(234, 226, 206, 0.1);
}
.proj-tab {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(234, 226, 206, 0.35);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 28px 12px 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.proj-tab--active {
  color: var(--bone);
  border-bottom-color: var(--copper);
}
.proj-panel--hidden { display: none; }

/* ── Entrega cards ── */
.entrega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(234, 226, 206, 0.07);
  border: 1px solid rgba(234, 226, 206, 0.07);
}
@media (min-width: 768px) {
  .entrega-grid { grid-template-columns: repeat(3, 1fr); }
}
.entrega-card {
  background: var(--void);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.entrega-card__num { opacity: 0.7; }
.entrega-card__title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--bone);
}
.entrega-card__vintage {
  color: rgba(234, 226, 206, 0.4);
  letter-spacing: 0.12em;
}
.entrega-card__desc {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(234, 226, 206, 0.45);
  margin-top: 4px;
}

.projeto__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 768px) {
  .projeto__hero { grid-template-columns: 1fr 1fr; }
}
.projeto__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(234, 226, 206, 0.07);
  border: 1px solid rgba(234, 226, 206, 0.07);
  align-self: start;
}
.kpi-card {
  background: var(--void-2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kpi-label { display: block; }
.kpi-val {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.2;
  color: var(--bone);
}
.kpi-val-count { display: inline-block; }
@keyframes kpiCountGlow {
  0%,100% { text-shadow: none; }
  50%     { text-shadow: 0 0 14px rgba(200,144,74,0.65); }
}
.kpi-val-count.count-done { animation: kpiCountGlow 3.2s ease-in-out infinite; }
.kpi-card--wide { grid-column: span 2; }
.projeto__detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(40px, 5vw, 56px);
}
@media (min-width: 640px) {
  .projeto__detail-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .projeto__detail-inner--3col { grid-template-columns: 1fr 1fr auto; align-items: start; }
}
.mt-48 { margin-top: clamp(32px, 5vw, 48px); }

/* ══════════════════════════════════
   ENVIZI · HERO LAYOUT
══════════════════════════════════ */
.envizi__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 56px);
}
@media (min-width: 768px) {
  .envizi__hero { grid-template-columns: 1fr 1.5fr; }
}
.envizi__hero-right { }
.envizi__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(234, 226, 206, 0.07);
}
.highlight-num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

/* ── IBM logo lockup ── */
.envizi__brand-col { }
.ibm-lockup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ibm-logo {
  width: 100px;
  height: auto;
  display: block;
  opacity: 0.85;
}
.ibm-product-name {
  color: var(--bone-dim);
  letter-spacing: 0.18em;
}
.envizi__title {
  font-size: clamp(28px, 4vw, 48px);
}

/* ── Envizi pillars (headline tags) ── */
.envizi-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.envizi-pillar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--copper);
  border: 1px solid rgba(200,144,74,0.3);
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ── Envizi category rows (gestão operacional) ── */
.envizi-cat-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--copper);
  margin: 0;
}
.envizi-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.envizi-cat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.envizi-cat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  opacity: 0.7;
}
.envizi-cat-name {
  flex: 1;
  color: rgba(234,226,206,0.7);
}
.envizi-cat-scope {
  color: rgba(234,226,206,0.55);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ── Envizi steps (processo K2) ── */
.envizi-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.envizi-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 226, 206, 0.08);
}
.envizi-step:last-child { border-bottom: none; padding-bottom: 0; }
.envizi-step__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding-top: 2px;
  flex-shrink: 0;
}
.envizi-step__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ── Envizi expandable technical header ── */
.envizi-tech-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(234, 226, 206, 0.1);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .envizi-tech-header { grid-template-columns: 1fr; }
}
.envizi-tech-escopos { display: flex; flex-direction: column; }
.envizi-tech-compliance { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════
   TECH DASHBOARD — LIVE ELEMENTS
═══════════════════════════════════════════════ */

/* Donut: animate from 0 to full values when .open */
#envizi-detail .donut-seg {
  opacity: 1;
  stroke-dasharray: 0 239 !important;
  transition: stroke-dasharray 0.9s cubic-bezier(0.23,1,0.32,1);
}
#envizi-detail.open .donut-seg--3 { stroke-dasharray: 55  239 !important; transition-delay: 0.2s; }
#envizi-detail.open .donut-seg--2 { stroke-dasharray: 103 239 !important; transition-delay: 0.55s; }
#envizi-detail.open .donut-seg--1 { stroke-dasharray: 81  239 !important; transition-delay: 0.9s; }

/* Live status bar */
.tech-live-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0 20px;
  border-bottom: 1px solid rgba(234,226,206,0.06);
  margin-bottom: 28px;
}
.tech-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--copper);
  border: 1px solid rgba(200,144,74,0.3);
  border-radius: 20px;
  padding: 3px 10px;
}
.tech-live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.2; transform: scale(0.5); }
}
#techClock { margin-left: auto; }

.envizi-partner-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(234,226,206,0.06);
}
.envizi-partner-strip__link { display: flex; align-items: center; }
.envizi-partner-strip__logo {
  height: 26px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}
.envizi-partner-strip__link:hover .envizi-partner-strip__logo { opacity: 1; }

/* Compliance progress bars */
.compliance-bar {
  height: 1px;
  background: rgba(234,226,206,0.07);
  margin-top: 7px;
  overflow: hidden;
  border-radius: 1px;
}
.compliance-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--copper), rgba(200,144,74,0.35));
  transition: width 0.9s cubic-bezier(0.23,1,0.32,1);
}
#envizi-detail.open .envizi-compliance-item:nth-child(1) .compliance-bar__fill { width: var(--pct); transition-delay: 0.45s; }
#envizi-detail.open .envizi-compliance-item:nth-child(2) .compliance-bar__fill { width: var(--pct); transition-delay: 0.65s; }
#envizi-detail.open .envizi-compliance-item:nth-child(3) .compliance-bar__fill { width: var(--pct); transition-delay: 0.85s; }
#envizi-detail.open .envizi-compliance-item:nth-child(4) .compliance-bar__fill { width: var(--pct); transition-delay: 1.05s; }

/* Checkmarks pulse when section is open */
@keyframes checkPulseOn {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}
#envizi-detail.open .envizi-check {
  animation: checkPulseOn 2.6s ease-in-out infinite;
}
#envizi-detail.open .envizi-compliance-item:nth-child(2) .envizi-check { animation-delay: 0.65s; }
#envizi-detail.open .envizi-compliance-item:nth-child(3) .envizi-check { animation-delay: 1.3s; }
#envizi-detail.open .envizi-compliance-item:nth-child(4) .envizi-check { animation-delay: 1.95s; }

/* Feature status blinking dots */
.feat-status-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 7px;
  margin-right: 8px;
  animation: featDotBlink 2.8s ease-in-out infinite;
}
@keyframes featDotBlink {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.85; }
}
.feature-item { display: flex; align-items: flex-start; }

/* Sector strip center highlight */
.envizi-sectors__item {
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
}
.envizi-sectors__item.active {
  opacity: 1 !important;
  transform: translateY(-7px) scale(1.14) !important;
}
.envizi-sectors__item.active svg {
  filter: drop-shadow(0 0 7px rgba(200,144,74,0.55));
}
.envizi-sectors__item.active .envizi-sectors__label {
  color: rgba(234,226,206,0.9);
}

/* ══════════════════════════════════════════════
   IBM ENVIZI FEATURE CARDS
═══════════════════════════════════════════════ */
.envizi-product-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mt-16  { margin-top: 16px; }
.mt-40  { margin-top: 40px; }

/* Perspective wrapper for the 3D tilted grid */
.envizi-feat-grid-3d {
  margin-top: 64px;
}
.envizi-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 639px) {
  .envizi-feat-grid { grid-template-columns: 1fr; }
  .envizi-feat-grid-3d { margin-top: 24px; }
}
@keyframes cardBorderGlow {
  0%, 100% { box-shadow: 0 0 0 0 transparent,
                          inset 0 0 0 0 transparent; }
  50%       { box-shadow: 0 0 18px rgba(200,144,74,0.10),
                          inset 0 0 12px rgba(200,144,74,0.04); }
}
.envizi-feat-card {
  position: relative;
  overflow: hidden;
  background: rgba(14,13,11,0.5);
  border: 1px solid rgba(234,226,206,0.10);
  border-left: 2px solid rgba(200,144,74,0.28);
  border-radius: 8px;
  padding: 26px 30px 26px 26px;
  transition: border-left-color 0.28s ease,
              box-shadow 0.28s ease,
              transform 0.45s cubic-bezier(0.23,1,0.32,1),
              background 0.28s ease;
  cursor: default;
  will-change: transform;
  transform: translateZ(0);
  animation: cardBorderGlow 4s ease-in-out infinite;
}
.envizi-feat-card:nth-child(2) { animation-delay: 1s; }
.envizi-feat-card:nth-child(3) { animation-delay: 2s; }
.envizi-feat-card:nth-child(4) { animation-delay: 3s; }
.envizi-feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(200,144,74,0.13) 0%,
    transparent 58%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.envizi-feat-card:hover {
  border-left-color: rgba(200,144,74,0.65);
  box-shadow: 0 12px 48px rgba(200,144,74,0.12),
              inset 1px 0 24px rgba(200,144,74,0.04);
  transform: translateY(-3px);
  background: rgba(20,18,14,0.68);
}
.envizi-feat-card:hover::after {
  opacity: 1;
}
.envizi-feat-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.envizi-feat-card__num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--copper);
  opacity: 0.75;
}
.envizi-feat-card__tag {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: rgba(234,226,206,0.28);
  border: 1px solid rgba(234,226,206,0.1);
  border-radius: 3px;
  padding: 2px 7px;
  text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s;
}
.envizi-feat-card:hover .envizi-feat-card__tag {
  color: rgba(200,144,74,0.6);
  border-color: rgba(200,144,74,0.25);
}
.envizi-feat-card__title {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 7px;
  line-height: 1.35;
}
.envizi-feat-card__desc {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: rgba(234,226,206,0.60);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  line-height: 1.55;
}
.envizi-feat-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid rgba(234,226,206,0.06);
}
.envizi-feat-card__items li {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: rgba(234,226,206,0.64);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
  transition: color 0.25s;
}
.envizi-feat-card__items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 1.2rem;
  line-height: 0.85;
  opacity: 0.7;
}
.envizi-feat-card:hover .envizi-feat-card__items li {
  color: rgba(234,226,206,0.62);
}
.envizi-feat-card:hover .envizi-feat-card__items li::before {
  opacity: 1;
}
/* card CTA indicator */
.envizi-feat-card {
  cursor: pointer;
}
.envizi-feat-card__cta {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: rgba(200,144,74,0.45);
  transition: color 0.25s;
}
.envizi-feat-card:hover .envizi-feat-card__cta {
  color: rgba(200,144,74,0.85);
}

/* ══════════════════════════════════════════════
   FEAT CARD MODAL
═══════════════════════════════════════════════ */
.feat-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,3,2,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.feat-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.feat-modal {
  background: rgb(10,9,7);
  border: 1px solid rgba(234,226,206,0.1);
  border-left: 3px solid var(--copper);
  border-radius: 8px;
  max-width: 520px;
  width: calc(100% - 40px);
  padding: 36px 40px 40px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.feat-modal-overlay.active .feat-modal {
  transform: translateY(0) scale(1);
}
.feat-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.feat-modal__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feat-modal__num {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: var(--copper);
  opacity: 0.8;
}
.feat-modal__tag {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: rgba(200,144,74,0.65);
  border: 1px solid rgba(200,144,74,0.3);
  border-radius: 3px;
  padding: 3px 9px;
}
.feat-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(234,226,206,0.55);
  font-size: 1rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.feat-modal__close:hover {
  color: rgba(234,226,206,0.8);
}
.feat-modal__title {
  font-family: var(--font-mono);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 10px;
  line-height: 1.3;
}
.feat-modal__desc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(234,226,206,0.68);
  letter-spacing: 0.03em;
  margin: 0 0 24px;
  line-height: 1.6;
}
.feat-modal__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(234,226,206,0.08);
}
.feat-modal__items li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(234,226,206,0.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.feat-modal__items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 1.4rem;
  line-height: 0.8;
}

/* ══════════════════════════════════════════════
   SECTOR GALLERY STRIP
═══════════════════════════════════════════════ */
.envizi-sectors-wrap {
  margin-top: 40px;
}
.envizi-sectors-headline {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: rgba(234,226,206,0.28);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.envizi-sectors {
  position: relative;
  overflow: hidden;
  padding: 8px 0 4px;
}
.envizi-sectors::before,
.envizi-sectors::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.envizi-sectors::before {
  left: 0;
  background: linear-gradient(to right, #1C1C18, transparent);
}
.envizi-sectors::after {
  right: 0;
  background: linear-gradient(to left, #1C1C18, transparent);
}
.envizi-sectors__track {
  display: flex;
  align-items: flex-end;
  gap: 52px;
  width: max-content;
  animation: sectorsScroll 32s linear infinite;
}
.envizi-sectors__track:hover {
  animation-play-state: paused;
}
@keyframes sectorsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.envizi-sectors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.28;
  transition: opacity 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
  cursor: default;
}
.envizi-sectors__item:hover {
  opacity: 0.7;
  transform: translateY(-4px);
}
.envizi-sectors__item svg {
  width: 48px;
  height: 48px;
  color: var(--copper);
}
.envizi-sectors__label {
  font-family: var(--font-mono);
  font-size: 0.46rem;
  letter-spacing: 0.18em;
  color: rgba(234,226,206,0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   TWIN PANELS (conformidade + além)
═══════════════════════════════════════════════ */
.envizi-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(234,226,206,0.07);
}
@media (max-width: 640px) {
  .envizi-twin { grid-template-columns: 1fr; }
}
.envizi-twin__box {
  background: rgba(8, 9, 13, 0.98);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.envizi-twin__box--alt { background: rgba(11, 12, 17, 0.98); }
.envizi-twin__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234,226,206,0.07);
}
.envizi-twin__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.envizi-twin__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.envizi-twin__item.is-visible {
  opacity: 1;
  transform: none;
}
.envizi-twin__check {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}
.envizi-twin__arrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(234,226,206,0.58);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.2s, transform 0.2s;
}
.envizi-twin__item:hover .envizi-twin__arrow {
  color: var(--copper);
  transform: translateX(3px);
}
.envizi-twin__name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  text-transform: uppercase;
  margin: 0 0 3px;
}
.envizi-cta-row { display: flex; justify-content: center; }
@keyframes ctaBorderPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,144,74,0); border-color: rgba(234,226,206,0.18); }
  50%      { box-shadow: 0 0 16px rgba(200,144,74,0.18); border-color: rgba(200,144,74,0.55); }
}
.envizi-cta-row .expand-btn {
  animation: ctaBorderPulse 3.2s ease-in-out infinite;
}

/* ── Benefit cards (stacked deck) ── */
.benefit-cards {
  display: grid;
  grid-template-areas: "stack";
  grid-template-columns: 210px;
  /* extra space so stack overhang is visible */
  padding-right: 32px;
  padding-bottom: 28px;
}
.benefit-card {
  grid-area: stack;
  position: relative;
  width: 210px;
  background: rgba(14,13,11,0.97);
  border: 1px solid rgba(234,226,206,0.1);
  border-radius: 10px;
  padding: 14px 16px 16px;
  transition: transform 0.38s cubic-bezier(0.34,1.4,0.64,1),
              filter 0.38s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  will-change: transform;
  cursor: default;
}
/* dark overlay on back cards, fades on hover */
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background: rgba(10,9,7,0.52);
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.benefit-card:hover { z-index: 20; border-color: rgba(200,144,74,0.38); box-shadow: 0 6px 28px rgba(200,144,74,0.12); }
.benefit-card:hover::before { opacity: 0; }

/* back → front stacking */
.benefit-card--1 { transform: translate(30px, 27px); filter: grayscale(65%); }
.benefit-card--1:hover { transform: translate(30px, 8px); filter: grayscale(0%); }

.benefit-card--2 { transform: translate(20px, 18px); filter: grayscale(40%); }
.benefit-card--2:hover { transform: translate(20px, 4px); filter: grayscale(0%); }

.benefit-card--3 { transform: translate(10px, 9px); filter: grayscale(18%); }
.benefit-card--3:hover { transform: translate(10px, -3px); filter: grayscale(0%); }

/* front card — no overlay */
.benefit-card--4::before { display: none; }
.benefit-card--4:hover { transform: translateY(-7px); }

.benefit-card__num {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  opacity: 0.8;
  display: block;
  margin-bottom: 9px;
  position: relative;
  z-index: 2;
}
.benefit-card__title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 6px;
  line-height: 1.35;
  position: relative;
  z-index: 2;
}
.benefit-card__desc {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(234,226,206,0.68);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════
   EXECUTIVE DASHBOARD (legacy — mantido para expandable)
═══════════════════════════════════════════════ */
:root { --ibm-blue: #0f62fe; }

.envizi-dashboard {
  background: rgba(6, 8, 14, 0.98);
  border: 1px solid rgba(200, 144, 74, 0.18);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-image:
    linear-gradient(rgba(234,226,206,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,226,206,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Header row */
.envizi-dash__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234,226,206,0.06);
}
.envizi-dash__live {
  display: flex;
  align-items: center;
  gap: 8px;
}
.envizi-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* KPI row */
.envizi-dash__kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(234,226,206,0.06);
}
.envizi-dash__kpi {
  background: rgba(6,8,14,0.98);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.envizi-dash__kpi--mid {
  border-left: 1px solid rgba(234,226,206,0.06);
  border-right: 1px solid rgba(234,226,206,0.06);
}
.envizi-dash__kpi-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(234,226,206,0.55);
}
.envizi-dash__kpi-val {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.envizi-kpi--down { color: #f97316; }
.envizi-kpi--up   { color: var(--copper); }
.envizi-dash__kpi-unit {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(234,226,206,0.25);
}

/* Middle: chart + P&L */
.envizi-dash__middle {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  padding-top: 4px;
}
.envizi-dash__section-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(234,226,206,0.28);
  display: block;
  margin-bottom: 10px;
}

/* Bar chart */
.envizi-bc {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 52px;
}
.envizi-bc__bar {
  flex: 1;
  height: 0;
  background: rgba(200,144,74,0.22);
  transition: height 0.7s cubic-bezier(0.4,0,0.2,1);
}
.envizi-bc__bar:nth-child(1) { transition-delay: 0.05s; }
.envizi-bc__bar:nth-child(2) { transition-delay: 0.1s; }
.envizi-bc__bar:nth-child(3) { transition-delay: 0.15s; }
.envizi-bc__bar:nth-child(4) { transition-delay: 0.2s; }
.envizi-bc__bar:nth-child(5) { transition-delay: 0.25s; }
.envizi-bc__bar:nth-child(6) { transition-delay: 0.3s; }
.envizi-bc__bar:nth-child(7) { transition-delay: 0.35s; }
.envizi-bc.is-visible .envizi-bc__bar { height: var(--h); }
.envizi-bc__bar--now { background: var(--copper) !important; }
.envizi-bc__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

/* Carbon P&L */
.envizi-dash__pl { display: flex; flex-direction: column; gap: 6px; }
.envizi-pl__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(234,226,206,0.05);
}
.envizi-pl__row--total {
  border-top: 1px solid rgba(234,226,206,0.12);
  border-bottom: none;
  padding-top: 6px;
  margin-top: 2px;
}

/* Green Finance */
.envizi-dash__finance {
  padding-top: 4px;
  border-top: 1px solid rgba(234,226,206,0.06);
}
.envizi-finance__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.envizi-finance__track {
  height: 3px;
  background: rgba(234,226,206,0.08);
  overflow: hidden;
  margin-bottom: 6px;
}
.envizi-finance__fill {
  width: 0;
  height: 100%;
  background: linear-gradient(to right, var(--copper), var(--ibm-blue));
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.envizi-finance__fill.is-visible { width: 78%; }
.envizi-finance__markers {
  display: flex;
  justify-content: space-between;
}

/* ══════════════════════════════════════════════
   TRANSFORMATION STRIP (antes / depois)
═══════════════════════════════════════════════ */
.envizi-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid rgba(234,226,206,0.07);
  background: rgba(10,10,8,0.6);
}
@media (max-width: 640px) {
  .envizi-transform { grid-template-columns: 1fr; padding: 24px; }
  .envizi-transform__divider { text-align: center; transform: rotate(90deg); }
}
.envizi-transform__list { display: flex; flex-direction: column; gap: 10px; }
.envizi-transform__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.envizi-transform__item--before {
  color: rgba(234,226,206,0.28);
  text-decoration: line-through;
  text-decoration-color: rgba(234,226,206,0.15);
}
.envizi-transform__item--after { color: rgba(234,226,206,0.75); }
.envizi-transform__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(234,226,206,0.55);
}
.envizi-transform__arrow {
  font-size: 1.8rem;
  color: var(--copper);
  opacity: 0.7;
}

/* ══════════════════════════════════════════════
   3 EXECUTIVE CARDS
═══════════════════════════════════════════════ */
.envizi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234,226,206,0.06);
}
@media (max-width: 768px) {
  .envizi-cards { grid-template-columns: 1fr; }
}
.envizi-card {
  background: rgba(8,9,12,0.98);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.envizi-card__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.envizi-card__num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--copper);
  opacity: 0.7;
}
.envizi-card__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.3rem;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin: 0;
}
.envizi-card__intro {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.65;
  color: rgba(234,226,206,0.68);
  letter-spacing: 0.04em;
}
.envizi-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(234,226,206,0.06);
  padding-top: 14px;
}
.envizi-card__list li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(234,226,206,0.55);
  padding-left: 14px;
  position: relative;
}
.envizi-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--copper);
  opacity: 0.5;
}
.envizi-cta { display: flex; }

/* ── Envizi stat counters ── */
.envizi__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234, 226, 206, 0.08);
  border: 1px solid rgba(234, 226, 206, 0.08);
}
@media (max-width: 480px) {
  .envizi__stats { grid-template-columns: 1fr; }
}
.estat {
  background: var(--void-2);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.estat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 1.2s var(--ease-out);
}
.estat.counted::after { width: 100%; }
.estat__num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.estat__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  display: block;
  margin-top: 6px;
}
.estat__sub {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 10px;
  color: var(--bone-dim);
  display: block;
  line-height: 1.5;
}

/* ══════════════════════════════════
   BASE LEGAL · PILLAR LAYOUT
══════════════════════════════════ */
.legal-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 640px) {
  .legal-pillars { grid-template-columns: 1fr 1fr; }
}
.legal-pillar {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(234, 226, 206, 0.07);
  margin: -1px 0 0 -1px;
}
.legal-pillar .expandable {
  border-top: none;
}

/* ══════════════════════════════════
   IMAGES · INTEGRATED ASSETS
══════════════════════════════════ */

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: saturate(0.4) brightness(0.6);
  mix-blend-mode: luminosity;
  transform: scale(1.04);
  animation: hero-img-in 2s var(--ease-out) 0.1s both;
}
@keyframes hero-img-in {
  from { opacity: 0; transform: scale(1.1); }
  to   { opacity: 0.18; transform: scale(1.04); }
}

/* Manifesto image */
.manifesto__image {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.manifesto__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.25) brightness(0.75);
  display: block;
  transition: filter 0.6s var(--ease-out);
}
.manifesto__image:hover img {
  filter: saturate(0.45) brightness(0.85);
}
.manifesto__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--void) 100%);
  z-index: 1;
  pointer-events: none;
}
.manifesto__image-caption {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 2;
  color: var(--bone-dim);
  letter-spacing: 0.22em;
}

/* Envizi visual */
.envizi__visual {
  position: relative;
  margin-bottom: clamp(32px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(234, 226, 206, 0.07);
}
.envizi__visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.2) brightness(0.55);
  display: block;
  transition: filter 0.6s var(--ease-out);
}
.envizi__visual:hover img {
  filter: saturate(0.35) brightness(0.7);
}
.envizi__visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(28,28,24,0.85) 0%, transparent 60%);
  pointer-events: none;
}
.envizi__visual-overlay .label-xs {
  color: var(--bone-dim);
}

/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.form-input {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  color: var(--bone);
  background: var(--void-2);
  border: 1px solid rgba(234, 226, 206, 0.12);
  border-radius: 0;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder {
  color: rgba(234, 226, 206, 0.28);
}
.form-input:focus {
  border-color: var(--copper);
  background: var(--void-3);
}
.form-input:focus + .form-label,
.form-field:focus-within .form-label {
  color: var(--bone);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D8D0BC' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option {
  background: var(--void-2);
  color: var(--bone);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--bone);
  border: none;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.2s, letter-spacing 0.3s var(--ease-out);
  margin-top: 4px;
  width: 100%;
}
.form-submit:hover {
  background: var(--copper);
  letter-spacing: 0.3em;
}
.form-submit__arrow {
  font-size: 16px;
  transition: transform 0.3s var(--ease-out);
}
.form-submit:hover .form-submit__arrow {
  transform: translateX(4px);
}
.form-status {
  min-height: 18px;
  color: var(--copper);
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
}
.form-status:empty { opacity: 0; }

/* Contato section layout update for form */
.contato__meta { border-top: 1px solid rgba(234, 226, 206, 0.07); padding-top: 24px; }

/* ════════════════════════════════════════
   MAPA DE LOCALIZAÇÃO
════════════════════════════════════════ */
.map-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}
@media (max-width: 959px) { .map-widget { width: 100%; } }

.map-widget__label {
  color: rgba(234,226,206,0.4);
  letter-spacing: 0.16em;
}
.map-widget__coords {
  color: rgba(200,144,74,0.65);
  letter-spacing: 0.1em;
}

.projeto-map {
  width: 220px;
  height: 220px;
  background: transparent;
  display: block;
}
@media (max-width: 959px) {
  .projeto-map { width: 100%; height: clamp(180px, 50vw, 280px); }
}

/* ════════════════════════════════════════
   FAUNA PROTEGIDA — strip + modal
════════════════════════════════════════ */
.fauna-section {
  border-top: 1px solid rgba(234,226,206,0.07);
  padding-top: clamp(40px, 5vw, 64px);
}

.fauna-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.fauna-header__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fauna-header .label-xs:first-child {
  color: rgba(234,226,206,0.68);
}
.fauna-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bone);
}
.fauna-context {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(200,144,74,0.6);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.fauna-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(234,226,206,0.5);
  white-space: nowrap;
  text-transform: none;
}
.fauna-hint__arrow {
  color: var(--copper);
  font-size: 13px;
  animation: fauna-arrow 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes fauna-arrow {
  0%, 100% { transform: translateY(0);   opacity: 0.5; }
  50%       { transform: translateY(4px); opacity: 1; }
}

/* Strip */
.fauna-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .fauna-strip {
    display: flex;
    overflow-x: auto;
    gap: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .fauna-strip::-webkit-scrollbar { height: 2px; }
  .fauna-strip::-webkit-scrollbar-track { background: transparent; }
  .fauna-strip::-webkit-scrollbar-thumb { background: rgba(234,226,206,0.15); }
}

/* Tile */
.fauna-tile {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 180px; /* mobile only; grid handles desktop */
}
@media (min-width: 769px) { .fauna-tile { width: auto; } }

.fauna-tile__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(234,226,206,0.04);
}
.fauna-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) brightness(0.75);
  transition: filter 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.fauna-tile:hover .fauna-tile__img-wrap img,
.fauna-tile:focus-visible .fauna-tile__img-wrap img {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.04);
}

/* Persistent bottom gradient + protection label */
.fauna-tile__img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(28,28,24,0.92) 0%, rgba(28,28,24,0.3) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* "ESPÉCIE PROTEGIDA" label always visible at bottom of image */
.fauna-tile__protect {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(234,226,206,0.5);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fauna-tile__protect-arrow {
  color: var(--copper);
  font-size: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
.fauna-tile:hover .fauna-tile__protect {
  color: rgba(234,226,206,0.85);
}
.fauna-tile:hover .fauna-tile__protect-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Full hover CTA overlay */
.fauna-tile__img-wrap::after {
  content: 'CONHECER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--void);
  background: rgba(200,144,74,0.92);
  padding: 7px 16px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
.fauna-tile:hover .fauna-tile__img-wrap::after,
.fauna-tile:focus-visible .fauna-tile__img-wrap::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* IUCN status badge */
.fauna-tile__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 7px;
  background: rgba(200,144,74,0.9);
  color: var(--void);
  pointer-events: none;
}
.fauna-tile__badge--vu {
  background: rgba(234,226,206,0.75);
}
.fauna-tile__badge--reg {
  background: rgba(26,37,53,0.9);
  color: var(--bone);
  border: 1px solid rgba(234,226,206,0.25);
}

/* Tile labels */
.fauna-tile__name {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.05em;
  color: var(--bone);
  margin: 14px 0 4px;
  line-height: 1.2;
}
.fauna-tile__sci {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 10px;
  color: rgba(200,144,74,0.7);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Tile focus */
.fauna-tile:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: 2px;
}

/* ── Species modal ── */
.species-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,24,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.species-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.species-modal {
  position: fixed;
  inset: 0;
  z-index: 191;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
.species-modal.open { pointer-events: auto; }

.species-modal__inner {
  background: var(--void);
  border: 1px solid rgba(234,226,206,0.08);
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  max-height: 90vh;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.species-modal.open .species-modal__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 600px) {
  .species-modal__inner {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
}

.species-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 192;
  background: none;
  border: 1px solid rgba(234,226,206,0.2);
  color: var(--bone);
  font-size: 22px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  transition: opacity 0.35s 0.1s, border-color 0.2s, background 0.2s;
}
.species-modal.open .species-modal__close { opacity: 1; }
.species-modal__close:hover { background: rgba(234,226,206,0.06); border-color: rgba(234,226,206,0.4); }

.species-modal__img-col {
  overflow: hidden;
  background: rgba(234,226,206,0.03);
  min-height: 320px;
}
.species-modal__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.species-modal__info {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow-y: auto;
}

.species-modal__status {
  letter-spacing: 0.2em;
  padding: 4px 10px;
  display: inline-block;
  width: fit-content;
}
.species-modal__status[data-code="EN"] { background: rgba(200,144,74,0.15); color: var(--copper); border: 1px solid rgba(200,144,74,0.3); }
.species-modal__status[data-code="VU"] { background: rgba(234,226,206,0.06); color: rgba(234,226,206,0.6); border: 1px solid rgba(234,226,206,0.15); }
.species-modal__status[data-code="REG"] { background: rgba(26,37,53,0.6); color: rgba(234,226,206,0.5); border: 1px solid rgba(234,226,206,0.12); }

.species-modal__name {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1;
  margin: 0;
}

.species-modal__sci {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 13px;
  color: var(--copper);
  opacity: 0.75;
  letter-spacing: 0.04em;
  margin: 0;
}

.species-modal__desc {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(234,226,206,0.75);
  margin: 8px 0 0;
}

.species-modal__redd {
  letter-spacing: 0.16em;
  color: rgba(200,144,74,0.5);
  border-top: 1px solid rgba(234,226,206,0.07);
  padding-top: 16px;
  margin-top: auto;
}

/* ── Blue Carbon gallery ── */
.bc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Item base */
.bc-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(234,226,206,0.04);
}
.bc-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.bc-gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.bc-gallery__item--short {
  aspect-ratio: 16/7;
}

/* Brand filter: grayscale + cold slate overlay */
.bc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(55%) brightness(0.7) contrast(1.08) saturate(0.5);
  transition: filter 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Slate cold veil — mimics #1A2535 tint */
.bc-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 37, 53, 0.45);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Hover: lift filter, remove veil */
.bc-gallery__item:hover img {
  filter: grayscale(10%) brightness(0.88) contrast(1.04) saturate(0.85);
  transform: scale(1.03);
}
.bc-gallery__item:hover::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .bc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-gallery__item--wide  { grid-column: span 2; }
  .bc-gallery__item--tall  { grid-row: span 1; aspect-ratio: 4/3; }
  .bc-gallery__item--short { aspect-ratio: 4/3; }
}

/* ── Carbono 14 logo — KPI card ── */
.kpi-card--partner {
  border: 1px solid rgba(200,144,74,0.3);
  background: rgba(200,144,74,0.05);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.kpi-partner-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  flex: 1;
}
.kpi-partner-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0) invert(1);
}
.kpi-partner-link:hover .kpi-partner-logo {
  opacity: 1;
  transform: scale(1.02);
}
.kpi-partner-loc {
  color: rgba(200,144,74,0.7);
  letter-spacing: 0.12em;
}
.kpi-partner-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(234,226,206,0.4);
  text-align: right;
  align-self: center;
  line-height: 1.6;
  flex-shrink: 0;
}

/* ── Blue Carbon partner block ── */
.bc-partner {
  border-top: 1px solid rgba(234,226,206,0.07);
  padding-top: clamp(40px, 5vw, 64px);
}
.bc-partner__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bc-partner__name {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.bc-partner__badge {
  background: rgba(26,37,53,0.8);
  border: 1px solid rgba(234,226,206,0.15);
  color: rgba(234,226,206,0.55);
  padding: 3px 10px;
  letter-spacing: 0.16em;
}
/* Logo no bloco de parceiro */
.bc-partner__logo-link {
  display: inline-block;
  text-decoration: none;
}
.bc-partner__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.bc-partner__logo-link:hover .bc-partner__logo-img { opacity: 1; }
.bc-partner__caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}
@media (max-width: 768px) {
  .bc-partner__caps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   WHATSAPP
══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(234, 226, 206, 0.45);
  border: 1px solid rgba(234, 226, 206, 0.12);
  border-radius: 50%;
  background: rgba(28, 28, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.wa-float svg { width: 20px; height: 20px; }
.wa-float:hover {
  color: rgba(234, 226, 206, 0.9);
  border-color: rgba(234, 226, 206, 0.3);
  background: rgba(28, 28, 24, 0.9);
}

.wa-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(234, 226, 206, 0.55);
  border: 1px solid rgba(234, 226, 206, 0.12);
  padding: 12px 18px;
  border-radius: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.wa-contact-link__icon { width: 16px; height: 16px; flex-shrink: 0; }
.wa-contact-link:hover {
  color: rgba(234, 226, 206, 0.85);
  border-color: rgba(234, 226, 206, 0.28);
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════
   MOBILE — max-width: 639px
   Filosofia: menos texto, mais visual. Menos é mais.
═══════════════════════════════════════════════ */
@media (max-width: 639px) {

  /* ── Cursor: irrelevante em touch ── */
  .cursor-dot, .cursor-ring { display: none !important; }

  /* ── Layout global ── */
  .section { padding-block: 52px; }
  .section-label { margin-bottom: 28px; }
  .section-title { font-size: clamp(28px, 8vw, 42px); }

  /* ─────────────────────────────────────────
     NAV — fix padding var(--container) bugado
  ───────────────────────────────────────── */
  .nav__links {
    padding: 8px 20px 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav__link {
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 20px 0;
  }
  .nav__link--cta {
    margin-top: 4px;
    padding: 20px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(234, 226, 206, 0.07);
  }

  /* ─────────────────────────────────────────
     HERO
  ───────────────────────────────────────── */
  .hero__bridge { gap: 10px; }
  .hero__bridge-btn { padding: 13px 16px; font-size: 9px; }

  /* ─────────────────────────────────────────
     MANIFESTO — restaura o globo em mobile
  ───────────────────────────────────────── */
  .manifesto__globe {
    display: block !important;
    opacity: 0.28;
    width: 100%;
    height: 100%;
  }
  .manifesto__impact { gap: 14px; }
  .manifesto__statement       { font-size: clamp(26px, 7.2vw, 40px); }
  .manifesto__statement--sub  { font-size: clamp(17px, 5vw, 26px); }

  /* ─────────────────────────────────────────
     PROJETOS — visuals first, cortar tabelas
  ───────────────────────────────────────── */
  .proj-tabs { gap: 0; }
  .proj-tab  { font-size: 9px; padding: 10px 12px; flex: 1; text-align: center; }

  .projeto__kpis { grid-template-columns: 1fr 1fr; }
  .kpi-val       { font-size: clamp(18px, 5vw, 28px); }

  /* Ocultar: tabela de dados, lista de UCs — mantém só o mapa */
  .uc-block     { display: none; }
  .data-table   { display: none; }
  .projeto__detail-inner--3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .projeto__detail-inner--3col > div:not(:has(.map-widget)) { display: none; }
  .map-widget   { width: 100%; min-height: 180px; }
  .projeto-map  { height: 180px; }

  /* Ocultar: diferenciais texto pesado */
  .diff-grid { display: none; }

  /* Fauna: preservar — são fotos reais */
  .fauna-header { flex-direction: column; gap: 16px; }
  .fauna-count  { font-size: clamp(20px, 6vw, 32px); }

  /* ─────────────────────────────────────────
     TECNOLOGIA — restaura o sistema orbital
  ───────────────────────────────────────── */
  .orbit-wrapper { display: flex !important; }
  .sat-cards     { display: none !important; }
  .orbit-system  {
    width: min(340px, 88vw);
    height: min(340px, 88vw);
  }
  /* O detalhe do satélite fica abaixo do orbit */
  .orbit-detail  { max-width: 100%; }

  /* ─────────────────────────────────────────
     ENVIZI — ocultar lei, manter produto
  ───────────────────────────────────────── */
  /* Lei: mostra headline + parágrafo, esconde detalhe CVM */
  .envizi-law           { gap: 24px; padding-bottom: 32px; }
  .envizi-law__plain    { font-size: 13px; }
  #cvm-detail           { display: none !important; }
  .envizi-law__toggle   { margin-top: 14px; }
  .envizi-flow-down,
  .envizi-flow-between  { display: none; }
  .envizi-cta-row       { display: none; }

  .envizi-product-header { margin-top: 20px; gap: 14px; }
  .ibm-logo              { height: 18px; width: auto; }
  .envizi-k2-statement   { margin-top: 12px; font-size: clamp(16px, 5vw, 22px); line-height: 1.4; }

  /* Cards Envizi: carrossel horizontal deslizável */
  .envizi-feat-grid-3d {
    margin-top: 20px;
    /* Estende fundo das bordas da tela */
    margin-left:  calc(-1 * (100vw - var(--container)) / 2);
    margin-right: calc(-1 * (100vw - var(--container)) / 2);
    padding: 4px calc((100vw - var(--container)) / 2) 20px;
    perspective: none !important;
  }
  .envizi-feat-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    transform: none !important;
  }
  .envizi-feat-grid::-webkit-scrollbar { display: none; }
  .envizi-feat-card {
    min-width: 78vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 20px 18px 20px 16px;
    cursor: pointer;
    transform: none !important;
  }
  .envizi-feat-card__title { font-size: clamp(13px, 3.8vw, 17px); }

  /* Seta piscando como hint de swipe */
  .envizi-feat-grid-3d::after {
    content: '›';
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 100;
    font-size: 28px;
    color: rgba(200, 144, 74, 0.5);
    margin-top: 4px;
    animation: swipeHint 1.8s ease-in-out infinite;
  }
  @keyframes swipeHint {
    0%, 100% { opacity: 0.2; transform: translateX(0); }
    50%       { opacity: 0.8; transform: translateX(5px); }
  }

  /* Sector strip */
  .envizi-sectors-wrap { margin-top: 24px; }
  .envizi-sectors::before,
  .envizi-sectors::after { width: 48px; }
  .envizi-sectors__track { gap: 36px; }
  .envizi-sectors__item  { gap: 8px; }
  .envizi-sectors__item svg { width: 40px; height: 40px; }
  .envizi-sectors__label { font-size: 0.42rem; }

  /* ─────────────────────────────────────────
     MODALS — bottom sheet
  ───────────────────────────────────────── */
  .diff-modal-overlay,
  .feat-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .diff-modal {
    border-radius: 16px 16px 0 0;
    border-left: none;
    border-top: 2px solid rgba(200, 144, 74, 0.55);
    padding: 28px 22px 40px;
    max-width: 100%;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
  }
  .feat-modal {
    border-radius: 16px 16px 0 0;
    padding: 28px 22px 40px;
    max-width: 100%;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
  }
  .diff-modal::before,
  .feat-modal::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: rgba(234, 226, 206, 0.2);
    border-radius: 2px;
    margin: 0 auto 20px;
  }

  /* ─────────────────────────────────────────
     CONTATO
  ───────────────────────────────────────── */
  .contato__grid { gap: 32px; }
  .form-input, .form-textarea { padding: 14px 16px; font-size: 13px; }
  .form-submit { width: 100%; justify-content: center; }

}

/* ══════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════ */
.logo-official--light-only { display: none; }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--bone-dim);
  border: 1px solid rgba(234, 226, 206, 0.14);
  border-radius: 50%;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.theme-toggle--top {
  background: rgba(28, 28, 24, 0.4);
}
.theme-toggle:hover {
  color: var(--bone);
  border-color: rgba(234, 226, 206, 0.32);
}
.theme-toggle__sun,
.theme-toggle__moon { width: 14px; height: 14px; display: block; }
.theme-toggle__moon { display: none; }

.nav__controls--top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(234, 226, 206, 0.14);
  border-radius: 14px;
  padding: 2px;
  background: rgba(28, 28, 24, 0.4);
}
.lang-switch__btn {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  padding: 4px 8px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.lang-switch__btn:hover { color: var(--bone); }
.lang-switch__btn--active { color: var(--bone); background: rgba(200, 144, 74, 0.18); }
@media (max-width: 480px) {
  .lang-switch__btn { padding: 3px 6px; font-size: 8px; }
}

/* ══════════════════════════════════
   LIGHT THEME — DIA
══════════════════════════════════ */
:root[data-theme="light"] {
  --void:        #F3EFE5;
  --void-2:      #EAE5D8;
  --void-3:      #E0DBCC;
  --bone:        #2A2825;
  --bone-dim:    rgba(42, 40, 37, 0.62);
  --bone-faint:  rgba(42, 40, 37, 0.10);
  --slate:       #D4DDE8;
  --slate-2:     #C2D0DC;
  --slate-light: #6080A0;
  --copper:      #B07838;
  --copper-dim:  rgba(176, 120, 56, 0.5);
}

/* Logo swap */
[data-theme="light"] .logo-official--dark-only  { display: none; }
[data-theme="light"] .logo-official--light-only { display: block; }

/* Toggle icon swap */
[data-theme="light"] .theme-toggle__sun  { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }
[data-theme="light"] .theme-toggle       { border-color: rgba(42, 40, 37, 0.16); }
[data-theme="light"] .theme-toggle:hover { border-color: rgba(42, 40, 37, 0.32); }
[data-theme="light"] .theme-toggle--top  { background: rgba(243, 239, 229, 0.5); }
[data-theme="light"] .lang-switch        { border-color: rgba(42, 40, 37, 0.16); background: rgba(243, 239, 229, 0.5); }
[data-theme="light"] .lang-switch__btn:hover { color: var(--bone); }
[data-theme="light"] .lang-switch__btn--active { background: rgba(176, 120, 56, 0.18); }

/* Grain: softer in light */
[data-theme="light"] body::after { opacity: 0.015; }

/* Nav */
[data-theme="light"] .nav {
  background: rgba(243, 239, 229, 0.88);
  border-bottom-color: rgba(42, 40, 37, 0.08);
}
[data-theme="light"] .nav.scrolled { background: rgba(243, 239, 229, 0.97); }
[data-theme="light"] .nav__links {
  background: rgba(243, 239, 229, 0.98);
  border-bottom-color: rgba(42, 40, 37, 0.08);
}
[data-theme="light"] .nav__link      { border-bottom-color: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .nav__link--cta { border-color: rgba(42, 40, 37, 0.2); }
[data-theme="light"] .nav__toggle span { background: var(--bone); }
@media (max-width: 768px) {
  [data-theme="light"] .nav__links { padding: 8px 20px 28px; }
}

/* Hero */
[data-theme="light"] .hero__boxes-mask { background: #F3EFE5; }
[data-theme="light"] .box-cell         { border-color: rgba(42, 40, 37, 0.025); }
[data-theme="light"] .hero__hud-label  { color: rgba(42, 40, 37, 0.38); }
[data-theme="light"] .hero__hud-val    { color: rgba(42, 40, 37, 0.62); }
[data-theme="light"] .hero-cta--ghost  { border-color: rgba(42, 40, 37, 0.22); }
[data-theme="light"] .hero-cta--ghost:hover {
  border-color: rgba(42, 40, 37, 0.5);
  background: rgba(42, 40, 37, 0.04);
}
[data-theme="light"] .hero__bridge-line  { background: linear-gradient(to right, rgba(42,40,37,0.1), transparent); }
[data-theme="light"] .hero__bridge-title { color: rgba(42, 40, 37, 0.38); }
[data-theme="light"] .hero__bridge:hover .hero__bridge-title { color: rgba(42, 40, 37, 0.62); }
[data-theme="light"] .hero__bridge-arrow { color: rgba(42, 40, 37, 0.28); }
[data-theme="light"] .hero__bg-img { opacity: 0.1; mix-blend-mode: multiply; }

/* Manifesto */
[data-theme="light"] .manifesto__statement--sub { color: rgba(42, 40, 37, 0.65); }
[data-theme="light"] .manifesto__globe { opacity: 0.45; }

/* Location map widget */
[data-theme="light"] .map-widget__label { color: rgba(42, 40, 37, 0.42); }

/* Data table + UC list dividers */
[data-theme="light"] .data-row              { border-bottom-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .data-row:first-child  { border-top-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .uc-block              { border-top-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .uc-row                { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .envizi-partner-strip  { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .manifesto__pillars  { border-top-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .pillar              { border-right-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .manifesto__expanded { border-top-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .voice-card          { border-color: rgba(42, 40, 37, 0.1); }

/* Orbital / Tecnologia */
[data-theme="light"] .orbit-ring { border-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .orbit-sat__dot   { background: rgba(42, 40, 37, 0.45); border-color: rgba(42, 40, 37, 0.7); }
[data-theme="light"] .orbit-sat__label { color: rgba(42, 40, 37, 0.62); }
[data-theme="light"] .orbit-placeholder__num  { color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .orbit-placeholder__body { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .orbit-placeholder__cta .label-xs { color: rgba(42, 40, 37, 0.28); }
[data-theme="light"] .orbit-detail.active {
  background: var(--void-2);
  border-color: rgba(176, 120, 56, 0.35);
}
[data-theme="light"] .orbit-hub__logo { filter: brightness(0) saturate(0); }

/* IBM / Envizi */
[data-theme="light"] .ibm-logo { filter: brightness(0) saturate(0); }
[data-theme="light"] .envizi-panels {
  background: rgba(42, 40, 37, 0.07);
  border-color: rgba(42, 40, 37, 0.07);
}
[data-theme="light"] .envizi-panel { background: rgba(243, 239, 229, 0.95); }
[data-theme="light"] .envizi-panel__label { color: rgba(42, 40, 37, 0.62); }
[data-theme="light"] .envizi-bar-row .label-xs { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .envizi-bar-track { background: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .donut-seg--2 { stroke: rgba(42, 40, 37, 0.45); }
[data-theme="light"] .donut-seg--3 { stroke: rgba(42, 40, 37, 0.15); }
[data-theme="light"] .envizi-legend-row .label-xs { color: rgba(42, 40, 37, 0.45); }
[data-theme="light"] .envizi-compliance-item { border-bottom-color: rgba(42, 40, 37, 0.06); }
[data-theme="light"] .envizi__delivery { color: rgba(42, 40, 37, 0.7); }
[data-theme="light"] .envizi-deliver__sub { color: rgba(42, 40, 37, 0.5); }

/* Feat cards */
[data-theme="light"] .envizi-feat-card {
  background: rgba(234, 229, 216, 0.6);
  border-color: rgba(42, 40, 37, 0.1);
  border-left-color: rgba(176, 120, 56, 0.35);
}
[data-theme="light"] .envizi-feat-card:hover {
  background: rgba(229, 223, 210, 0.85);
  border-left-color: rgba(176, 120, 56, 0.7);
}
[data-theme="light"] .envizi-feat-card__tag {
  color: rgba(42, 40, 37, 0.38);
  border-color: rgba(42, 40, 37, 0.12);
}
[data-theme="light"] .envizi-feat-card:hover .envizi-feat-card__tag {
  color: rgba(176, 120, 56, 0.65);
  border-color: rgba(176, 120, 56, 0.28);
}
[data-theme="light"] .envizi-feat-card__desc  { color: rgba(42, 40, 37, 0.65); }
[data-theme="light"] .envizi-feat-card__items { border-top-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .envizi-feat-card__items li { color: rgba(42, 40, 37, 0.65); }
@media (max-width: 639px) {
  [data-theme="light"] .envizi-feat-grid-3d::after { color: rgba(176, 120, 56, 0.5); }
}

/* Feat modal */
[data-theme="light"] .feat-modal-overlay { background: rgba(42, 40, 37, 0.62); }
[data-theme="light"] .feat-modal {
  background: #F3EFE5;
  border-color: rgba(42, 40, 37, 0.12);
  box-shadow: 0 32px 80px rgba(42, 40, 37, 0.15);
}
[data-theme="light"] .feat-modal__close { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .feat-modal__close:hover { color: rgba(42, 40, 37, 0.85); }
[data-theme="light"] .feat-modal__desc { color: rgba(42, 40, 37, 0.68); }
[data-theme="light"] .feat-modal__items { border-top-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .feat-modal__items li { color: rgba(42, 40, 37, 0.65); }

/* Diff modal */
[data-theme="light"] .diff-modal-overlay { background: rgba(42, 40, 37, 0.7); }
[data-theme="light"] .diff-modal {
  background: #F3EFE5;
  border-color: rgba(176, 120, 56, 0.22);
}
[data-theme="light"] .diff-modal__close { color: rgba(42, 40, 37, 0.38); }
[data-theme="light"] .diff-modal__close:hover { color: var(--bone); }
[data-theme="light"] .diff-modal__body { color: rgba(42, 40, 37, 0.72); }

/* Envizi twin / executive cards */
[data-theme="light"] .envizi-twin { background: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .envizi-twin__box,
[data-theme="light"] .envizi-twin__box--alt { background: rgba(243, 239, 229, 0.97); }
[data-theme="light"] .envizi-twin__head  { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .envizi-twin__arrow { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .envizi-twin__item:hover .envizi-twin__arrow { color: var(--copper); }
[data-theme="light"] .envizi-cards { background: rgba(42, 40, 37, 0.06); }
[data-theme="light"] .envizi-card  { background: rgba(243, 239, 229, 0.97); }
[data-theme="light"] .envizi-card__intro { color: rgba(42, 40, 37, 0.65); }
[data-theme="light"] .envizi-card__list  { border-top-color: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .envizi-card__list li { color: rgba(42, 40, 37, 0.58); }

/* Dashboard */
[data-theme="light"] .envizi-dashboard {
  background: rgba(234, 229, 218, 0.98);
  border-color: rgba(176, 120, 56, 0.18);
  background-image:
    linear-gradient(rgba(42,40,37,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,40,37,0.028) 1px, transparent 1px);
}
[data-theme="light"] .envizi-dash__top    { border-bottom-color: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .envizi-dash__kpi-row { background: rgba(42, 40, 37, 0.06); }
[data-theme="light"] .envizi-dash__kpi    { background: rgba(234, 229, 218, 0.98); }
[data-theme="light"] .envizi-dash__kpi--mid { border-color: rgba(42, 40, 37, 0.06); }
[data-theme="light"] .envizi-dash__kpi-label  { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .envizi-dash__kpi-unit   { color: rgba(42, 40, 37, 0.28); }
[data-theme="light"] .envizi-dash__section-label { color: rgba(42, 40, 37, 0.35); }
[data-theme="light"] .envizi-bc__bar  { background: rgba(176, 120, 56, 0.22); }
[data-theme="light"] .envizi-finance__track { background: rgba(42, 40, 37, 0.08); }

/* Entrega / KPI grids */
[data-theme="light"] .entrega-grid { background: rgba(42, 40, 37, 0.07); border-color: rgba(42, 40, 37, 0.07); }
[data-theme="light"] .entrega-card__vintage { color: rgba(42, 40, 37, 0.42); }
[data-theme="light"] .entrega-card__desc    { color: rgba(42, 40, 37, 0.48); }
[data-theme="light"] .projeto__kpis { background: rgba(42, 40, 37, 0.07); border-color: rgba(42, 40, 37, 0.07); }

/* Proj tabs */
[data-theme="light"] .proj-tabs { border-bottom-color: rgba(42, 40, 37, 0.1); }
[data-theme="light"] .proj-tab  { color: rgba(42, 40, 37, 0.38); }
[data-theme="light"] .proj-tab--active { color: var(--bone); }

/* Benefit cards */
[data-theme="light"] .benefit-card {
  background: rgba(234, 229, 217, 0.97);
  border-color: rgba(42, 40, 37, 0.1);
}
[data-theme="light"] .benefit-card:hover { border-color: rgba(176, 120, 56, 0.38); }
[data-theme="light"] .benefit-card::before { background: rgba(243, 239, 229, 0.55); }
[data-theme="light"] .benefit-card__desc   { color: rgba(42, 40, 37, 0.68); }

/* Transform / sectors */
[data-theme="light"] .envizi-transform {
  background: rgba(234, 229, 220, 0.6);
  border-color: rgba(42, 40, 37, 0.08);
}
[data-theme="light"] .envizi-transform__item--before {
  color: rgba(42, 40, 37, 0.3);
  text-decoration-color: rgba(42,40,37,0.15);
}
[data-theme="light"] .envizi-transform__item--after { color: rgba(42, 40, 37, 0.78); }
[data-theme="light"] .envizi-transform__divider { color: rgba(42, 40, 37, 0.55); }
[data-theme="light"] .envizi-sectors::before { background: linear-gradient(to right, #F3EFE5, transparent); }
[data-theme="light"] .envizi-sectors::after  { background: linear-gradient(to left,  #F3EFE5, transparent); }
[data-theme="light"] .envizi-sectors-headline { color: rgba(42, 40, 37, 0.32); }
[data-theme="light"] .envizi-sectors__label   { color: rgba(42, 40, 37, 0.52); }

/* Expand button */
[data-theme="light"] .expand-btn { border-color: rgba(42, 40, 37, 0.18); }
[data-theme="light"] .expand-btn:hover,
[data-theme="light"] .expand-btn.open {
  border-color: var(--copper);
  background: rgba(176, 120, 56, 0.06);
}

/* Drawer */
[data-theme="light"] .drawer-overlay { background: rgba(42, 40, 37, 0.5); }
[data-theme="light"] .drawer         { border-left-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .drawer__header { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .drawer__close  { border-color: rgba(42, 40, 37, 0.15); color: rgba(42, 40, 37, 0.5); }
[data-theme="light"] .drawer__close:hover { border-color: rgba(42, 40, 37, 0.3); color: var(--bone); }
[data-theme="light"] .drawer__lede   { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .drawer__axis   { border-bottom-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .drawer__axis-body { color: rgba(42, 40, 37, 0.58); }
[data-theme="light"] .drawer__quote  { color: rgba(42, 40, 37, 0.62); }

/* Base legal */
[data-theme="light"] .base-legal { background: var(--void-2); }

/* Footer */
[data-theme="light"] .footer { background: #E8E3D5; border-top-color: rgba(42, 40, 37, 0.08); }
[data-theme="light"] .footer__tagline { border-left-color: rgba(42, 40, 37, 0.15); }

/* Cursor */
[data-theme="light"] .cursor-dot  { background: var(--bone); }
[data-theme="light"] .cursor-ring { border-color: rgba(42, 40, 37, 0.35); }
[data-theme="light"] body.cursor--text .cursor-ring { border-color: var(--bone); }

/* WhatsApp */
[data-theme="light"] .wa-float {
  background: rgba(243, 239, 229, 0.8);
  color: rgba(42, 40, 37, 0.55);
  border-color: rgba(42, 40, 37, 0.15);
}
[data-theme="light"] .wa-float:hover {
  color: rgba(42, 40, 37, 0.9);
  border-color: rgba(42, 40, 37, 0.35);
  background: rgba(243, 239, 229, 0.95);
}
[data-theme="light"] .wa-contact-link {
  color: rgba(42, 40, 37, 0.58);
  border-color: rgba(42, 40, 37, 0.15);
}
[data-theme="light"] .wa-contact-link:hover {
  color: rgba(42, 40, 37, 0.85);
  border-color: rgba(42, 40, 37, 0.3);
}

/* Fauna */
[data-theme="light"] .fauna-tile__img-wrap::before {
  background: linear-gradient(to top, rgba(243,239,229,0.92) 0%, rgba(243,239,229,0.3) 55%, transparent 100%);
}
[data-theme="light"] .kpi-partner-logo  { filter: brightness(0) saturate(0); }
[data-theme="light"] .bc-partner__logo-img { filter: brightness(0) saturate(0); }

/* Envizi visual */
[data-theme="light"] .envizi__visual-overlay {
  background: linear-gradient(to top, rgba(243,239,229,0.85) 0%, transparent 60%);
}

/* Form select arrow */
[data-theme="light"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232A2825' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════
   RTL SUPPORT (Arabic) — text direction only,
   layout / flex order stays as designed
══════════════════════════════════ */
html[dir="rtl"] body { direction: ltr; }

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] blockquote,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .body-mono,
html[dir="rtl"] .pull-quote,
html[dir="rtl"] .form-label,
html[dir="rtl"] .form-input,
html[dir="rtl"] .form-select,
html[dir="rtl"] .drawer__lede,
html[dir="rtl"] .drawer__quote,
html[dir="rtl"] .data-val,
html[dir="rtl"] .data-label,
html[dir="rtl"] .uc-row span,
html[dir="rtl"] .kpi-val,
html[dir="rtl"] .kpi-label,
html[dir="rtl"] .fauna-count,
html[dir="rtl"] .fauna-context,
html[dir="rtl"] .entrega-card__title,
html[dir="rtl"] .entrega-card__desc,
html[dir="rtl"] .entrega-card__vintage,
html[dir="rtl"] .envizi-feat-card__title,
html[dir="rtl"] .envizi-compliance-name,
html[dir="rtl"] .diff-item__cta,
html[dir="rtl"] .lang-switch__btn {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .lang-switch__btn { text-align: center; }
