/* =====================================================
   DAP — Direto ao Ponto
   CSS mobile-first. Base = mobile; min-width escala para
   tablet (>=768px) e desktop (>=1024px). Conteúdo das
   dobras centrado em faixa de no máximo 1440px.
===================================================== */

/* ---------- RESET & TOKENS ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  background: #f5c518;
  color: #0b1220;
}

:root {
  --yellow: #f5c518;
  --yellow-hover: #d9ac0a;
  --yellow-glow: rgba(245, 197, 24, 0.22);
  --yellow-dim: rgba(245, 197, 24, 0.1);
  --yellow-ghost: rgba(245, 197, 24, 0.06);
  --bg: #0b1220;
  --bg-alt: #0e1828;
  --surface: #0f1b30;
  --surface-2: #15243c;
  --fg: #eceff4;
  --fg-muted: #9aa9c2;
  --fg-subtle: #7e8ba3;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.65);
  --shadow-y: 0 8px 20px rgba(245, 197, 24, 0.22);
  --r-pill: 999px;
  --r-card: 16px;
  --r-sm: 8px;
  --font: 'Red Hat Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-o: cubic-bezier(0.22, 1, 0.36, 1);
  --content-max: 1440px;
  --gutter: 80px;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background:
    radial-gradient(1100px 640px at 92% 5%, rgba(245, 197, 24, 0.13), transparent 60%) fixed,
    radial-gradient(820px 480px at -6% 42%, rgba(245, 197, 24, 0.05), transparent 60%) fixed,
    radial-gradient(640px 360px at 58% 98%, rgba(245, 197, 24, 0.08), transparent 60%) fixed,
    var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
}
picture {
  display: contents;
}

/* Skip link (acessibilidade) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--yellow);
  color: #0b1220;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* Ícones Lucide — reserva de espaço (anti-CLS) */
i[data-lucide],
.contact-row svg,
.contact-row i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
  stroke-width: 2;
}

/* =====================================================
   GERAL
===================================================== */
.justify-content-center {
  justify-content: center;
}

/* ============================================
   SPACING UTILITIES - PADRÃO BOOTSTRAP 5
   Baseado em rem (1rem = 16px)
   ============================================ */

/* Variáveis de espaçamento */
:root {
  --spacer: 1rem;
  --spacer-0: 0;
  --spacer-1: 0.25rem; /* 4px */
  --spacer-2: 0.5rem; /* 8px */
  --spacer-3: 1rem; /* 16px */
  --spacer-4: 1.5rem; /* 24px */
  --spacer-5: 3rem; /* 48px */
}

/* ============================================
   MARGIN (m-*)
   ============================================ */

/* Todos os lados */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}

/* Topo (mt-*) */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}

/* Direita (me-*) */
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}

/* Inferior (mb-*) */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}

/* Esquerda (ms-*) */
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}

/* Eixos */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* ============================================
   PADDING (p-*)
   ============================================ */

/* Todos os lados */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}

/* Topo (pt-*) */
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}

/* Direita (pe-*) */
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}

/* Inferior (pb-*) */
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}

/* Esquerda (ps-*) */
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}

/* Eixos */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* ============================================
   FLEXBOX UTILITIES - PADRÃO BOOTSTRAP 5
   align-content, justify-content, align-items
   ============================================ */

/* ============================================
   ALIGN-CONTENT (align-content-*)
   Alinha as linhas do container flex no eixo transversal
   ============================================ */

/* Alinhamento no eixo transversal (cross-axis) */
.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

/* ============================================
   JUSTIFY-CONTENT (justify-content-*)
   Alinha os itens no eixo principal
   ============================================ */

/* Alinhamento no eixo principal (main-axis) */
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

/* ============================================
   ALIGN-ITEMS (align-items-*)
   Alinha os itens individuais no eixo transversal
   ============================================ */

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

/* ============================================
   ALIGN-SELF (align-self-*)
   Alinha um item individual no eixo transversal
   ============================================ */

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

/* ============================================
   FLEX-WRAP (flex-*)
   ============================================ */

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* ============================================
   UTILITÁRIOS ADICIONAIS - GAP (espaçamento)
   ============================================ */

.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}

/* Gap em eixos específicos */
.gap-x-0 {
  column-gap: 0 !important;
}
.gap-x-1 {
  column-gap: 0.25rem !important;
}
.gap-x-2 {
  column-gap: 0.5rem !important;
}
.gap-x-3 {
  column-gap: 1rem !important;
}
.gap-x-4 {
  column-gap: 1.5rem !important;
}
.gap-x-5 {
  column-gap: 3rem !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}
.gap-y-1 {
  row-gap: 0.25rem !important;
}
.gap-y-2 {
  row-gap: 0.5rem !important;
}
.gap-y-3 {
  row-gap: 1rem !important;
}
.gap-y-4 {
  row-gap: 1.5rem !important;
}
.gap-y-5 {
  row-gap: 3rem !important;
}

/* ============================================
   ROUNDED UTILITIES - PADRÃO BOOTSTRAP 5
   Bordas arredondadas
   ============================================ */

/* ============================================
   ROUNDED - Todos os cantos
   ============================================ */

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.25rem !important; /* 4px */
}

.rounded-2 {
  border-radius: 0.375rem !important; /* 6px */
}

.rounded-3 {
  border-radius: 0.5rem !important; /* 8px */
}

.rounded-4 {
  border-radius: 1rem !important; /* 16px */
}

.rounded-5 {
  border-radius: 1.25rem !important; /* 20px */
}

.rounded {
  border-radius: 0.375rem !important; /* 6px (padrão) */
}

.rounded-circle {
  border-radius: 50% !important; /* Círculo perfeito */
}

.rounded-pill {
  border-radius: 50rem !important; /* Pílula (capsula) */
}

/* ============================================
   ROUNDED - Cantos superiores (top)
   ============================================ */

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-top-2 {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.rounded-top-3 {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.rounded-top-4 {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

.rounded-top-5 {
  border-top-left-radius: 1.25rem !important;
  border-top-right-radius: 1.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: 50rem !important;
  border-top-right-radius: 50rem !important;
}

/* ============================================
   ROUNDED - Cantos inferiores (bottom)
   ============================================ */

.rounded-bottom-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom-2 {
  border-bottom-left-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.rounded-bottom-3 {
  border-bottom-left-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-bottom-4 {
  border-bottom-left-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.rounded-bottom-5 {
  border-bottom-left-radius: 1.25rem !important;
  border-bottom-right-radius: 1.25rem !important;
}

.rounded-bottom {
  border-bottom-left-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.rounded-bottom-circle {
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-left-radius: 50rem !important;
  border-bottom-right-radius: 50rem !important;
}

/* ============================================
   ROUNDED - Cantos específicos
   ============================================ */

/* Topo esquerdo */
.rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-start-1 {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start-2 {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.rounded-start-3 {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-start-4 {
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.rounded-start-5 {
  border-top-left-radius: 1.25rem !important;
  border-bottom-left-radius: 1.25rem !important;
}

.rounded-start {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

/* Topo direito */
.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-end-2 {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.rounded-end-3 {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-end-4 {
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.rounded-end-5 {
  border-top-right-radius: 1.25rem !important;
  border-bottom-right-radius: 1.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

/* ============================================
   ROUNDED - Cantos individuais (Bootstrap 5.3+)
   ============================================ */

/* Topo esquerdo */
.rounded-top-start-0 {
  border-top-left-radius: 0 !important;
}
.rounded-top-start-1 {
  border-top-left-radius: 0.25rem !important;
}
.rounded-top-start-2 {
  border-top-left-radius: 0.375rem !important;
}
.rounded-top-start-3 {
  border-top-left-radius: 0.5rem !important;
}
.rounded-top-start-4 {
  border-top-left-radius: 1rem !important;
}
.rounded-top-start-5 {
  border-top-left-radius: 1.25rem !important;
}

/* Topo direito */
.rounded-top-end-0 {
  border-top-right-radius: 0 !important;
}
.rounded-top-end-1 {
  border-top-right-radius: 0.25rem !important;
}
.rounded-top-end-2 {
  border-top-right-radius: 0.375rem !important;
}
.rounded-top-end-3 {
  border-top-right-radius: 0.5rem !important;
}
.rounded-top-end-4 {
  border-top-right-radius: 1rem !important;
}
.rounded-top-end-5 {
  border-top-right-radius: 1.25rem !important;
}

/* Inferior esquerdo */
.rounded-bottom-start-0 {
  border-bottom-left-radius: 0 !important;
}
.rounded-bottom-start-1 {
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-bottom-start-2 {
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-bottom-start-3 {
  border-bottom-left-radius: 0.5rem !important;
}
.rounded-bottom-start-4 {
  border-bottom-left-radius: 1rem !important;
}
.rounded-bottom-start-5 {
  border-bottom-left-radius: 1.25rem !important;
}

/* Inferior direito */
.rounded-bottom-end-0 {
  border-bottom-right-radius: 0 !important;
}
.rounded-bottom-end-1 {
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom-end-2 {
  border-bottom-right-radius: 0.375rem !important;
}
.rounded-bottom-end-3 {
  border-bottom-right-radius: 0.5rem !important;
}
.rounded-bottom-end-4 {
  border-bottom-right-radius: 1rem !important;
}
.rounded-bottom-end-5 {
  border-bottom-right-radius: 1.25rem !important;
}

/* =====================================================
   NAV
===================================================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  transition:
    background 300ms,
    border-color 300ms;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  padding: 0;
}
.nav-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
} /* mobile: escondido */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-self: end;
}
.nav-actions .btn-nav {
  display: none;
} /* mobile: só hamburger */

.nav-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 320ms var(--ease),
    opacity 200ms;
}
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav CTA pill */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #0b1220 !important;
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-family: var(--font);
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-y);
  transition:
    background 200ms,
    transform 400ms var(--ease),
    box-shadow 300ms !important;
}
.btn-nav:hover {
  background: var(--yellow-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.3) !important;
}

/* MOBILE NAV OVERLAY */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(9, 15, 27, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 96px 24px 48px;
  transform: translateX(100%);
  transition: transform 380ms var(--ease);
  overflow-y: auto;
  pointer-events: none;
}
#mobile-nav.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-links > li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links > li:first-child {
  border-top: 1px solid var(--border);
}
.mobile-nav-links a,
.mobile-nav-links > li > button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  padding: 17px 0;
  text-decoration: none;
  transition: color 200ms;
}
.mobile-nav-links a:hover,
.mobile-nav-links > li > button:hover {
  color: var(--yellow);
}
.mobile-sub {
  list-style: none;
  padding: 0 0 14px;
  display: flex;
  flex-direction: column;
}
.mobile-sub li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 9px 0 9px 16px;
  position: relative;
  text-decoration: none;
  display: block;
  transition: color 200ms;
}
.mobile-sub li a::before {
  content: '›';
  position: absolute;
  left: 4px;
  color: var(--yellow);
}
.mobile-sub li a:hover {
  color: var(--yellow);
}
.mobile-nav-footer {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =====================================================
   BOTÕES
===================================================== */
.btn-y {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  color: #0b1220;
  border-radius: var(--r-pill);
  padding: 14px 16px 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-y);
  transition:
    transform 400ms var(--ease),
    box-shadow 300ms,
    background 200ms;
}
.btn-y .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-y:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 13px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 200ms,
    border-color 200ms,
    background 200ms;
}
.btn-ghost:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.06);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0b1220;
  color: var(--yellow);
  border-radius: var(--r-pill);
  padding: 14px 16px 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 400ms var(--ease),
    box-shadow 300ms,
    background 200ms;
}
.btn-dark .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-dark:hover {
  background: #0f1d38;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}

/* =====================================================
   UTILITÁRIOS DE SEÇÃO
===================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 7px 14px;
  background: var(--yellow-ghost);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.eyebrow svg {
  width: 12px;
  height: 12px;
}
.display {
  font-family: var(--font);
  font-size: clamp(30px, 8vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  color: var(--fg-muted);
  margin-top: 18px;
}

main {
  display: block;
}

/* =====================================================
   HERO — base mobile (empilhado)
===================================================== */
@keyframes heroImgFade {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#hero {
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px 56px;
  position: relative;
  z-index: 2;
}
.hero-left-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(40px, 12vw, 92px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-title .yl {
  color: var(--yellow);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-direction: column;
}
.hero-ctas .btn-y,
.hero-ctas .btn-ghost {
  justify-content: center;
}
.hero-accent-line {
  display: none;
}
.hero-right {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: heroImgFade 1.6s var(--ease-o) forwards;
}
.hero-right-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(11, 18, 32, 0.35) 26%, transparent 60%),
    linear-gradient(to bottom, rgba(245, 197, 24, 0.11) 0%, transparent 30%);
}

/* =====================================================
   PILARES — base mobile (1 coluna)
===================================================== */
#pilares {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 0;
}
#pilares .display {
  color: #0b1220;
}
.pilares-inner {
  padding: 56px 24px;
}
.pilares-header {
  padding: 0 0 40px;
}
.pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #e0e0e0;
}
.pilar {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 400ms var(--ease),
    box-shadow 300ms;
}
.pilar:hover {
  transform: translateY(-4px);
}
.pilar.p-y {
  background: var(--yellow);
  color: #0b1220;
}
.pilar.p-y:hover {
  box-shadow: 0 16px 40px rgba(245, 197, 24, 0.25);
}
.pilar.p-d {
  background: var(--surface);
  color: var(--fg);
}
.pilar.p-d:hover {
  box-shadow: var(--shadow-md);
  outline: 1px solid rgba(245, 197, 24, 0.25);
}
.pilar.p-s {
  background: var(--surface-2);
  color: var(--fg);
}
.pilar.p-s:hover {
  box-shadow: var(--shadow-md);
}
.pilar-ghost-n {
  position: absolute;
  top: 16px;
  right: 20px;
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.07;
  pointer-events: none;
  color: inherit;
}
.pilar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.pilar-lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
}
.pilar-name {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.pilar-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.5;
}
.pilar-body {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  flex: 1;
  opacity: 0.75;
}
.pilar-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  margin-top: 6px;
}
.pilar-more .ico-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--ease);
}
.pilar.p-d .pilar-more,
.pilar.p-s .pilar-more {
  color: var(--yellow);
}
.pilar.p-d .pilar-more .ico-sm,
.pilar.p-s .pilar-more .ico-sm {
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow);
}
.pilar-more:hover .ico-sm {
  transform: translateX(4px);
}

/* =====================================================
   METODOLOGIA — base mobile (fluxo vertical)
===================================================== */
#metodologia {
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
#metodologia::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.1px, transparent 1.7px);
  background-size: 20px 20px;
  pointer-events: none;
}
.met-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
}
.met-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.met-header .eyebrow {
  justify-content: center;
  align-self: center;
}
.met-sub {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--fg-subtle);
  margin-top: 12px;
}
.met-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.met-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: var(--r-card);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms var(--ease-o),
    transform 600ms var(--ease-o),
    background 300ms,
    box-shadow 300ms;
}
.met-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.met-step:nth-child(1) {
  transition-delay: 0.05s;
}
.met-step:nth-child(3) {
  transition-delay: 0.2s;
}
.met-step:nth-child(5) {
  transition-delay: 0.35s;
}
.met-step:nth-child(7) {
  transition-delay: 0.5s;
}
.met-step.visible:hover {
  background: var(--surface);
  transform: translateY(-10px) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}
.met-step.visible:hover .met-ring {
  border-color: rgba(245, 197, 24, 0.6);
  background: rgba(245, 197, 24, 0.08);
  box-shadow:
    0 0 0 10px rgba(245, 197, 24, 0.06),
    0 6px 20px rgba(245, 197, 24, 0.2);
}
.met-step.visible:hover .met-n {
  text-shadow: 0 0 24px rgba(245, 197, 24, 0.5);
}
.met-arrow {
  padding: 8px 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 400ms var(--ease-o);
  transform: rotate(90deg);
}
.met-arrow.visible {
  opacity: 1;
}
.met-arrow:nth-child(2) {
  transition-delay: 0.12s;
}
.met-arrow:nth-child(4) {
  transition-delay: 0.27s;
}
.met-arrow:nth-child(6) {
  transition-delay: 0.42s;
}
.arr-line {
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.arr-head {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--yellow);
}
.met-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 197, 24, 0.3);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px rgba(245, 197, 24, 0.04);
  transition:
    border-color 300ms,
    background 300ms,
    box-shadow 300ms;
}
.met-ring svg {
  width: 30px;
  height: 30px;
}
.met-n {
  font-size: 44px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  transition: text-shadow 300ms;
}
.met-t {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
}
.met-d {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-subtle);
  line-height: 1.55;
}
.met-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.met-cta .btn-y {
  justify-content: center;
}

/* =====================================================
   EXPERIÊNCIAS — carrossel
===================================================== */
#experiencias {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
}
.exp-head {
  max-width: 680px;
  margin-bottom: 44px;
}
.carousel-outer {
  overflow: hidden;
  position: relative;
  padding-top: 8px;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
}
.carousel-outer.is-dragging {
  cursor: grabbing;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  user-select: none;
  /* Fallback sem JS (o JS assume o controle e desliga esta animação) */
  animation: carouselScroll 120s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes carouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Chip de logo de cliente — largura fixa (máx. 180px), nunca estoura */
.logo-chip {
  flex: 0 0 180px;
  width: 180px;
  max-width: 180px;
  height: 96px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition:
    box-shadow 220ms,
    transform 220ms;
}
.logo-chip img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    filter 300ms,
    opacity 300ms;
}
.logo-chip:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.logo-chip:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =====================================================
   PRÓXIMOS PASSOS — base mobile (1 coluna)
===================================================== */
#proximos {
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#proximos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.1px, transparent 1.7px);
  background-size: 20px 20px;
  pointer-events: none;
}
.prox-head {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.prox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.prox-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color 200ms,
    transform 400ms var(--ease),
    box-shadow 300ms;
}
.prox-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.1);
}
.prox-card svg {
  width: 48px;
  height: 48px;
}
.prox-step {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.prox-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
}
.prox-body {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--fg-muted);
}
.prox-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.prox-cta .btn-y {
  justify-content: center;
}

/* =====================================================
   SOBRE (preview split) — base mobile (empilhado)
===================================================== */
#sobre-split {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sobre-txt {
  background: var(--bg-alt);
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.sobre-txt .display {
  margin: 18px 0 24px;
}
.sobre-txt .btn-y {
  align-self: flex-start;
}
.sobre-txt blockquote {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.78;
  color: var(--fg-muted);
  border-left: 3px solid var(--yellow);
  padding-left: 22px;
  margin-bottom: 32px;
}
.sobre-img {
  position: relative;
  overflow: hidden;
  background: var(--fg);
  min-height: 360px;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}
.sobre-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}
.sobre-caption-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}
.sobre-caption-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* =====================================================
   CONTATO — base mobile (1 coluna)
===================================================== */
#contato {
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#contato::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.07), transparent 70%);
  pointer-events: none;
}
.contato-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contato-header {
  margin: 18px 0 24px;
}
.contato-header .display {
  color: var(--fg);
  font-size: clamp(32px, 8vw, 52px);
  margin: 0 0 14px;
  line-height: 1.05;
}
.contato-header > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 340px;
  margin: 0;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.contact-row a {
  color: inherit;
  text-decoration: none;
}
.contact-row a:hover {
  color: var(--yellow);
}
.contact-row i,
.contact-row svg {
  color: rgba(245, 197, 24, 0.75);
  width: 16px;
  height: 16px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  text-decoration: none;
  transition:
    border-color 200ms,
    color 200ms,
    background 200ms;
}
.soc:hover {
  border-color: var(--yellow);
  color: #0b1220;
  background: var(--yellow);
}
.soc svg {
  width: 16px;
  height: 16px;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.f-group label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.f-group input,
.f-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 14px;
  outline: none;
  resize: none;
  transition:
    border-color 200ms,
    box-shadow 200ms;
}
.f-group input:focus,
.f-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}
.f-group input::placeholder,
.f-group textarea::placeholder {
  color: var(--fg-subtle);
}
.f-group textarea {
  height: 128px;
}

/* Honeypot + status */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 4px;
  min-height: 1px;
}
.form-status.is-success {
  color: #4ade80;
}
.form-status.is-error {
  color: #f87171;
}
#contato-form.is-sending #form-submit {
  opacity: 0.6;
  pointer-events: none;
}

/* =====================================================
   FOOTER — base mobile
===================================================== */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
footer img {
  height: 24px;
  width: auto;
  opacity: 0.4;
}
footer p {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-subtle);
}

/* =====================================================
   FOCO / MOVIMENTO
===================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =====================================================
   PÁGINAS INTERNAS — base mobile
===================================================== */
.inner-page {
  padding-top: var(--nav-h);
}
.inner-hero-parallax {
  min-height: 380px;
  padding: 88px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.parallax-img {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: -100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}
.inner-hero-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(11, 18, 32, 0.42) 0%, rgba(11, 18, 32, 0.92) 100%);
}
.inner-hero-parallax .back-btn,
.inner-hero-parallax .eyebrow,
.inner-hero-parallax h1,
.inner-hero-parallax p {
  position: relative;
  z-index: 2;
}
.inner-hero-parallax p {
  font-size: 17px;
  color: var(--fg-muted);
  font-weight: 500;
  max-width: 540px;
  margin-top: 14px;
}

.inner-hero {
  padding: 60px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.inner-body {
  padding: 48px 24px;
  max-width: 900px;
  margin-inline: auto;
}
.inner-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.inner-body--white {
  background: #fff;
  max-width: none;
  padding: 48px 24px;
  border-bottom: 1px solid #e8e8e8;
}
.inner-body--white p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
  color: #444;
  margin-bottom: 22px;
  max-width: 820px;
  margin-inline: auto;
}

.inner-img-full {
  width: 100%;
  padding: 28px 24px;
  line-height: 0;
  background: #f5c518;
}
.inner-img-full img {
  display: block;
  width: 100%;
  max-width: 1280px; /* tamanho original — não amplia além disso */
  height: auto;
  margin-inline: auto;
  border-radius: var(--r-card);
}

.inner-other-services {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
}
.ios-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px;
  cursor: pointer;
  border-top: 1px solid #e8e8e8;
  text-decoration: none;
  transition: background 250ms;
}
.ios-item:hover {
  background: #fafafa;
}
.ios-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.ios-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ios-title {
  font-family: var(--font);
  font-size: clamp(22px, 6vw, 36px);
  font-weight: 700;
  color: #0b1220;
  line-height: 1.2;
  transition: color 250ms;
}
.ios-item:hover .ios-title {
  color: var(--yellow);
}
.ios-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1.5px solid rgba(11, 18, 32, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  transition:
    transform 250ms,
    border-color 250ms,
    background 250ms;
}
.ios-item:hover .ios-arrow {
  transform: translateX(6px);
  border-color: var(--yellow);
  background: var(--yellow);
}
.ios-arrow svg {
  width: 14px;
  height: 14px;
}

.inner-cta-band {
  background: var(--yellow);
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.inner-cta-band .display {
  color: #0b1220;
  margin-bottom: 28px;
}
.inner-cta-band .btn-y,
.inner-cta-band .btn-dark {
  justify-content: center;
}
.inner-cta-band--dark {
  background: #0b1220;
  border-top: none;
}
.inner-cta-band--dark .display {
  color: var(--fg);
}

.sobre-split-50 {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.sobre-split-50-inner {
  display: flex;
  flex-direction: column;
}
.ss-text {
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0b1220;
}
.ss-text .eyebrow {
  color: var(--yellow);
  margin-bottom: 20px;
}
.ss-text .display {
  color: #0b1220;
  margin-bottom: 28px;
}
.ss-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
  color: #555;
  margin-bottom: 18px;
}
.ss-text p:last-child {
  margin-bottom: 0;
}
.ss-image {
  overflow: hidden;
  min-height: 300px;
}
.ss-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-interna {
  padding: 56px 24px;
}
.sobre-sec {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.sobre-sec:last-child {
  border-bottom: none;
}
.sobre-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.sobre-img-frame {
  position: relative;
  width: 320px;
  max-width: 100%;
}
.sobre-img-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(245, 197, 24, 0.4);
  border-radius: var(--r-card);
  z-index: 0;
}
.sobre-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-card);
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.badge {
  padding: 6px 14px;
  background: var(--yellow-ghost);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.sobre-sec p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.time-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.time-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: border-color 200ms;
}
.time-card:hover {
  border-color: rgba(245, 197, 24, 0.35);
}
.time-card h4 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--yellow);
  margin-bottom: 10px;
}
.time-card p {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-subtle);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =====================================================
   >=600px — telas maiores de celular / tablet pequeno
===================================================== */
@media (min-width: 600px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-ctas .btn-y,
  .hero-ctas .btn-ghost {
    width: auto;
  }
  .f-row {
    grid-template-columns: 1fr 1fr;
  }
  .time-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 24px 40px;
  }
}

/* =====================================================
   >=768px — TABLET
===================================================== */
@media (min-width: 768px) {
  #nav {
    padding: 0 32px;
    gap: 24px;
  }
  #metodologia,
  #experiencias,
  #proximos,
  #contato {
    padding: 84px 40px;
  }
  .pilares-inner {
    padding: 64px 40px;
  }
  .pilares-header {
    padding: 0 0 48px;
  }
  .pilar {
    padding: 48px 36px;
  }
  .prox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .met-flow {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .met-step {
    flex: 1;
    padding: 20px 12px;
  }
  .met-arrow {
    transform: none;
    padding-top: 40px;
  }
  .met-bg {
    font-size: 180px;
  }
  .sobre-txt,
  .ss-text {
    padding: 72px 48px;
  }
  .sobre-interna {
    padding: 72px 40px;
  }
  .inner-hero-parallax {
    min-height: 440px;
    padding: 110px 40px;
  }
  .inner-body,
  .inner-body--white {
    padding: 64px 40px;
  }
  .inner-cta-band {
    padding: 72px 40px;
  }
  .inner-other-services {
    grid-template-columns: 1fr 1fr;
  }
  .ios-item {
    padding: 52px 48px;
  }
  .ios-item:nth-child(1) {
    border-right: 1px solid #e8e8e8;
  }
  .sobre-grid-2 {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }
  .time-cards {
    gap: 20px;
  }
}

/* =====================================================
   >=1024px — DESKTOP (layouts completos + faixa 1440px)
===================================================== */
@media (min-width: 1024px) {
  /* Nav completo */
  #nav {
    padding: 0 48px;
  }
  .nav-hamburger {
    display: none;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    justify-content: center;
    align-self: stretch;
  }
  .nav-links > li {
    display: flex;
    align-items: center;
  }
  .nav-links a,
  .nav-links button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 200ms;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 220ms var(--ease);
  }
  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--yellow);
  }
  .nav-actions .btn-nav {
    display: inline-flex;
  }
  .has-dropdown {
    position: relative;
    align-self: stretch;
  }
  .has-dropdown::after {
    content: '';
    position: absolute;
    left: -16px;
    right: -16px;
    bottom: -12px;
    height: 12px;
  }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(11, 18, 32, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms,
      transform 180ms;
    z-index: 999;
  }
  .has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown a {
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-muted);
    text-align: left;
    width: 100%;
    text-transform: none;
    letter-spacing: normal;
    transition:
      background 160ms,
      color 160ms;
  }
  .nav-dropdown a::after {
    display: none;
  }
  .nav-dropdown a:hover {
    background: var(--surface);
    color: var(--fg);
  }
  .dd-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    padding: 8px 14px 4px;
    display: block;
  }

  /* Faixa de conteúdo — fundo full-width, conteúdo centrado a 1440px */
  #nav,
  #metodologia,
  #experiencias,
  #proximos,
  #contato,
  .pilares-inner,
  .inner-hero-parallax,
  .inner-hero,
  .inner-body--white,
  .inner-other-services,
  .inner-cta-band,
  .sobre-interna,
  footer {
    padding-left: max(var(--gutter), calc((100% - var(--content-max)) / 2));
    padding-right: max(var(--gutter), calc((100% - var(--content-max)) / 2));
  }
  /* Imagem full-width: dentro da base de 1440px com respiro em todos os lados */
  .inner-img-full {
    padding: 72px max(var(--gutter), calc((100% - var(--content-max)) / 2));
  }
  #metodologia,
  #experiencias,
  #proximos,
  #contato {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .pilares-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pilares-header {
    padding: 0 0 60px;
  }
  .inner-cta-band {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .inner-hero-parallax {
    min-height: 520px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .inner-body--white {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .sobre-interna {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Hero split 50/50 — imagem sangra até a borda direita.
     O texto fica num bloco alinhado à direita da coluna (deslocado da borda esquerda),
     com o conteúdo interno alinhado à esquerda. */
  #hero {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    flex-direction: unset;
  }
  .hero-left {
    align-items: flex-end;
    padding: 80px 64px;
  }
  .hero-left-inner {
    max-width: 560px;
  }
  .hero-title {
    font-size: clamp(52px, 6.5vw, 92px);
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: 17px;
    margin-bottom: 44px;
  }
  .hero-right {
    height: auto;
  }
  .hero-accent-line {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 3px;
    background: var(--yellow);
    opacity: 0.6;
    z-index: 3;
  }
  .hero-right-grad {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(11, 18, 32, 0.42) 36%, transparent 64%),
      linear-gradient(to top, var(--bg) 0%, rgba(11, 18, 32, 0.55) 20%, transparent 46%),
      linear-gradient(to bottom, rgba(245, 197, 24, 0.11) 0%, transparent 22%);
  }
  #hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 4;
    pointer-events: none;
  }

  /* Pilares 3 colunas */
  .pilares-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pilar {
    padding: 52px 44px;
  }

  /* Sobre split 2 colunas */
  /* Texto alinhado à faixa de 1440px (à esquerda); imagem sangra até a borda direita.
     O fundo escuro (bg-alt) preenche toda a largura à esquerda da imagem. */
  #sobre-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* imagem = 50% da tela */
    min-height: 560px;
    background: var(--bg-alt);
  }
  #sobre-split::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.1px, transparent 1.7px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
  }
  .sobre-txt {
    padding: 96px 72px 96px max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  }
  .sobre-img {
    min-height: 0;
  }

  /* Contato 2 colunas */
  .contato-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  /* Internas */
  /* Imagem = 50% da tela; texto alinhado à faixa de 1440px pela esquerda */
  .sobre-split-50-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .ss-text {
    padding: 88px 64px 88px max(var(--gutter), calc((100vw - var(--content-max)) / 2));
  }
  .met-bg {
    font-size: 220px;
  }
  .met-flow {
    margin-bottom: 64px;
  }
}

/* =====================================================
   >=1280px — refinos de tela grande
===================================================== */
@media (min-width: 1280px) {
  .display {
    font-size: clamp(40px, 5.5vw, 56px);
  }
}
