/* ============================================
   IRON - SISTEMA DE DESIGN
   Paleta: Azul Marinho + Dourado Refinado
   ============================================ */

:root {
  /* Cores Base - Azul Marinho */
  --blue-dark: #0a1628;
  --blue-rich: #0d1f3c;
  --blue-soft: #142b4a;
  --blue-mid: #1a3456;
  --blue-light: #23406a;
  --blue-subtle: #2e4f7a;

  /* Cinzas Azulados */
  --gray-blue-deep: #3a4a60;
  --gray-blue-mid: #6a7a90;
  --gray-blue-soft: #9aaac0;
  --gray-blue-light: #b8c4d4;
  --gray-blue-lighter: #d4dce8;

  /* Destaque - Dourado */
  --gold-primary: #c9a84c;
  --gold-bright: #dbb95c;
  --gold-soft: #e8c86a;
  --gold-subtle: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --gold-glow-strong: rgba(201, 168, 76, 0.15);

  /* Branco e Cinza Claro */
  --white-pure: #ffffff;
  --white-soft: #f0efed;
  --white-muted: #d0ceca;

  /* Fontes */
  --font-display: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
  --font-body: 'Inter', 'SF Pro Text', -apple-system, sans-serif;

  /* Tamanhos */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;
  --text-8xl: 8rem;

  /* Pesos */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Sombras */
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-btn: 0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-btn-hover: 0 16px 48px rgba(201, 168, 76, 0.3);
}

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

html {
  scroll-behavior: smooth;
  background: var(--blue-dark);
}

body {
  background: var(--blue-dark);
  color: var(--white-soft);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body:has(.mobile-nav.open) {
  overflow: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--blue-rich);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-blue-deep);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

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

.wrap {
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
  position: relative;
}

/* ===== NOISE ===== */
.noise {
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: noise 0.2s steps(2) infinite;
}

@keyframes noise {
  0% { transform: translate(0); }
  25% { transform: translate(2%, 1%); }
  50% { transform: translate(-1%, 2%); }
  75% { transform: translate(1%, -1%); }
  100% { transform: translate(0); }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 32px;
  background: var(--gold-primary);
  color: var(--blue-dark);
  border-radius: 8px;
  font-weight: var(--weight-semibold);
  z-index: 10000;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 20px;
}

/* ===== LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: var(--blue-dark);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  transition: opacity 0.9s var(--ease-out-expo), visibility 0.9s;
}
.page-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: clamp(55px, 9vw, 100px);
  line-height: 0.8;
  letter-spacing: -0.1em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loader-line {
  width: min(300px, 60vw);
  height: 1px;
  background: var(--gray-blue-deep);
  overflow: hidden;
  border-radius: 2px;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
  transition: width 1.1s var(--ease-out-expo);
}
.page-loader small {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gray-blue-mid);
}

/* ===== PROGRESS BAR ===== */
.progress {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow-strong);
  transition: width 0.1s linear;
}

/* ===== BACKGROUND AMBIENT ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.02) 0%, transparent 50%),
    var(--blue-dark);
  pointer-events: none;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  color: var(--white-pure);
}
h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  font-weight: var(--weight-bold);
  margin: 0;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 strong {
  font-weight: var(--weight-black);
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  font-weight: var(--weight-semibold);
  margin: 0;
}
h2 em {
  font-style: normal;
  color: var(--gold-primary);
}
h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  font-weight: var(--weight-semibold);
}
p {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--gray-blue-light);
  letter-spacing: -0.01em;
}
p.lead {
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  line-height: 1.55;
  color: var(--white-muted);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.eyebrow.dark {
  color: var(--gray-blue-mid);
}

/* ===== SEÇÕES ===== */
.section {
  padding: 140px 0;
  position: relative;
}
.section.surface {
  background: var(--blue-rich);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.section.gradient {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-rich) 40%, var(--blue-soft) 100%);
}
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 35px;
  margin-bottom: 80px;
}
.section-head .num {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  color: var(--gray-blue-deep);
  letter-spacing: 0.02em;
}
.section-head h2 {
  max-width: 1100px;
}
.section-head.light-head .num {
  color: var(--gray-blue-mid);
}

/* ===== ANIMAÇÕES ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo);
  will-change: opacity;
}
.fade-in.visible {
  opacity: 1;
}

.fade-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.fade-down.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: var(--blue-dark);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.6) contrast(1.1) brightness(0.6);
  transform: scale(1.02);
  will-change: transform;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.55) 70%,
    rgba(10, 22, 40, 0.90) 100%
  );
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 22, 40, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow.gold {
  width: 600px;
  height: 600px;
  right: -150px;
  top: -150px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
  animation: ambientPulse 8s ease-in-out infinite alternate;
}
.hero-glow.blue {
  width: 400px;
  height: 400px;
  left: -100px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(30, 60, 120, 0.15), transparent 70%);
  animation: ambientPulseBlue 10s ease-in-out infinite alternate;
}
@keyframes ambientPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@keyframes ambientPulseBlue {
  0% { opacity: 0.3; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.8; transform: scale(1.1) translate(-30px, -20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-blue-light);
  margin-bottom: 40px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
.badge-separator {
  color: var(--gray-blue-deep);
}

.hero-title {
  max-width: 900px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--white-pure);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
  font-weight: var(--weight-regular);
  letter-spacing: 0.02em;
}
.hero-tags {
  display: flex;
  gap: 24px;
}
.hero-tags span {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--gray-blue-mid);
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 50px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--blue-dark);
  box-shadow: var(--shadow-btn);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}
.btn.primary svg {
  transition: transform 0.3s var(--ease-out-expo);
}
.btn.primary:hover svg {
  transform: translateX(4px) rotate(-45deg);
}
.btn.secondary {
  background: transparent;
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.btn.small {
  padding: 8px 20px;
  font-size: var(--text-sm);
}
.btn.large {
  padding: 18px 36px;
  font-size: var(--text-base);
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-blue-mid);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold-primary);
  animation: scrollProgress 3s ease-in-out infinite;
}
@keyframes scrollProgress {
  0% { height: 0%; opacity: 0.3; }
  50% { height: 60%; opacity: 1; }
  100% { height: 0%; opacity: 0.3; }
}

/* ===== BIG STATEMENT ===== */
.big-statement {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  margin-bottom: 40px;
  display: flex;
  gap: 25px;
  align-items: baseline;
  flex-wrap: wrap;
}
.big-statement span {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gray-blue-light);
}
.big-statement strong {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CARDS ===== */
.cards.three,
.risk-grid,
.philosophy,
.intel-cards,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.risk,
.philosophy article,
.pillar,
.intel-cards article,
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.card:hover,
.risk:hover,
.philosophy article:hover,
.pillar:hover,
.intel-cards article:hover,
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-subtle);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.card .card-glow,
.risk .card-glow,
.philosophy article .card-glow,
.pillar .card-glow,
.intel-cards article .card-glow,
.testimonial-card .card-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover .card-glow,
.risk:hover .card-glow,
.philosophy article:hover .card-glow,
.pillar:hover .card-glow,
.intel-cards article:hover .card-glow,
.testimonial-card:hover .card-glow {
  opacity: 1;
}
.card > b,
.risk > span,
.philosophy article > span,
.intel-cards article > span {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
}
.card h3,
.risk h3,
.philosophy h3,
.pillar h3,
.intel-cards h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 16px 0 8px;
}
.card p,
.risk p,
.philosophy p,
.pillar p,
.intel-cards p {
  font-size: var(--text-base);
  color: var(--gray-blue-light);
  margin: 0;
}
.card.highlight {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--gold-subtle);
}

/* ===== RISK LIST ===== */
.risk ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.risk li {
  padding: 6px 0;
  color: var(--gray-blue-light);
  font-size: var(--text-base);
  position: relative;
  padding-left: 20px;
}
.risk li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* ===== MISSION ===== */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mission > div {
  padding: 45px 35px;
}
.mission > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.mission span,
.values > span {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  text-transform: uppercase;
}
.mission p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  line-height: 1.35;
  max-width: 650px;
  color: var(--gray-blue-light);
  margin-top: 16px;
}

.values {
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.values > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  gap: 20px;
}
.values b {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  padding-left: 16px;
  border-left: 2px solid var(--gold-primary);
  color: var(--white-soft);
}

/* ===== EXPERIENCE COUNTER ===== */
.experience-counter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 80px;
}
.experience-counter small {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--gray-blue-mid);
  text-transform: uppercase;
}
.experience-counter strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(100px, 18vw, 200px);
  line-height: 0.7;
  letter-spacing: -0.12em;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.experience-counter label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
  margin-top: 20px;
  color: var(--white-soft);
}
.experience-counter p {
  font-size: var(--text-lg);
  color: var(--gray-blue-light);
  line-height: 1.6;
}

/* ===== PHILOSOPHY ===== */
.philosophy article {
  min-height: 380px;
}
.philosophy article span {
  font-size: var(--text-sm);
}
.philosophy h3 {
  margin: 16px 0 8px;
}

/* ===== CHALLENGE ===== */
.challenge {
  background: var(--blue-soft);
}

/* ===== SOLUTION ===== */
.solution-stack {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.solution-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.solution-row .card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.solution-row:hover .card-glow {
  opacity: 1;
}
.solution-row > span {
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: var(--text-sm);
}
.solution-row h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 8px;
}
.solution-row p {
  max-width: 750px;
  color: var(--gray-blue-light);
  font-size: var(--text-base);
}
.solution-row > b {
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  color: var(--gold-primary);
}

/* ===== PILLARS ===== */
.pillar-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 2fr));
  gap: 12px;
  position: relative;
}





.pillar-hint {
  display: none;
}
.pillar {
  min-height: 360px;
  cursor: default;
}
.pillar small {
  color: var(--gray-blue-mid);
  font-size: var(--text-xs);
}
.pillar h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  margin: 16px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pillar.active {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.05);
}

/* ===== DASHBOARD ===== */
.dashboard {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.dashboard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(201, 168, 76, 0.03), transparent 60%);
  transform: translateX(-120%);
  animation: dashboardSweep 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes dashboardSweep {
  0%, 35% { transform: translateX(-120%); }
  65%, 100% { transform: translateX(120%); }
}
.dash-top,
.dash-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--gray-blue-mid);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dash-top b {
  color: var(--gold-primary);
}
.dash-main {
  height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}
.radar {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: auto;
  position: relative;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03), transparent 60%);
  animation: radarPulse 3.5s ease-in-out infinite;
}
@keyframes radarPulse {
  50% { box-shadow: 0 0 0 30px rgba(201, 168, 76, 0.02); }
}
.radar::before,
.radar::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
}
.radar::before {
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
}
.radar::after {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
}
.radar i {
  position: absolute;
  width: 50%;
  height: 1px;
  left: 50%;
  top: 50%;
  background: var(--gold-primary);
  transform-origin: left;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.radar span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
  top: 28%;
  left: 68%;
}
.chart {
  height: 240px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px;
  position: relative;
}
.bars {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
}
.bars b {
  display: block;
  width: 10%;
  height: var(--h);
  background: linear-gradient(to top, rgba(201, 168, 76, 0.2), var(--gold-primary));
  border-radius: 4px 4px 0 0;
  animation: bar 2s ease-in-out infinite alternate;
}
.bars b:nth-child(1) { --h: 28%; }
.bars b:nth-child(2) { --h: 48%; }
.bars b:nth-child(3) { --h: 39%; }
.bars b:nth-child(4) { --h: 66%; }
.bars b:nth-child(5) { --h: 58%; }
.bars b:nth-child(6) { --h: 82%; }
.bars b:nth-child(7) { --h: 71%; }
.bars b:nth-child(8) { --h: 94%; }
@keyframes bar {
  to { transform: scaleY(0.78); }
}
.chart small {
  color: var(--gray-blue-mid);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dash-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.intel-cards {
  margin-top: 20px;
}
.intel-cards article {
  min-height: 260px;
}
.intel-cards h3 {
  margin-top: 30px;
}

/* ===== COMMAND ===== */
.command {
  position: relative;
}
.command::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  border-left: 1px dashed rgba(255, 255, 255, 0.06);
}
.command article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.command article > span {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-rich);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--gold-primary);
  z-index: 1;
}
.command h3 {
  margin: 0 0 8px;
  font-size: var(--text-xl);
}
.command p {
  font-size: var(--text-base);
  color: var(--gray-blue-light);
  margin: 0;
}

/* ===== TIMELINE ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 80px;
}
.track {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.track span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  transition: width 1.4s var(--ease-out-expo);
}
.timeline-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 25px var(--gold-glow-strong);
  opacity: 0;
  transition: opacity 0.5s;
}
.t {
  padding: 60px 18px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 280px;
}
.t:first-of-type {
  border-left: 0;
}
.t > b {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-3xl);
  color: var(--gold-primary);
}
.t small {
  display: block;
  margin-top: 8px;
  color: var(--gray-blue-mid);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.t h3 {
  font-size: var(--text-xl);
  margin: 12px 0 8px;
}
.t p {
  font-size: var(--text-sm);
  color: var(--gray-blue-light);
}

/* ===== INVESTIMENTO ===== */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.invest-grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
}
.invest-grid article:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-subtle);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.invest-grid article > span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
}
.invest-grid h3 {
  font-size: var(--text-xl);
  margin: 12px 0 8px;
}
.invest-grid p {
  font-size: var(--text-base);
  color: var(--gray-blue-light);
  margin: 0;
}
.invest-grid .result {
  grid-column: 1 / -1;
  min-height: 160px;
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--gold-subtle);
  position: relative;
  overflow: hidden;
  padding: 40px;
  justify-content: center;
}
.result small {
  color: var(--gold-primary);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.result strong {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result i {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -70px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 65%);
  pointer-events: none;
}

/* ===== EDITORIAL ===== */
.editorial {
  max-width: 1000px;
  margin-left: 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.editorial .lead {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white-soft);
}
.editorial p {
  font-size: var(--text-base);
  color: var(--gray-blue-light);
  line-height: 1.7;
}

/* ===== CASE ===== */
.case {
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
}
.case-top {
  display: flex;
  gap: 25px;
  color: var(--gray-blue-mid);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.case-top span {
  color: var(--gold-primary);
}
.case h3 {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: var(--weight-bold);
  margin: 30px 0 40px;
  letter-spacing: -0.06em;
}
.case-copy {
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.case-copy p {
  font-size: var(--text-base);
  color: var(--gray-blue-light);
  line-height: 1.7;
}
.case-copy p:last-child {
  grid-column: 1 / -1;
}
.case-media {
  height: 380px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.05), transparent 55%), var(--blue-rich);
  position: relative;
  overflow: hidden;
}
.case-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(201, 168, 76, 0.03), transparent 80%);
  animation: caseSweep 7s linear infinite;
}
@keyframes caseSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.case-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  50% { transform: rotate(-18deg) translateY(-15px); }
}
.case-media span {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  color: var(--white-soft);
  position: relative;
  z-index: 1;
}
.case-media small {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gray-blue-mid);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-grid {
  margin-top: 40px;
}
.testimonial-card .quote-icon {
  color: var(--gold-primary);
  opacity: 0.2;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--gray-blue-light);
  margin: 0 0 24px 0;
  quotes: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--blue-dark);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white-pure);
}
.testimonial-author span {
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
}

/* ===== CONTATO ===== */
.contact {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--blue-dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}
.contact-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 65%);
  pointer-events: none;
}
.contact .wrap {
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.09em;
  margin: 30px 0 80px;
}
.contact-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 35px;
  gap: 30px;
}
.contact-info small {
  display: block;
  color: var(--gray-blue-mid);
  font-size: var(--text-xs);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-info strong,
.contact-info a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  display: block;
  color: var(--white-soft);
  line-height: 1.4;
}
.contact-info a {
  transition: color 0.3s var(--ease-out-expo);
}
.contact-info a:hover {
  color: var(--gold-primary);
}
.actions {
  display: flex;
  gap: 16px;
  margin-top: 50px;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1400px);
  z-index: 1000;
  transition: all 0.6s var(--ease-out-expo);
  border-radius: 16px;
}
#header .header-blur {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  z-index: 0;
}
#header .header-border {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(201, 168, 76, 0.05) 100%);
  z-index: -1;
  pointer-events: none;
}
.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-pure);
  text-decoration: none;
}
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo-text b {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.04em;
  color: var(--white-pure);
}
.logo-text small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  color: var(--gray-blue-light);
}
.logo-iron b {
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--gray-blue-light);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s var(--ease-out-expo);
}
nav a:hover {
  color: var(--white-pure);
  background: rgba(255, 255, 255, 0.05);
}
nav a.active {
  color: var(--white-pure);
  background: rgba(201, 168, 76, 0.1);
}
nav .btn.small {
  padding: 8px 20px;
}
.hamb {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamb span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-soft);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}
.hamb.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamb.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
#header.smart {
  top: 0;
  width: 100%;
  border-radius: 0;
}
#header.smart .header-blur {
  border-radius: 0;
}
#header.smart .header-border {
  border-radius: 0;
}
#header.hidden {
  transform: translateY(-100%);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  gap: 20px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  letter-spacing: -0.05em;
  color: var(--white-soft);
  padding: 8px 0;
  display: block;
  transition: color 0.3s var(--ease-out-expo);
}
.mobile-nav a:hover {
  color: var(--gold-primary);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--blue-dark);
  padding: 30px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-brand b {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  background: linear-gradient(135deg, var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.footer-brand span {
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--gray-blue-mid);
  transition: color 0.3s var(--ease-out-expo);
}
.footer-links a:hover {
  color: var(--gold-primary);
}

/* ===== VIDEOS BACKGROUND ===== */
.has-bg-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.has-bg-video > .wrap,
.has-bg-video > .section-head,
.has-bg-video > .solution-stack,
.has-bg-video > .dashboard,
.has-bg-video > .editorial,
.has-bg-video > .case,
.has-bg-video > .mission,
.has-bg-video > .values,
.has-bg-video > .experience-counter {
  position: relative;
  z-index: 4;
}
.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--blue-dark);
}
.bg-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: saturate(0.4) contrast(1.1) brightness(0.5);
  transform: scale(1.04);
  will-change: transform, opacity;
  transition: opacity 0.8s ease, filter 0.8s ease;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.6) 48%, rgba(10, 22, 40, 0.8)),
    linear-gradient(180deg, rgba(10, 22, 40, 0.3), rgba(10, 22, 40, 0.9));
  z-index: 1;
}
.video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 45%, transparent 0%, rgba(10, 22, 40, 0.1) 45%, rgba(10, 22, 40, 0.6) 100%);
  z-index: 2;
}
.section-video-bg.is-active .bg-video {
  opacity: 0.2;
}

/* ===== FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
  .cards.three,
  .risk-grid,
  .philosophy,
  .intel-cards,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .invest-grid .result {
    grid-column: 1 / -1;
  }
  .pillar-stage {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 4px 20px;
    margin-right: -16px;
    scrollbar-width: none;
  }
  .pillar-stage::-webkit-scrollbar {
    display: none;
  }
  .pillar {
    min-width: 200px;
    scroll-snap-align: start;
    min-height: 320px;
  }
  .pillar-hint {
    display: block;
    color: var(--gray-blue-mid);
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 8px;
    padding: 0 4px;
  }
  .pillar-hint b {
    color: var(--gold-primary);
    font-size: var(--text-base);
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .t:nth-child(4),
  .t:nth-child(5) {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
  }
  .mission {
    grid-template-columns: 1fr;
  }
  .mission > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .experience-counter {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
  nav a:not(.btn) {
    display: none;
  }
  .hamb {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-tags {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .section {
    padding: 80px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 50px;
  }
  .section-head .num {
    font-size: var(--text-xs);
  }
  .hero {
    padding: 100px 0 40px;
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 6px 12px 6px 10px;
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 16px;
    margin-top: 24px;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-number {
    font-size: var(--text-2xl);
  }
  .hero-tags {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero-glow.gold {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -50px;
  }
  .hero-glow.blue {
    width: 200px;
    height: 200px;
    left: -50px;
    bottom: -50px;
  }
  .hero-bg-video {
    opacity: 0.35;
    filter: saturate(0.5) contrast(1.0) brightness(0.5);
  }
  .hero-video-overlay {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.75) 100%);
  }
  .cards.three,
  .risk-grid,
  .philosophy,
  .intel-cards,
  .testimonials-grid,
  .invest-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .risk,
  .philosophy article,
  .pillar,
  .intel-cards article,
  .testimonial-card {
    min-height: auto;
    padding: 24px;
  }
  .big-statement {
    padding: 24px 0;
    flex-direction: column;
    gap: 8px;
  }
  .big-statement strong {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .values > div {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .values b {
    font-size: var(--text-base);
  }
  .experience-counter {
    gap: 30px;
    padding-top: 40px;
  }
  .experience-counter strong {
    font-size: clamp(70px, 20vw, 100px);
  }
  .pillar-stage {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 10px;
  }
  .pillar {
    min-width: 170px;
    min-height: 280px;
  }
  .pillar h3 {
    font-size: 1.2rem;
    white-space: normal;
  }
  .dash-main {
    grid-template-columns: 1fr;
    height: auto;
    gap: 30px;
    padding: 10px 0;
  }
  .radar {
    width: 200px;
    height: 200px;
  }
  .chart {
    display: none;
  }
  .dash-top,
  .dash-bottom {
    flex-wrap: wrap;
    gap: 8px;
  }
  .dash-bottom {
    padding-top: 12px;
  }
  .timeline {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .track {
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .track span {
    height: 0;
    width: 100%;
    transition: height 1.4s var(--ease-out-expo);
  }
  .t {
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0 20px 60px;
    min-height: auto;
    position: relative;
  }
  .t > b {
    position: absolute;
    left: 0;
    top: 28px;
    font-size: var(--text-2xl);
  }
  .t:first-of-type {
    border-top: 0;
    padding-top: 0;
  }
  .t:first-of-type > b {
    top: 0;
  }
  .invest-grid .result {
    grid-column: auto;
    min-height: 120px;
    padding: 24px;
  }
  .result strong {
    font-size: var(--text-3xl);
  }
  .result i {
    width: 150px;
    height: 150px;
    right: -40px;
    bottom: -80px;
  }
  .editorial {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .editorial .lead {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .case {
    margin-top: 60px;
  }
  .case h3 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    margin: 20px 0 24px;
  }
  .case-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .case-copy p:last-child {
    grid-column: auto;
  }
  .case-media {
    height: 240px;
    margin-top: 30px;
  }
  .case-ring {
    width: 120px;
    height: 120px;
  }
  .case-media span {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .contact {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .contact-title {
    font-size: clamp(3.5rem, 15vw, 6rem);
    margin: 20px 0 50px;
  }
  .contact-info {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }
  .contact-info strong,
  .contact-info a {
    font-size: var(--text-lg);
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions .btn {
    justify-content: center;
    width: 100%;
  }
  .contact-orb {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -50px;
  }
  #header {
    top: 0;
    width: 100%;
    border-radius: 0;
  }
  #header .header-blur {
    border-radius: 0;
  }
  #header .header-border {
    border-radius: 0;
  }
  .header-content {
    padding: 8px 16px;
    min-height: 56px;
  }
  .logo-text b {
    font-size: var(--text-lg);
  }
  .logo-text small {
    font-size: 0.55rem;
  }
  .mobile-nav a {
    font-size: var(--text-3xl);
  }
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .stat-number {
    font-size: var(--text-xl);
  }
  .card h3,
  .risk h3,
  .philosophy h3,
  .pillar h3,
  .intel-cards h3 {
    font-size: var(--text-xl);
  }
  .solution-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .solution-row > span {
    font-size: var(--text-xs);
  }
  .solution-row > b {
    display: none;
  }
  .command article {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  .command article > span {
    width: 36px;
    height: 36px;
    font-size: var(--text-xs);
  }
  .command::before {
    left: 17px;
  }
  .values > div {
    grid-template-columns: 1fr;
  }
  .pillar-stage {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }
  .pillar {
    min-width: 140px;
    min-height: 240px;
    padding: 20px;
  }
  .pillar h3 {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .fade-in,
  .fade-down {
    opacity: 1;
    transform: none;
  }
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
  .page-loader {
    transition: none;
  }
  .bg-video,
  .hero-bg-video {
    transform: none;
    transition: none;
  }
  .noise {
    display: none;
  }
}