﻿:root {
  --ink: #061114;
  --night: #071015;
  --panel: #0d1a20;
  --panel-2: #10272f;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f4f8f8;
  --muted: #6f8588;
  --text: #e9f3f3;
  --teal: #00a6a6;
  --cyan: #00a7d8;
  --orange: #f37321;
  --gold: #f5b041;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(4, 14, 18, 0.28);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  /* Escala alinhada ao título do hero (mesmo peso visual em todo o site) */
  --fs-display: clamp(1.55rem, 3.4vw, 2.75rem);
  --fs-h3: clamp(1.05rem, 1.22vw, 1.16rem);
  --fs-body: clamp(0.92rem, 1.35vw, 1.06rem);
  --fs-metric: clamp(1.4rem, 2.35vw, 2.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* Offset para Ã¢ncoras com header fixo */
main section[id],
.metrics-band {
  scroll-margin-top: 88px;
}

img {
  display: block;
  max-width: 100%;
}

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

/* Marca Wazuh — símbolo © (Unicode U+00A9) em ::after; colado ao “h”, sem buraco no texto */
.wz-name {
  white-space: nowrap;
}

.wz-name::after {
  content: '\00A9';
  font-size: 0.38em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  margin-left: -0.08em;
  padding: 0;
  position: relative;
  top: -0.52em;
}

/* Fundos escuros / texto claro */
.hero .wz-name::after,
.section-dark .wz-name::after,
.cta-section .wz-name::after,
.site-footer .wz-name::after {
  color: rgba(255, 255, 255, 0.88);
}

/* Cabeçalho fixo (texto claro) */
.site-header .wz-name::after {
  color: rgba(255, 255, 255, 0.88);
}

/* Secções claras */
.section-light .wz-name::after {
  color: rgba(28, 36, 42, 0.72);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-elevated {
  background: rgba(7, 16, 21, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 220px;
  height: auto;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:not(.nav-action) {
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-action)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transition: width 0.32s ease;
}

.site-nav a:not(.nav-action):hover::after,
.site-nav a:not(.nav-action):focus-visible::after {
  width: 100%;
}

.nav-action {
  padding: 11px 16px;
  color: #fff !important;
  background: var(--orange);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  /* Suaviza texto/claros do Overview e baixa luminância para o título legível */
  filter: brightness(0.76) saturate(0.9) blur(1.2px);
  transform-origin: center center;
}

.hero-matrix-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.09;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 88% 18%, rgba(0, 166, 166, 0.08), transparent 58%),
    radial-gradient(ellipse 65% 50% at 8% 88%, rgba(243, 115, 33, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(0, 167, 216, 0.03), transparent 60%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Mais escuro onde está o bloco de texto (esq.); direita mantém mais detalhe do dashboard */
  background: linear-gradient(
    118deg,
    rgba(0, 4, 8, 0.94) 0%,
    rgba(2, 12, 18, 0.82) 36%,
    rgba(4, 14, 20, 0.52) 58%,
    rgba(5, 16, 22, 0.26) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: min(1040px, 100%);
  padding: clamp(100px, 20vh, 200px) clamp(16px, 5vw, 32px) clamp(40px, 11vh, 110px);
  margin: 0 auto;
  transform: translate3d(var(--hero-px, 0px), var(--hero-py, 0px), 0);
  transition: transform 0.15s ease-out, opacity 0.2s ease-out;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: clamp(1.04rem, 1.6vw, 1.34rem);
  letter-spacing: 0.03em;
  color: #ff9d4e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1080px;
  margin-bottom: 18px;
  font-size: var(--fs-display);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: var(--fs-display);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--fs-h3);
  line-height: 1.25;
}

.hero-copy {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.58;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.75), 0 0 1px rgba(0, 0, 0, 0.9);
}

/* Hero: largura de linha; tamanho vem de h1 + --fs-display */
.hero-content h1 {
  max-width: 38ch;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-content .hero-eyebrow {
  margin-bottom: 12px;
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.8);
}

.hero-content .hero-copy {
  max-width: 48ch;
  font-size: var(--fs-body);
  line-height: 1.48;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.button.primary {
  color: #fff;
  background: var(--orange);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(243, 115, 33, 0.38);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #c9d5d6;
}

.metric {
  padding: 30px clamp(18px, 4vw, 54px);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(5, 18, 22, 0.1);
}

.metric-count {
  display: inline-block;
  min-width: 0.6em;
  font-variant-numeric: tabular-nums;
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: var(--fs-metric);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: clamp(70px, 8vw, 124px) clamp(18px, 5vw, 78px);
}

.section-light {
  position: relative;
  overflow: hidden;
  /* Base visÃ­vel sobre papel (antes os halos a ~0.07 sumiam no #f4f8f8) */
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 95% 75% at 90% 5%, rgba(0, 166, 166, 0.26), transparent 52%),
    radial-gradient(ellipse 85% 70% at 5% 95%, rgba(243, 115, 33, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 50% at 48% 42%, rgba(0, 167, 216, 0.12), transparent 60%);
}

.section-light > * {
  position: relative;
  z-index: 1;
}

.section-light::before {
  position: absolute;
  inset: -30% -15%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse 58% 48% at 86% 14%, rgba(0, 166, 166, 0.28), transparent 56%),
    radial-gradient(ellipse 50% 44% at 10% 86%, rgba(243, 115, 33, 0.22), transparent 54%),
    radial-gradient(ellipse 35% 30% at 55% 50%, rgba(0, 167, 216, 0.1), transparent 62%);
  animation: brand-section-mesh 22s ease-in-out infinite alternate;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--night);
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(0, 167, 216, 0.09) 0, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(243, 115, 33, 0.06) 0, transparent 40%);
  animation: brand-section-mesh 26s ease-in-out infinite alternate-reverse;
}

/* Mesmo asset Lottie institucional (processo / hero decorativo) fora do hero Wazuh */
.section-brand-lottie .brand-lottie-bg {
  position: absolute;
  inset: -12% -8%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.32;
}

.section-brand-lottie .brand-lottie-bg--dark lottie-player {
  display: block;
  width: 100%;
  height: min(72vh, 620px);
  margin: 0 auto;
  transform: scale(1.12);
  transform-origin: 50% 40%;
}

@media (min-width: 981px) {
  .section-brand-lottie .brand-lottie-bg--dark lottie-player {
    height: min(78vh, 720px);
  }
}

.section-mesh-strong::after {
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 1;
  background:
    conic-gradient(from 210deg at 70% 35%, rgba(0, 166, 166, 0.2), transparent 40%, rgba(243, 115, 33, 0.16), transparent 68%),
    radial-gradient(ellipse 45% 38% at 50% 100%, rgba(0, 167, 216, 0.14), transparent 52%);
  animation: brand-mesh-drift 32s ease-in-out infinite alternate;
}

.metrics-band--mesh {
  position: relative;
  overflow: hidden;
}

.metrics-band--mesh::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 1;
  background:
    radial-gradient(ellipse 120% 80% at 80% 20%, rgba(0, 166, 166, 0.35), transparent 50%),
    radial-gradient(ellipse 100% 90% at 15% 85%, rgba(243, 115, 33, 0.22), transparent 48%),
    linear-gradient(105deg, rgba(0, 167, 216, 0.12) 0%, transparent 38%, rgba(0, 166, 166, 0.18) 62%, transparent 100%);
  background-size: 100% 100%, 100% 100%, 220% 100%;
  animation: brand-metrics-sweep 14s ease-in-out infinite;
}

.metrics-band--mesh > * {
  position: relative;
  z-index: 1;
}

/* Vidro leve: senÃ£o sÃ³ se vÃª arte nos intervalos de 1px entre cÃ©lulas */
.metrics-band--mesh .metric {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-section--motion {
  position: relative;
  overflow: hidden;
}

.cta-section--motion::before {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 42%,
    transparent 55%,
    rgba(255, 255, 255, 0.08) 78%,
    transparent 100%
  );
  background-size: 240% 240%;
  animation: brand-cta-sheen 11s ease-in-out infinite;
}

.cta-section--motion > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.copy-block p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.section-dark .section-heading p,
.section-dark .copy-block p {
  color: rgba(233, 243, 243, 0.72);
}

.section-heading .heading-evolution-note {
  margin-top: 18px;
  padding: 12px 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(15, 25, 30, 0.88);
  background: rgba(12, 90, 96, 0.07);
  border: 1px solid rgba(12, 90, 96, 0.14);
  border-radius: var(--radius);
}

.section-dark .section-heading .heading-evolution-note {
  color: rgba(233, 243, 243, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.capability-grid,
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ia-operacao-points {
  margin-top: 26px;
}

.governance-grid.ia-operacao-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ia-operacao-points h3 {
  color: #0b1820;
  font-weight: 900;
}

.ia-operacao-points p {
  color: #314750;
}

.ia-weekly-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ia-weekly-points h3 {
  color: #0b1820;
  font-weight: 900;
}

.ia-weekly-points p {
  color: #314750;
}

.ia-weekly-cta {
  margin: 24px auto 0;
  text-align: center;
}

.telegram-alerts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.telegram-showcase {
  margin-bottom: 20px;
}

.telegram-showcase .showcase-item__thumb {
  aspect-ratio: 3 / 4;
}

.telegram-alerts-grid h3 {
  color: #0b1820;
  font-weight: 900;
}

.telegram-alerts-grid p {
  color: #314750;
}

.governance-doc-cta {
  margin: 24px auto 0;
  text-align: center;
}

#governanca .governance-grid.governance-grid--iso {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#governanca .governance-grid.governance-grid--iso article {
  min-height: 178px;
  padding: 20px;
}

.governance-summary-block {
  width: min(1180px, 100%);
  margin: 14px auto 0;
  padding: 18px 20px;
  border: 1px solid #dbe4e4;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(5, 18, 22, 0.06);
}

.governance-summary-block h3 {
  margin-bottom: 10px;
  color: #0b1820;
}

.governance-summary-block p {
  color: #314750;
  line-height: 1.62;
}

.app-mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.app-mobile-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.app-mobile-grid h3 {
  margin-bottom: 10px;
  color: #0b1820;
}

.app-mobile-grid p {
  margin: 0;
  color: #334c58;
  line-height: 1.58;
}

.app-mobile-cta {
  margin: 24px auto 0;
  text-align: center;
}

.capability,
.governance-grid article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dbe4e4;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(5, 18, 22, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.capability:hover,
.governance-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 166, 0.35);
  box-shadow: 0 18px 44px rgba(5, 18, 22, 0.12);
}

/* Cartoes claros: vidro leve para o mesh de fundo sem sacrificar contraste */
.section-light.section-mesh-strong .capability,
.section-light.section-mesh-strong .governance-grid article {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.capability p,
.governance-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  padding: 0 10px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.copy-block {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(233, 243, 243, 0.86);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  content: '\2713';
  font-weight: 900;
}

.ai-panel {
  display: grid;
  gap: 14px;
}

.flow-step,
.report-slot {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 4px 18px;
}

.flow-step span {
  grid-row: span 2;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
}

.flow-step strong,
.report-slot strong {
  font-size: 1.12rem;
}

.flow-step p,
.report-slot p {
  margin: 0;
  color: rgba(233, 243, 243, 0.68);
}

.flow-step.active {
  border-color: rgba(243, 115, 33, 0.55);
  background: var(--panel-2);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .split-section.is-visible .flow-step.active {
    animation: brand-flow-glow 3.2s ease-in-out infinite;
  }
}

.report-slot {
  border-color: rgba(0, 167, 216, 0.36);
}

.report-slot small {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

/* --- IA Well (carro-chefe) --- */
.ia-flagship__inner {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  margin: 0 auto;
  padding-top: 8px;
  text-align: center;
}

.ia-flagship h2 {
  margin-bottom: 22px;
}

.ia-lead {
  margin: 0 0 18px;
  font-size: var(--fs-body);
  line-height: 1.58;
  color: rgba(233, 243, 243, 0.78);
  text-align: left;
}

.ia-lead:last-of-type {
  margin-bottom: 0;
}

.ia-lead strong {
  color: rgba(255, 255, 255, 0.94);
}

.ia-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.ia-toc a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(233, 243, 243, 0.88);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ia-toc a:hover {
  border-color: rgba(243, 115, 33, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.pillar-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe4e4;
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(5, 18, 22, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 166, 0.38);
  box-shadow: 0 20px 50px rgba(5, 18, 22, 0.11);
}

.pillar-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  border-radius: 999px;
}

.pillar-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ia-diagram {
  margin-top: 36px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ia-diagram__track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px 8px;
}

.ia-diagram__node {
  flex: 1 1 140px;
  max-width: 220px;
  padding: 18px 16px;
  text-align: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ia-diagram__node strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
}

.ia-diagram__node span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(233, 243, 243, 0.68);
}

.ia-diagram__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.ia-arch-list {
  max-width: 880px;
  margin: 32px auto 0;
}

.ia-timeline {
  display: grid;
  gap: 16px;
  width: min(920px, 100%);
  margin: 36px auto 0;
}

.ia-timeline__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 20px;
  padding: 22px 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dbe4e4;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(5, 18, 22, 0.06);
}

.ia-timeline__num {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: 2px;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  background: var(--teal);
  border-radius: 50%;
}

.ia-timeline__step h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.ia-timeline__step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.compare-wrap {
  width: min(1100px, 100%);
  margin: 32px auto 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  color: #fff;
  font-weight: 850;
  background: var(--panel-2);
}

.compare-table tbody td:first-child {
  font-weight: 800;
  color: rgba(233, 243, 243, 0.95);
}

.section-dark .compare-table tbody td:not(:first-child) {
  color: rgba(233, 243, 243, 0.78);
}

.section-dark .compare-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.035);
}

.section-dark .compare-table tbody tr:last-child td {
  border-bottom: none;
}

.ia-closer__box {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe4e4;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 56px rgba(5, 18, 22, 0.08);
}

.ia-closer__box h2 {
  margin-bottom: 18px;
  text-align: center;
}

.ia-closer__box p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.62;
  text-align: left;
}

.ia-closer__box p.eyebrow {
  text-align: center;
}

.ia-closer__box p:has(.button) {
  text-align: center;
}

.ia-closer__box .button.primary {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .ia-diagram__arrow {
    display: none;
  }

  .ia-diagram__track {
    flex-direction: column;
    align-items: stretch;
  }

  .ia-diagram__node {
    max-width: none;
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* Secao IA em operacao continua: quatro blocos alinhados no desktop */
.showcase-grid.ia-operacao-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-item {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  text-align: left;
  background: var(--night);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(4, 14, 18, 0.42);
}

.showcase-item__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #070f14;
}

.showcase-item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* contain = captura completa (evita cortar ecrãs 16:9 no tile 16:10) */
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

/* Remove "barras" laterais nas thumbs dos e-mails dessa seção */
.ia-operacao-showcase .showcase-item__thumb img {
  object-fit: cover;
  object-position: center top;
}

.showcase-item__caption {
  flex: none;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  background: #061017;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-item:hover .showcase-item__thumb img {
  transform: scale(1.04);
}

.infra-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.infra-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.infra-stack {
  display: grid;
  gap: 12px;
}

.stack-row {
  display: grid;
  gap: 7px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stack-row strong {
  color: #fff;
  font-size: 1.08rem;
}

.stack-row span {
  color: rgba(233, 243, 243, 0.7);
}

.cta-section {
  justify-content: space-between;
  padding: clamp(50px, 7vw, 88px) clamp(18px, 5vw, 78px);
  color: #fff;
  background: var(--teal);
}

.cta-section h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.cta-section .eyebrow {
  color: #fff;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 38px clamp(18px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.76);
  background: #050a0d;
}

.site-footer img {
  width: 260px;
  filter: brightness(1.1);
}

.site-footer p {
  max-width: 880px;
  margin: 0;
}

.fine-print {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
}

.image-dialog {
  box-sizing: border-box;
  position: relative;
  width: min(98vw, 1680px);
  max-width: calc(100vw - 16px);
  max-height: min(96vh, 1200px);
  padding: 14px 14px 16px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(165deg, #061017 0%, #040b12 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.58);
}

/* Sem isto, `display:flex` na base anula o `display:none` do <dialog> fechado e o bloco aparece no final da página. */
.image-dialog:not([open]) {
  display: none;
}

.image-dialog[open] {
  display: flex;
  flex-direction: column;
  animation: dialogIn 220ms ease-out;
}

.image-dialog::backdrop {
  background: rgba(1, 5, 9, 0.86);
  backdrop-filter: blur(4px);
}

.image-dialog h3 {
  margin-bottom: 8px;
  padding-right: 52px;
}

.dialog-hint {
  margin: 0 0 10px;
  color: rgba(226, 243, 243, 0.84);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.image-dialog__viewport {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
  margin: 0 -4px;
  padding: 8px 4px 12px;
  background: #030608;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.image-dialog__viewport img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1600px);
  max-height: none;
  margin: 0 auto;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  cursor: zoom-in;
  filter: brightness(1.06) contrast(1.06);
  transition: transform 220ms ease, filter 220ms ease;
}

.image-dialog__frame {
  display: none;
  width: 100%;
  height: min(78vh, 1040px);
  border: 0;
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
}

.image-dialog.has-doc .image-dialog__viewport {
  background: #fff;
  padding: 0;
  margin: 0;
  justify-content: stretch;
}

.image-dialog.hide-open-tab .dialog-actions {
  display: none;
}

.image-dialog.hide-dialog-hint .dialog-hint {
  display: none;
}

/* Modal do infográfico SIEM Mobile: sem título duplicado; caixa acompanha a largura da imagem (sem letterbox lateral) */
.image-dialog.image-dialog--app-infographic {
  width: min(98vw, 1900px);
  max-width: calc(100vw - 16px);
  max-height: min(98vh, 1720px);
  padding: 10px 10px 12px;
  overflow: hidden;
}

.image-dialog.image-dialog--app-infographic h3 {
  display: none;
}

.image-dialog.image-dialog--app-infographic .dialog-close {
  z-index: 5;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.image-dialog.image-dialog--app-infographic .image-dialog__viewport {
  flex: 1;
  width: 100%;
  min-height: 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 6px 6px 10px;
  margin: 0;
}

/* Proporção nativa; limita pela altura do ecrã — a moldura do modal segue a largura real da imagem */
.image-dialog.image-dialog--app-infographic .image-dialog__viewport img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(92vh, 1500px);
  margin: 0 auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center top;
}

.image-dialog.image-dialog--app-infographic.is-zoomed .image-dialog__viewport img {
  width: auto;
  max-width: none;
  max-height: none;
}

.image-dialog.is-zoomed .image-dialog__viewport img {
  cursor: zoom-out;
  transform: scale(1.42);
  transform-origin: center top;
  filter: brightness(1.12) contrast(1.12);
}

.dialog-actions {
  flex-shrink: 0;
  margin: 12px 0 0;
  text-align: center;
}

.dialog-open-tab {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1418;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dialog-open-tab:hover {
  background: #fff;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(7, 16, 21, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .metrics-band,
  .capability-grid,
  .governance-grid,
  .split-section,
  .infra-layout {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid.ia-operacao-showcase,
  .governance-grid.ia-operacao-points,
  .governance-grid.ia-weekly-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .governance-grid.telegram-alerts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #governanca .governance-grid.governance-grid--iso {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-dialog.image-dialog--app-infographic .image-dialog__viewport img {
    max-height: min(82vh, 1200px);
    max-width: min(94vw, 1980px);
  }

  .infra-image {
    min-height: 240px;
  }

  .cta-section {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(18px, 4vw, 28px);
  }

  .cta-section .button.primary {
    align-self: flex-start;
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading.align-left {
    width: 100%;
  }

  #infraestrutura .section-heading.align-left {
    text-align: left;
  }

  .compare-table {
    min-width: 560px;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px clamp(12px, 4vw, 18px);
  }

  .brand img {
    width: 110px;
  }

  .brand span {
    max-width: min(140px, 38vw);
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .hero {
    min-height: min(100svh, 880px);
  }

  .hero-content {
    padding: clamp(88px, 18vh, 150px) 14px 36px;
  }

  .section {
    padding: clamp(44px, 10vw, 88px) clamp(14px, 5vw, 24px);
  }

  .metrics-band,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid.ia-operacao-showcase,
  .governance-grid.ia-operacao-points,
  .governance-grid.ia-weekly-points {
    grid-template-columns: 1fr;
  }

  .governance-grid.telegram-alerts-grid {
    grid-template-columns: 1fr;
  }

  #governanca .governance-grid.governance-grid--iso {
    grid-template-columns: 1fr;
  }

  .app-mobile-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 1fr;
  }

  .flow-step span {
    grid-row: auto;
  }

  .ia-lead {
    font-size: var(--fs-body);
    text-align: left;
  }

  .ia-toc {
    flex-direction: column;
    align-items: stretch;
  }

  .ia-toc a {
    justify-content: center;
    text-align: center;
  }

  .ia-timeline__step {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    text-align: center;
  }

  .ia-timeline__num {
    grid-row: auto;
    margin: 0 auto 12px;
  }

  .ia-timeline__step h3,
  .ia-timeline__step p {
    text-align: left;
  }

  .pillar-card {
    padding: 22px 18px;
  }

  .compare-table {
    min-width: 100%;
    font-size: 0.78rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }

  .ia-closer__box {
    padding: 22px 16px;
  }

  .ia-closer__box .button.primary {
    width: 100%;
    max-width: none;
  }

  .cta-section .button.primary {
    max-width: none;
    align-self: stretch;
  }

  .site-footer {
    padding: 28px 16px;
  }

  .site-footer img {
    width: 150px;
  }

  #infraestrutura .section-heading.align-left {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand span {
    font-size: 0.76rem;
    max-width: 108px;
  }
}

/* --- Movimento e profundidade (inspirado em sites institucionais; reduz movimento se o utilizador preferir) --- */
@keyframes brand-section-mesh {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(-3%, 2%, 0) rotate(0.8deg);
    opacity: 0.88;
  }
}

@keyframes brand-flow-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(243, 115, 33, 0.15);
  }
  50% {
    box-shadow: 0 0 24px 1px rgba(243, 115, 33, 0.22);
  }
}

@keyframes brand-mesh-drift {
  0% {
    transform: translate3d(-2%, 1%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(3%, -2%, 0) rotate(4deg);
  }
}

@keyframes brand-metrics-sweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes brand-cta-sheen {
  0%,
  100% {
    background-position: 12% 40%;
    opacity: 0.55;
  }
  50% {
    background-position: 88% 62%;
    opacity: 0.95;
  }
}

@keyframes brand-hero-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes brand-hero-line {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.js .hero-media {
    animation: brand-hero-ken 34s ease-in-out infinite alternate;
    will-change: transform;
  }

  html.js .hero-content .eyebrow {
    animation: brand-hero-line 0.75s ease-out both;
    animation-delay: 0.06s;
  }

  html.js .hero-content h1 {
    animation: brand-hero-line 0.85s ease-out both;
    animation-delay: 0.14s;
  }

  html.js .hero-content .hero-copy {
    animation: brand-hero-line 0.85s ease-out both;
    animation-delay: 0.22s;
  }

  html.js .hero-content .hero-actions {
    animation: brand-hero-line 0.85s ease-out both;
    animation-delay: 0.3s;
  }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js .section:not(.is-visible) .capability,
html.js .section:not(.is-visible) .governance-grid article {
  opacity: 0;
  transform: translateY(18px);
}

html.js .section.is-visible .capability,
html.js .section.is-visible .governance-grid article {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .section.is-visible .capability:nth-child(1) {
  transition-delay: 0.04s;
}
html.js .section.is-visible .capability:nth-child(2) {
  transition-delay: 0.1s;
}
html.js .section.is-visible .capability:nth-child(3) {
  transition-delay: 0.16s;
}
html.js .section.is-visible .capability:nth-child(4) {
  transition-delay: 0.22s;
}
html.js .section.is-visible .capability:nth-child(5) {
  transition-delay: 0.28s;
}
html.js .section.is-visible .capability:nth-child(6) {
  transition-delay: 0.34s;
}

html.js .section.is-visible .governance-grid article:nth-child(1) {
  transition-delay: 0.05s;
}
html.js .section.is-visible .governance-grid article:nth-child(2) {
  transition-delay: 0.11s;
}
html.js .section.is-visible .governance-grid article:nth-child(3) {
  transition-delay: 0.17s;
}
html.js .section.is-visible .governance-grid article:nth-child(4) {
  transition-delay: 0.23s;
}

html.js .metrics-band:not(.is-visible) .metric {
  opacity: 0;
  transform: translateY(14px);
}

html.js .metrics-band.is-visible .metric {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .metrics-band.is-visible .metric:nth-child(1) {
  transition-delay: 0.03s;
}
html.js .metrics-band.is-visible .metric:nth-child(2) {
  transition-delay: 0.09s;
}
html.js .metrics-band.is-visible .metric:nth-child(3) {
  transition-delay: 0.15s;
}
html.js .metrics-band.is-visible .metric:nth-child(4) {
  transition-delay: 0.21s;
}

html.js .split-section:not(.is-visible) .copy-block,
html.js .split-section:not(.is-visible) .ai-panel {
  opacity: 0;
  transform: translateY(20px);
}

html.js .split-section.is-visible .copy-block,
html.js .split-section.is-visible .ai-panel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .split-section.is-visible .ai-panel {
  transition-delay: 0.12s;
}

html.js .infra-section:not(.is-visible) .infra-layout {
  opacity: 0;
  transform: translateY(22px);
}

html.js .infra-section.is-visible .infra-layout {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js #dashboards:not(.is-visible) .showcase-item {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

html.js #dashboards.is-visible .showcase-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.55s ease, transform 0.5s ease;
}

html.js #dashboards.is-visible .showcase-item:nth-child(1) {
  transition-delay: 0.04s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(2) {
  transition-delay: 0.1s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(3) {
  transition-delay: 0.16s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(4) {
  transition-delay: 0.22s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(5) {
  transition-delay: 0.28s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(6) {
  transition-delay: 0.32s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(7) {
  transition-delay: 0.36s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(8) {
  transition-delay: 0.4s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(9) {
  transition-delay: 0.44s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(10) {
  transition-delay: 0.48s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(11) {
  transition-delay: 0.52s;
}
html.js #dashboards.is-visible .showcase-item:nth-child(12) {
  transition-delay: 0.56s;
}

html.js #ia-valor-diretoria:not(.is-visible) .pillar-card {
  opacity: 0;
  transform: translateY(18px);
}

html.js #ia-valor-diretoria.is-visible .pillar-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.48s ease;
}

html.js #ia-valor-diretoria.is-visible .pillar-card:nth-child(1) {
  transition-delay: 0.04s;
}
html.js #ia-valor-diretoria.is-visible .pillar-card:nth-child(2) {
  transition-delay: 0.1s;
}
html.js #ia-valor-diretoria.is-visible .pillar-card:nth-child(3) {
  transition-delay: 0.16s;
}
html.js #ia-valor-diretoria.is-visible .pillar-card:nth-child(4) {
  transition-delay: 0.22s;
}

html.js #ia-jornada-alerta:not(.is-visible) .ia-timeline__step {
  opacity: 0;
  transform: translateY(16px);
}

html.js #ia-jornada-alerta.is-visible .ia-timeline__step {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.45s ease;
}

html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(1) {
  transition-delay: 0.03s;
}
html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(2) {
  transition-delay: 0.07s;
}
html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(3) {
  transition-delay: 0.11s;
}
html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(4) {
  transition-delay: 0.15s;
}
html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(5) {
  transition-delay: 0.19s;
}
html.js #ia-jornada-alerta.is-visible .ia-timeline__step:nth-child(6) {
  transition-delay: 0.23s;
}

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

  .hero-matrix-canvas {
    display: none !important;
  }

  .section-light::before,
  .section-dark::before,
  .section-mesh-strong::after,
  .metrics-band--mesh::before,
  .cta-section--motion::before {
    animation: none !important;
  }

  .metrics-band--mesh .metric,
  .section-light.section-mesh-strong .capability,
  .section-light.section-mesh-strong .governance-grid article {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fff !important;
  }

  .brand-lottie-bg {
    display: none !important;
  }

  html.js .reveal,
  html.js .section .capability,
  html.js .section .governance-grid article,
  html.js .metrics-band .metric,
  html.js .split-section .copy-block,
  html.js .split-section .ai-panel,
  html.js .infra-layout,
  html.js #dashboards .showcase-item,
  html.js #ia-valor-diretoria .pillar-card,
  html.js #ia-jornada-alerta .ia-timeline__step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html.js .split-section.is-visible .flow-step.active {
    animation: none !important;
  }

  html.js .hero-content .eyebrow,
  html.js .hero-content h1,
  html.js .hero-content .hero-copy,
  html.js .hero-content .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-content {
    transform: none !important;
    opacity: 1 !important;
  }
}

