/* ==========================================================================
   ANIMAL FITNESS CLUB — APRESENTAÇÃO EXECUTIVA YESOD
   Redesign Integral: PRETO + BRANCO + LARANJA YESOD
   DM Sans · Editorial Executivo Premium
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Tipografia */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Laranja YESOD */
  --orange: #E86F22;
  --orange-dark: #D75A12;
  --orange-hover: #CF5C16;
  --orange-soft: #FFF1E7;

  /* Estruturais */
  --black: #0B0B0C;
  --black-2: #111214;
  --graphite: #1A1A1C;
  --white: #FFFFFF;

  /* Cinzas neutros derivados */
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D0D0D0;
  --gray-400: #9A9A9A;
  --gray-500: #6B6B6B;
  --gray-600: #444444;
  --gray-700: #2A2A2A;

  /* Status Semânticos — Fase 1 / Concluído (verde dessaturado) */
  --green: #5B8C6A;
  --green-dark: #4A7558;
  --green-soft: #EDF5F0;
  --green-border: rgba(91, 140, 106, 0.3);

  /* Status Semânticos — Atenção / Definições / Transição (Amarelo corporativo vivo e sofisticado) */
  --yellow: #D49B00;
  --yellow-dark: #A87600;
  --yellow-soft: #FFFBEB;
  --yellow-border: rgba(212, 155, 0, 0.45);
  --yellow-glow: rgba(212, 155, 0, 0.18);

  /* Status Semânticos — Meta (azul oficial) */
  --meta-blue: #0081FB;
  --meta-blue-soft: #EBF4FF;
  --meta-blue-border: rgba(0, 129, 251, 0.25);

  /* Geometria */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Transição */
  --ease: 0.2s ease;

  /* Container */
  --container: 1080px;
}

/* --------------------------------------------------------------------------
   02. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow: hidden; /* Controlado pelo deck horizontal */
}

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

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

button, input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* --------------------------------------------------------------------------
   03. NAVEGAÇÃO EDITORIAL DISCRETA (Sempre visível na apresentação)
   -------------------------------------------------------------------------- */
.nav-editorial {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0); /* Sempre visível */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease;
}

.nav-editorial.is-visible {
  transform: translateY(0);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.nav-brand {
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-brand-dot {
  color: var(--orange);
}

.nav-sections {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link.is-active {
  background: rgba(232, 111, 34, 0.15);
  color: var(--orange);
}

.nav-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.15s ease;
}

/* --------------------------------------------------------------------------
   04. CAPA
   -------------------------------------------------------------------------- */
.section-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 3rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hero-top {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logotype {
  font-size: 1.625rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}

.brand-dot {
  color: var(--orange);
}

.brand-tagline {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  margin-top: 0.3rem;
}

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 0 1.5rem;
  max-width: 780px;
}

.hero-client {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 400;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.55;
}

.hero-bottom {
  padding-top: 1rem;
}

/* .hero-phases and .hero-phase base layout moved to section 21 */

.hero-phase-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
}

.hero-phase-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.hero-phase-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

.hero-phase-status--accent {
  color: var(--orange);
  font-weight: 600;
}

/* .hero-phase-arrow layout moved to section 21 */

.hero-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.hero-footer-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.hero-scroll-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  transition: var(--ease);
}

.hero-scroll-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* --------------------------------------------------------------------------
   05. SEÇÕES — BASE
   -------------------------------------------------------------------------- */
.section {
  padding: 3.5rem 0;
  background: var(--white);
}

.section--alt {
  background: var(--gray-100);
}

.section--closing {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 2.25rem;
}

/* --------------------------------------------------------------------------
   06. CABEÇALHOS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 1.75rem;
}

.section-header--center {
  text-align: center;
}

.section-header--light .section-eyebrow,
.section-eyebrow--light {
  color: var(--orange);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.section-eyebrow--action {
  color: var(--orange-dark);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.section-title--light {
  color: var(--white);
}

.section-title-xl {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.section-desc {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--gray-500);
  max-width: 720px;
  line-height: 1.55;
}

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

/* --------------------------------------------------------------------------
   07. TIPOGRAFIA EDITORIAL
   -------------------------------------------------------------------------- */
.editorial-text {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.editorial-text--centered {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.editorial-text p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 0.65rem;
}

.editorial-text p:last-child {
  margin-bottom: 0;
}

.text-lead {
  font-size: 1.125rem !important;
  font-weight: 500;
  color: var(--black-2) !important;
}

/* --------------------------------------------------------------------------
   08. CALLOUT BLOCK
   -------------------------------------------------------------------------- */
.callout-block {
  border-left: 4px solid var(--orange);
  background: var(--gray-100);
  padding: 1.25rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.75rem;
  max-width: 760px;
}

.callout-block--centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.callout-block p {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   09. TIMELINE EDITORIAL — VISÃO GERAL
   -------------------------------------------------------------------------- */
.timeline-editorial {
  position: relative;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-marker--accent {
  border-color: var(--orange);
}

.timeline-num {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--gray-500);
}

.timeline-marker--accent .timeline-num {
  color: var(--orange);
}

.timeline-body {
  padding-top: 0.15rem;
}

.timeline-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.timeline-status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
}

.timeline-status--accent {
  color: var(--orange-dark);
  border-color: var(--orange);
  background: var(--orange-soft);
}

.timeline-connector {
  width: 2px;
  height: 18px;
  background: var(--gray-200);
  margin-left: 21px;
}

.timeline-item--current {
  background: var(--orange-soft);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

/* --------------------------------------------------------------------------
   10. FASE 1
   -------------------------------------------------------------------------- */
.subsection {
  margin-bottom: 1.35rem;
}

.subsection-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.65rem;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  padding: 0.85rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.pipeline-node {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray-100);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.pipeline-node--accent {
  color: var(--orange-dark);
  border-color: rgba(232, 111, 34, 0.3);
  background: var(--orange-soft);
}

.pipeline-arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.role-block {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gray-300);
}

.role-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.role-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* Channels */
.channels-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 1.35rem;
}

.channels-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
}

.channel-pill {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* Deliverables */
.deliverables-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.65rem;
  margin-bottom: 1.25rem;
}

.deliverables-header {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gray-200);
}

.deliverables-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.45rem 1.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0;
}

.check-mark {
  font-size: 0.8125rem;
  color: var(--orange);
  font-weight: 800;
  width: 16px;
  flex-shrink: 0;
}

.check-item span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Fase Closing */
.fase-closing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.fase-closing-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(232, 111, 34, 0.25);
}

.fase-closing p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. API OFICIAL META — REGRAS OPERACIONAIS
   -------------------------------------------------------------------------- */
.rules-stack {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.rule-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.65rem;
  background: var(--white);
}

.rule-card--critical {
  border-color: var(--orange);
  border-width: 2px;
  background: var(--orange-soft);
}

.rule-card-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.45rem;
}

.rule-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.rule-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.rule-body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
  padding-left: 2.2rem;
}

.rule-alert {
  padding: 0.75rem 1.15rem;
  background: var(--white);
  border-left: 4px solid var(--orange-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-left: 2.2rem;
  margin-top: 0.35rem;
}

.rule-alert p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}

.rules-footer-note {
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.rules-footer-note p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. FASE 2 — OPERAÇÃO INTELIGENTE
   -------------------------------------------------------------------------- */
.esteira-container {
  padding: 1.35rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 1rem;
}

.esteira-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.esteira-step {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--black);
  background: var(--gray-100);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.esteira-arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Functions */
.functions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.function-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}

.function-marker {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* IA Reference */
.ia-reference-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.ia-reference-block p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.ia-reference-block strong {
  color: var(--black);
}

/* --------------------------------------------------------------------------
   13. AITOMat
   -------------------------------------------------------------------------- */
.cycle-container {
  padding: 1.5rem 1.25rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  margin: 1.5rem 0;
}

.cycle-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.cycle-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: var(--white);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  min-width: 110px;
}

.cycle-idx {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--orange);
}

.cycle-name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--black);
}

.cycle-arrow {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 700;
}

/* Status Row */
.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0.85rem 0 1.25rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
}

.status-dot--active {
  background: var(--orange);
}

.status-item--active {
  color: var(--orange-dark);
}

.status-sep {
  color: var(--gray-300);
}

/* Governance Note */
.aitomat-governance-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-100);
}

.aitomat-governance-note p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.governance-refs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.governance-ref-item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  padding: 0.4rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
}

.governance-connection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.governance-arrow {
  color: var(--orange);
}

/* --------------------------------------------------------------------------
   14. DEFINIÇÕES OBRIGATÓRIAS
   -------------------------------------------------------------------------- */
.definition-block {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  background: var(--white);
  margin-bottom: 0.85rem;
}

.definition-block--linked {
  border-left: 4px solid var(--orange);
}

.definition-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.definition-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.definition-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(232, 111, 34, 0.25);
}

.definition-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.definition-body p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.definition-responsible {
  font-size: 0.75rem !important;
  color: var(--gray-400) !important;
}

.definition-responsible strong {
  color: var(--black);
}

.definition-link-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.chain-arrow {
  color: var(--orange);
}

.chain-final {
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.definitions-closing-notice {
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1rem;
  max-width: 720px;
}

.definitions-closing-notice p {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. TREINAMENTO
   -------------------------------------------------------------------------- */
.training-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.training-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.training-time-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}

.training-time-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.05;
}

.training-block {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--white);
}

.training-sidebar {
  width: 110px;
  background: var(--gray-100);
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.85rem;
  flex-shrink: 0;
}

.training-duration {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.training-part {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.training-content {
  padding: 1.25rem 1.65rem;
  flex: 1;
}

.training-block-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.training-objective {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.training-topics {
  list-style: none;
  margin-bottom: 0.75rem;
}

.training-topics li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.15rem 0 0.15rem 1.25rem;
  position: relative;
}

.training-topics li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.training-notice {
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  padding: 0.65rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 0.65rem;
}

.training-notice p {
  font-size: 0.8125rem;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}

/* Subtopics */
.subtopic {
  margin-top: 0.65rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--gray-300);
  background: var(--gray-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.subtopic-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.subtopic-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.subtopic-refs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}

.subtopic-ref {
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   16. METODOLOGIA
   -------------------------------------------------------------------------- */
.method-flow {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  margin: 3rem 0;
}

.method-step {
  flex: 1;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.method-num {
  display: block;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.method-step-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.method-step-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.method-arrow {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 700;
}

.method-notes {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.method-note {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.method-note-dash {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.method-note p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   17. PRÓXIMOS PASSOS — ROADMAP
   -------------------------------------------------------------------------- */
.roadmap {
  margin: 1.25rem auto 1.5rem;
  max-width: 680px;
}

.roadmap-stage {
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.roadmap-stage--active {
  border-color: var(--orange);
  background: rgba(232, 111, 34, 0.08);
}

.roadmap-stage--goal {
  border-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 1.15rem 1.5rem;
}

.roadmap-marker {
  margin-bottom: 0.35rem;
}

.roadmap-label-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.roadmap-label-tag--accent {
  color: var(--orange);
}

.roadmap-label-tag--bright {
  color: var(--white);
}

.roadmap-items {
  list-style: none;
}

.roadmap-items li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.15rem 0 0.15rem 1.25rem;
  position: relative;
}

.roadmap-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.roadmap-goal-text {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.roadmap-connector {
  text-align: center;
  padding: 0.25rem 0;
}

.roadmap-connector span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.15);
}

/* Closing Banner */
.closing-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.closing-logo {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.closing-project {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
}

.closing-project strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.closing-project span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   18. RODAPÉ
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.footer-actions {
  display: flex;
  gap: 0.75rem;
}

.footer-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font);
}

.footer-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-sections {
    display: none;
  }
}

@media (max-width: 960px) {
  .method-flow {
    flex-direction: column;
  }

  .method-arrow {
    transform: rotate(90deg);
    justify-content: center;
    margin: 0.25rem 0;
  }

  .training-block {
    flex-direction: column;
  }

  .training-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .training-duration {
    margin-bottom: 0;
  }

  .closing-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-project {
    text-align: left;
  }

  .timeline-item--current {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section--closing {
    padding: 5rem 0 4rem;
  }

  .hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .pipeline-flow {
    gap: 0.35rem 0.5rem;
  }

  .cycle-flow,
  .esteira-flow {
    gap: 0.35rem 0.5rem;
  }

  .functions-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .definition-link-chain {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .chain-arrow {
    transform: rotate(90deg);
  }

  .governance-connection {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .governance-arrow {
    transform: rotate(90deg);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .training-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .training-time {
    align-items: flex-start;
  }

  .rule-body,
  .rule-alert {
    margin-left: 0;
    padding-left: 1rem;
  }

  .subtopic-refs {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   21. HERO PHASE CARDS — Status Semântico
   -------------------------------------------------------------------------- */
.hero-phases {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.hero-phase {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero-phase--green {
  border-color: rgba(91, 140, 106, 0.35);
  background: rgba(91, 140, 106, 0.06);
}

.hero-phase--green .hero-phase-label {
  color: var(--green);
}

.hero-phase--green .hero-phase-status {
  color: var(--green);
}

.hero-phase--yellow {
  border-color: rgba(196, 154, 42, 0.3);
  background: rgba(196, 154, 42, 0.05);
}

.hero-phase--yellow .hero-phase-label {
  color: var(--yellow);
}

.hero-phase--yellow .hero-phase-status {
  color: var(--yellow);
}

.hero-phase--action {
  border-color: rgba(232, 111, 34, 0.35);
  background: rgba(232, 111, 34, 0.06);
}

.hero-phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.15);
  padding: 0 0.5rem;
}

/* --------------------------------------------------------------------------
   22. TIMELINE — Status Semântico
   -------------------------------------------------------------------------- */
.timeline-item--green .timeline-marker {
  border-color: var(--green);
}

.timeline-item--green .timeline-num {
  color: var(--green);
}

.timeline-item--green .timeline-status {
  color: var(--green-dark);
  border-color: var(--green-border);
  background: var(--green-soft);
}

.timeline-item--yellow .timeline-marker {
  border-color: var(--yellow);
}

.timeline-item--yellow .timeline-num {
  color: var(--yellow);
}

.timeline-item--yellow .timeline-status {
  color: var(--yellow-dark);
  border-color: var(--yellow-border);
  background: var(--yellow-soft);
}

.timeline-item--yellow {
  position: relative;
}

/* --------------------------------------------------------------------------
   23. FASE 1 — Verde Semântico
   -------------------------------------------------------------------------- */
.pipeline-node--green {
  color: var(--green-dark);
  border-color: var(--green-border);
  background: var(--green-soft);
}

.pipeline-arrow--green {
  color: var(--green);
}

.deliverables-block--green {
  border-color: var(--green-border);
  border-top: 3px solid var(--green);
}

.check-mark--green {
  color: var(--green);
}

.fase-closing-badge--green {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: var(--green-border);
}

.section-eyebrow--green {
  color: var(--green);
}

/* --------------------------------------------------------------------------
   24. API OFICIAL META — Azul Meta
   -------------------------------------------------------------------------- */
.section-header--meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}

.meta-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.meta-logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.meta-logo-icon svg {
  width: 100%;
  height: 100%;
}

.section-eyebrow--meta {
  color: var(--meta-blue);
  margin-bottom: 0.25rem;
}

.section-title--meta {
  color: var(--black);
  font-size: clamp(1.85rem, 3.4vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.rule-number--meta {
  color: var(--meta-blue);
}

.rule-card--meta {
  border-left: 3px solid var(--meta-blue);
}

.rule-card--critical-meta {
  border-color: var(--meta-blue);
  border-width: 2px;
  background: var(--meta-blue-soft);
  border-left: 4px solid var(--meta-blue);
}

.rule-alert--meta {
  border-left-color: var(--meta-blue);
}

.rules-footer-note--strong p {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   25. FASE 2 — Presença visual forte
   -------------------------------------------------------------------------- */
.esteira-container--bold {
  background: var(--black);
  border-color: transparent;
  padding: 1.35rem 1.75rem;
  margin: 0.85rem 0;
}

.esteira-container--bold .subsection-label {
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.esteira-container--bold .esteira-step {
  background: var(--graphite);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 800;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
}

.esteira-container--bold .esteira-arrow {
  color: var(--orange);
}

.callout-block--hero {
  background: var(--black);
  border: none;
  border-radius: var(--radius-md);
  padding: 1.35rem 1.75rem;
  text-align: center;
  max-width: 820px;
  margin: 0.85rem auto 1.15rem;
  position: relative;
}

.callout-block--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.callout-block--hero p {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin: 0;
}

.callout-block--hero strong {
  color: var(--white);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   26. AITOMat — CAMADA OPERACIONAL CENTRAL (Identidade YESOD: Preto + Laranja + Branco)
   -------------------------------------------------------------------------- */
.aitomat-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 2rem;
}

/* 26.1 Hero Preto YESOD — Força Executiva com Altura Equilibrada */
.aitomat-hero-black {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.85rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.aitomat-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aitomat-hero-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.aitomat-hero-eyebrow {
  color: var(--orange);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.aitomat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(232, 111, 34, 0.15);
  color: var(--orange);
  border: 1px solid rgba(232, 111, 34, 0.4);
  border-radius: 100px;
}

.aitomat-hero-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aitomat-hero-title {
  font-size: clamp(2.35rem, 4vw, 3.15rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.brand-dot--orange {
  color: var(--orange);
}

.aitomat-hero-sub {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  margin: 0;
}

/* 26.2 Propósito Central — Composição Editorial em 2 Colunas */
.aitomat-editorial-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.25rem;
  align-items: start;
  padding: 0.5rem 0 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.aitomat-col-lead {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.aitomat-tag {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.aitomat-lead-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.aitomat-col-text {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.aitomat-col-text p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* 26.3 Ciclo Contínuo de Operação — Linha Refinada com Presença YESOD */
.aitomat-cycle-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aitomat-section-heading .subsection-label {
  color: var(--orange);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.aitomat-flow-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.aitomat-flow-node {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.35rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 2.5px solid var(--orange);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.aitomat-flow-node:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 111, 34, 0.15);
}

.flow-node-idx {
  font-size: 0.6875rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.flow-node-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.flow-node-arrow {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* 26.4 Badges de Status da Implantação */
.aitomat-status-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0.35rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
}

.status-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-400);
}

.status-badge .badge-dot--done {
  background: var(--green);
}

.status-badge--active {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  color: var(--orange-dark);
  font-weight: 700;
}

.status-badge--active .badge-dot--active {
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange-glow);
}

/* 26.5 Acessos e Material de Apoio — Encerramento Visual da Página */
.aitomat-access-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.access-section-header .subsection-label {
  color: var(--orange);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.access-section-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin: 0;
}

.aitomat-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.access-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.access-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(232, 111, 34, 0.14);
}

.access-cat-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.access-feature-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.access-feature-desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.access-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.access-primary-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 111, 34, 0.35);
  color: var(--white);
}

.access-primary-btn .btn-icon {
  font-size: 0.6875rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   27. DEFINIÇÕES — Amarelo Semântico Vivo + Campos Executivos
   -------------------------------------------------------------------------- */
.definition-block--yellow {
  border-color: var(--yellow-border);
  border-left: 4px solid var(--yellow);
  box-shadow: 0 4px 20px var(--yellow-glow);
}

.definition-badge--yellow {
  color: var(--yellow-dark);
  background: var(--yellow-soft);
  border-color: var(--yellow-border);
  font-weight: 700;
}

.section-eyebrow--yellow {
  color: var(--yellow-dark);
}

.definitions-closing-notice--yellow {
  border-left-color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid var(--yellow-border);
  border-left-width: 4px;
}

.definitions-closing-notice--yellow p {
  color: var(--black);
  font-weight: 600;
}

/* Executive fill-in fields */
.exec-fields {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.exec-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.exec-field-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.exec-field-input {
  width: 100%;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  padding: 0.35rem 0;
  outline: none;
  transition: var(--ease);
}

.exec-field-input:focus {
  border-bottom-color: var(--orange);
}

.exec-field-input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
  font-style: italic;
}

.exec-field-row {
  display: flex;
  gap: 1rem;
}

.exec-field-row .exec-field {
  flex: 1;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   28. METODOLOGIA DO ENCONTRO — FLUXO SEQUENCIAL EXECUTIVO
   -------------------------------------------------------------------------- */
.method-flow-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.method-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: var(--ease);
}

.method-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.method-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.method-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.method-tag {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.method-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.02em;
}

.method-card-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.method-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0.25rem;
}

.method-notes-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
}

.method-notes-title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.method-notes-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   29. PRÓXIMOS PASSOS — HOVER PREMIUM ESTILO YESOD
   -------------------------------------------------------------------------- */
.roadmap-stage {
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.roadmap-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
}

.roadmap-stage--active {
  border-color: var(--orange);
  background: rgba(232, 111, 34, 0.08);
}

.roadmap-stage--active:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(232, 111, 34, 0.25);
}

.roadmap-stage--goal {
  border-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 1.15rem 1.5rem;
}

.roadmap-stage--goal:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.15);
}

.slide-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   30. DINÂMICA DA APRESENTAÇÃO HORIZONTAL (SLIDES)
   -------------------------------------------------------------------------- */
.presentation-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.deck-track {
  display: flex;
  flex-direction: row;
  width: 1000vw; /* 10 telas horizontais */
  height: 100vh;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.deck-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.5rem 0 3.25rem 0; /* Folga superior para a nav (48px) e inferior para controles */
  scroll-behavior: smooth;
  position: relative;
}

.deck-slide.section-hero {
  padding: 0;
}

.deck-slide.section-hero .hero-inner {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.deck-slide.section--closing {
  padding-bottom: 2.25rem;
}

/* Scrollbar sutil para o conteúdo vertical interno de cada slide */
.deck-slide::-webkit-scrollbar {
  width: 6px;
}

.deck-slide::-webkit-scrollbar-track {
  background: transparent;
}

.deck-slide::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.deck-slide.section-hero::-webkit-scrollbar-thumb,
.deck-slide.section--closing::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   31. CONTROLES EXECUTIVOS DA APRESENTAÇÃO
   -------------------------------------------------------------------------- */
.deck-controls {
  position: fixed;
  bottom: 1.15rem;
  right: 1.5rem;
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.deck-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--ease);
  color: var(--gray-300);
}

.deck-btn:hover:not(:disabled) {
  background: rgba(232, 111, 34, 0.18);
  border-color: var(--orange);
  color: var(--orange);
}

.deck-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.deck-btn-arrow {
  font-size: 0.8125rem;
  line-height: 1;
}

.deck-counter {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-400);
  padding: 0 0.4rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.deck-counter-current {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
}

.deck-counter-sep {
  color: var(--gray-500);
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   32. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-sections {
    display: none; /* No mobile/tablet enxuga a nav para não quebrar */
  }
}

@media (max-width: 960px) {
  .hero-phases {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-phase-arrow {
    display: none;
  }

  .aitomat-editorial-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .aitomat-flow-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .aitomat-flow-node {
    min-width: 95px;
  }

  .callout-block--hero {
    padding: 1.25rem 1.25rem;
  }

  .aitomat-access-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .method-flow-grid {
    flex-direction: column;
    gap: 0.75rem;
  }

  .method-flow-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .exec-field-row {
    flex-direction: column;
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .meta-header-row {
    flex-wrap: wrap;
  }

  .hero-phase {
    padding: 0.75rem 1rem;
  }

  .esteira-container--bold {
    padding: 1.25rem 1rem;
  }

  .aitomat-container {
    gap: 1.25rem;
  }

  .aitomat-hero-black {
    padding: 1.15rem 1.25rem;
  }

  .aitomat-hero-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .deck-controls {
    bottom: 0.75rem;
    right: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   33. IMPRESSÃO (Converte de volta para documento contínuo)
   -------------------------------------------------------------------------- */
@media print {
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
    overflow: visible !important;
  }

  .nav-editorial,
  .deck-controls,
  .deck-shortcuts-hint,
  .hero-scroll-cta,
  .footer-actions {
    display: none !important;
  }

  .presentation-wrapper {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .deck-track {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .deck-slide {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    page-break-after: always;
    padding: 2rem 0 !important;
  }

  .section--closing {
    background: #FFFFFF !important;
    color: #000000 !important;
  }

  .section-hero {
    min-height: auto !important;
    background: #000000 !important;
  }

  .aitomat-hero-black,
  .esteira-container--bold,
  .callout-block--hero {
    background: #222222 !important;
    color: #FFFFFF !important;
  }
}
