/* =============================================
   Layers Ventures (programa-ma)
   Hero dark + conteúdo editorial.
   ============================================= */
:root {
  --color-primary-cyan-light: #e5f8f7;
  --color-primary-cyan: #00b8ad;
  --color-primary-cyan-dark: #00a69c;
  --color-success: #30b565;
  --color-link: #2f8af5;

  --color-lead: #232b34;
  --color-gray-70: #748494;
  --color-gray-60: #a3b1bf;
  --color-gray-40: #d7dee3;
  --color-gray-30: #e8ecef;
  --color-gray-10: #f4f6f8;
  --color-gray-05: #f8fafb;
  --color-white: #ffffff;

  --color-ink-900: #0a0d12;
  --color-ink-800: #0f141b;
  --color-ink-700: #161c25;

  --radius: 8px;
  --shadow-card: 0px 1px 6px rgba(46, 142, 255, 0.1);

  --max-narrow: 720px;
  --max-wide: 1140px;
  --section-pad: 120px;
}

/* =============================================
   Reset & Base
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Nunito",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-lead);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--color-primary-cyan);
  color: var(--color-ink-900);
}

.container {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow {
  max-width: var(--max-narrow);
}

.text-link {
  color: var(--color-primary-cyan-dark);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.15s ease;
}
.text-link:hover {
  opacity: 0.7;
}

/* =============================================
   Header — flutua sobre o hero, fica sólido após scroll
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem 0.75rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}
.header-logo__mark {
  display: block;
  height: 22px;
  width: auto;
  flex-shrink: 0;
}
/* Tipografia de “ventures / capital”: serifa editorial em itálico, em contraste com a wordmark Nunito no SVG */
.header-logo__ventures {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1;
  position: relative;
  top: 0.5px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .header-logo__ventures {
    font-size: 1.25rem;
  }
}
.header.is-scrolled {
  background-color: rgba(10, 13, 18, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--color-white);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.nav-cta:hover {
  background-color: var(--color-primary-cyan);
  border-color: var(--color-primary-cyan);
  color: var(--color-ink-900);
}

/* =============================================
   Hero — dark, particles
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-ink-900);
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 92% 88% at 50% 48%,
    #000 0%,
    rgba(0, 0, 0, 0.92) 35%,
    rgba(0, 0, 0, 0.45) 58%,
    rgba(0, 0, 0, 0.12) 78%,
    rgba(0, 0, 0, 0.03) 91%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 92% 88% at 50% 48%,
    #000 0%,
    rgba(0, 0, 0, 0.92) 35%,
    rgba(0, 0, 0, 0.45) 58%,
    rgba(0, 0, 0, 0.12) 78%,
    rgba(0, 0, 0, 0.03) 91%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Sem screen: evita “anel” onde o gradiente encontra o fundo. */
  mix-blend-mode: normal;
  opacity: 0.92;
  /* Vinheta escura + base neutra; halos de cor vão no ::after com blur. */
  background:
    radial-gradient(
      ellipse 120% 85% at 50% 0%,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.22) 42%,
      rgba(10, 13, 18, 0.06) 72%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 48%,
      rgba(10, 13, 18, 0.28) 76%,
      var(--color-ink-900) 100%
    );
}

/* Halos rosa/ciano: uma camada com blur alto — fade até rgba(...,0), sem salto para transparent. */
.hero-vignette::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 72% 64% at 86% 46%,
      rgba(251, 160, 177, 0.55) 0%,
      rgba(251, 160, 177, 0.22) 38%,
      rgba(251, 160, 177, 0.08) 62%,
      rgba(251, 160, 177, 0.02) 82%,
      rgba(251, 160, 177, 0) 100%
    ),
    radial-gradient(
      ellipse 76% 68% at 14% 54%,
      rgba(0, 184, 173, 0.48) 0%,
      rgba(0, 184, 173, 0.2) 42%,
      rgba(0, 184, 173, 0.07) 65%,
      rgba(0, 184, 173, 0.02) 84%,
      rgba(0, 184, 173, 0) 100%
    ),
    radial-gradient(
      ellipse 110% 56% at 50% 102%,
      rgba(0, 184, 173, 0.14) 0%,
      rgba(0, 184, 173, 0.04) 52%,
      rgba(0, 184, 173, 0) 100%
    );
  filter: blur(64px);
  mix-blend-mode: screen;
  opacity: 0.48;
  animation: heroHaloBreathe 14s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

@keyframes heroHaloBreathe {
  0% {
    opacity: 0.38;
    transform: scale(1);
  }
  100% {
    opacity: 0.56;
    transform: scale(1.04);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 160px 24px 140px;
  text-align: left;
  width: 100%;
}

/* Linha do subtítulo + matriz compacta lado a lado */
.hero-sub-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: 48px;
  min-width: 0;
}
.hero-desc-col {
  min-width: 0;
  max-width: 56ch;
}
.hero-desc-col .hero-desc {
  margin-bottom: 1rem;
}
.hero-desc-col .hero-desc:last-child {
  margin-bottom: 0;
}
.hero-sub-row .hero-desc-col {
  margin-bottom: 0;
}

/* Matriz Escopo 02 × 03 — versão compacta (dark) */
.hero-matrix {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(0, 184, 173, 0.05);
  width: 320px;
  max-width: 100%;
  justify-self: end;
  flex-shrink: 0;
  min-width: 0;
}
.hero-matrix::before,
.hero-matrix::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 184, 173, 0.5);
  opacity: 0.6;
}
.hero-matrix::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10px;
}
.hero-matrix::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 10px;
}

.hero-matrix__grid {
  display: grid;
  grid-template-columns: minmax(0, 88px) repeat(3, minmax(0, 1fr));
  gap: 6px 8px;
  align-items: center;
  min-width: 0;
}
.hero-matrix__grid > * {
  min-width: 0;
}

.hero-matrix__corner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 2px 0 6px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1;
}
.hero-matrix__corner-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero-matrix__corner-count {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: "tnum";
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.hero-matrix__corner-count .n {
  color: var(--color-primary-cyan);
}
.hero-matrix__corner-count .x {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  padding: 0 1px;
}

.hero-matrix__seg {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  padding: 3px 0 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-matrix__cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
  hyphens: manual;
}
.hero-matrix__cat small {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 2px;
}
.hero-matrix__cell {
  height: 22px;
  border: 1px solid rgba(0, 184, 173, 0.28);
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(0, 184, 173, 0.06);
}
.hero-matrix__cell::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-cyan);
  box-shadow:
    0 0 6px rgba(0, 184, 173, 0.7),
    0 0 14px rgba(0, 184, 173, 0.3);
  animation: heroMatrixPulse 3.2s ease-in-out infinite;
}
.hero-matrix__cell:nth-of-type(6n + 2)::after {
  animation-delay: 0s;
}
.hero-matrix__cell:nth-of-type(6n + 3)::after {
  animation-delay: 0.2s;
}
.hero-matrix__cell:nth-of-type(6n + 4)::after {
  animation-delay: 0.4s;
}
.hero-matrix__cell:nth-of-type(6n + 5)::after {
  animation-delay: 0.6s;
}

@keyframes heroMatrixPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@media (max-width: 820px) {
  .hero-sub-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-matrix {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}

/* Matriz do hero: telas estreitas — coluna proporcional, células estáveis, sem estourar a largura */
@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(28px, 7.8vw, 52px);
    margin-bottom: 24px;
  }
  .hero-accent {
    white-space: normal;
  }

  .hero-matrix {
    padding: 12px 10px 12px;
    border-radius: 8px;
  }
  .hero-matrix__grid {
    grid-template-columns: minmax(0, 31%) repeat(3, minmax(0, 1fr));
    gap: 6px 5px;
  }
  .hero-matrix__corner {
    padding: 0 4px 4px 0;
  }
  .hero-matrix__corner-label {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .hero-matrix__corner-count {
    font-size: 11px;
  }
  .hero-matrix__seg {
    font-size: 9.5px;
    padding: 2px 2px 5px;
    line-height: 1.25;
  }
  .hero-matrix__cat {
    font-size: 11px;
    line-height: 1.2;
  }
  .hero-matrix__cat small {
    font-size: 7.5px;
    margin-bottom: 1px;
  }
  .hero-matrix__cell {
    height: 26px;
    min-height: 26px;
  }
  .hero-matrix__cell::after {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 360px) {
  .hero-matrix__grid {
    grid-template-columns: minmax(0, 34%) repeat(3, minmax(0, 1fr));
    gap: 5px 4px;
  }
  .hero-matrix__cat {
    font-size: 10px;
  }
  .hero-matrix__seg {
    font-size: 9px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 184, 173, 0.25);
  border-radius: 999px;
  background: rgba(0, 184, 173, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 24px rgba(0, 184, 173, 0.12);
}
.hero-eyebrow--editorial {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 600;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-cyan);
  box-shadow:
    0 0 10px var(--color-primary-cyan),
    0 0 22px var(--color-primary-cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.hero-title {
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 32px;
  max-width: 40ch;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 35%,
    rgba(255, 255, 255, 0.55) 50%,
    #ffffff 65%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 6s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: -50% 0;
  }
}

.hero-accent {
  color: var(--color-primary-cyan);
  -webkit-text-fill-color: var(--color-primary-cyan);
  font-style: normal;
  position: relative;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(0, 184, 173, 0.55),
    0 0 38px rgba(0, 184, 173, 0.35),
    0 0 80px rgba(0, 184, 173, 0.18);
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-primary-cyan) 30%,
    var(--color-primary-cyan) 70%,
    transparent
  );
  opacity: 0.6;
  filter: blur(0.5px);
}

.hero-desc {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 60ch;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.hero-scroll:hover {
  color: var(--color-primary-cyan);
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-primary-cyan)
  );
  transform: translateY(-100%);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background-color: var(--color-primary-cyan);
  color: var(--color-ink-900);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 6px 20px rgba(0, 184, 173, 0.35),
    0 0 60px rgba(0, 184, 173, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  background-color: var(--color-primary-cyan-dark);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 28px rgba(0, 184, 173, 0.5),
    0 0 80px rgba(0, 184, 173, 0.35);
}
.btn-primary:hover::after {
  left: 130%;
}

.btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: rgba(0, 184, 173, 0.6);
  background-color: rgba(0, 184, 173, 0.06);
  color: var(--color-primary-cyan);
}
/* WhatsApp no hero (fundo escuro) e no CTA (fundo claro) */
.btn-whatsapp {
  color: #d8ffe8;
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-whatsapp:hover {
  color: #ffffff;
  border-color: #3fe37c;
  background: rgba(37, 211, 102, 0.2);
}
.section--submit .btn-whatsapp,
.cta-v3--row .btn-whatsapp {
  color: #0b5a32;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}
.section--submit .btn-whatsapp:hover,
.cta-v3--row .btn-whatsapp:hover {
  color: #063a21;
  background: rgba(37, 211, 102, 0.22);
  border-color: #1aad56;
}

/* =============================================
   Sections — base
   ============================================= */
.section {
  padding: var(--section-pad) 0;
  background-color: var(--color-white);
  position: relative;
}
.section--alt {
  background-color: var(--color-gray-05);
}
.section--dark {
  background-color: var(--color-ink-900);
  color: var(--color-white);
}
.section--submit {
  background-color: var(--color-gray-05);
  border-top: 1px solid var(--color-gray-30);
}

/* Tese — ícone 3D à esquerda (desktop) */
.tese-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.tese-logo-wrap {
  position: sticky;
  top: 96px;
  width: 100%;
  max-width: 280px;
}

.tese-logo-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 360;
  border-radius: 12px;
}

.tese-copy {
  min-width: 0;
}

@media (max-width: 900px) {
  .tese-layout {
    grid-template-columns: 1fr;
  }

  .tese-logo-wrap {
    position: relative;
    top: auto;
    max-width: 220px;
    margin: 0 auto 8px;
  }
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-70);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-primary-cyan);
}
.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-lead);
  max-width: 22ch;
  margin-bottom: 32px;
}
.section-title--wide {
  max-width: 48ch;
}
.section-title--light {
  color: var(--color-white);
}

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-gray-70);
  max-width: 60ch;
  margin-bottom: 56px;
}
.section-lead--wide {
  max-width: 68ch;
}
.section-lead--light {
  color: rgba(255, 255, 255, 0.7);
}

.prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-lead);
  margin-bottom: 20px;
}
.prose p:last-child {
  margin-bottom: 0;
}

/* =============================================
   Critérios
   ============================================= */
.criteria {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-gray-30);
}
.criteria-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gray-30);
  align-items: baseline;
}
.criteria-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-cyan);
  letter-spacing: 0.05em;
  font-style: italic;
  font-feature-settings: "ss01";
}
.criteria-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.criteria-item p {
  font-size: 16px;
  color: var(--color-gray-70);
  line-height: 1.6;
}

/* =============================================
   Avaliação — métodos + tabela de eixos
   ============================================= */
.methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-gray-30);
  border-radius: var(--radius);
  margin-bottom: 80px;
  overflow: hidden;
  background: var(--color-white);
}
.method {
  padding: 32px;
  border-right: 1px solid var(--color-gray-30);
}
.method:last-child {
  border-right: none;
}
.method-head {
  margin-bottom: 16px;
}
.method-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-cyan);
  margin-bottom: 8px;
}
.method-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-lead);
  letter-spacing: -0.01em;
}
.method p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-lead);
  margin-bottom: 12px;
}
.method-when {
  font-size: 14px !important;
  color: var(--color-gray-70) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.axes-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.axes-table {
  border-top: 1px solid var(--color-lead);
  border-bottom: 1px solid var(--color-lead);
  margin-bottom: 24px;
}
.axes-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-30);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-lead);
}
.axes-row:last-child {
  border-bottom: none;
}
.axes-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-70);
  padding: 16px 0;
}
.axes-row strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 4px;
}
.axes-row em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--color-gray-70);
}

.axes-foot {
  font-size: 14px;
  color: var(--color-gray-70);
  font-style: italic;
}

/* =============================================
   Caminhos — três colunas
   ============================================= */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}
.path-card {
  padding: 28px 24px;
  border: 1px solid var(--color-gray-30);
  border-radius: var(--radius);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.path-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary-cyan-dark);
}
.path-mirror {
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-lead);
}
.path-mirror em {
  font-style: italic;
  font-weight: 600;
}
.path-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-70);
  flex: 1;
}
.path-data {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-lead);
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-30);
}
.path-data p + p {
  margin-top: 6px;
}
.paths-foot {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-gray-70);
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}

/* =============================================
   Oferta — lista editorial
   ============================================= */
.oferta-list {
  border-top: 1px solid var(--color-gray-30);
  margin-bottom: 24px;
}
.oferta-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray-30);
}
.oferta-item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.oferta-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-70);
}
.oferta-note {
  font-size: 14px;
  color: var(--color-gray-70);
}

/* =============================================
   Processo — abas + timeline (dark)
   ============================================= */
.process-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.process-tab {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.process-tab:hover {
  border-color: rgba(0, 184, 173, 0.45);
  color: var(--color-white);
}
.process-tab.is-active {
  background: rgba(0, 184, 173, 0.12);
  border-color: var(--color-primary-cyan);
  color: var(--color-primary-cyan);
}

.process-panel {
  display: none;
}
.process-panel.is-active {
  display: block;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.timeline-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.timeline-step:last-child {
  border-right: none;
}
.timeline-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary-cyan);
  font-variant-numeric: tabular-nums;
}
.timeline-step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-step > div span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* =============================================
   Critérios — três colunas
   ============================================= */
.criteria-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.criteria-path-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary-cyan-dark);
  margin-bottom: 16px;
}
.criteria-path-list {
  list-style: disc;
  padding-left: 1.15em;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-lead);
}
.criteria-path-list li + li {
  margin-top: 10px;
}

/* =============================================
   Categorias + princípios empilhados
   ============================================= */
.cats-block {
  margin-bottom: 56px;
}
.cats-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}
.cat-tag {
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: var(--color-lead);
  padding: 8px 14px;
  border: 1px solid var(--color-gray-40);
  border-radius: 6px;
  background: var(--color-white);
}
.cats-line {
  font-size: 15px;
  color: var(--color-gray-70);
  line-height: 1.6;
  font-style: italic;
}
.cats-principles-title {
  margin-top: 8px;
}

.principles--stack {
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-gray-30);
}
.principles--stack .principle {
  padding-left: 0;
  padding-right: 0;
  border-left: none;
}
.principles--stack .principle:nth-child(even) {
  padding-left: 0;
  border-left: none;
}

/* =============================================
   Submissão — CTA final
   ============================================= */
.submit-cta-block {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn--large {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}
.submit-sla {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-gray-70);
  font-style: italic;
}
.sla-placeholder {
  font-style: normal;
  font-weight: 700;
  color: var(--color-lead);
}

/* =============================================
   Processo — timeline legada (seção antiga; mantida por compat)
   ============================================= */
.steps {
  position: relative;
  margin-top: 16px;
  padding-left: 0;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
.step--last {
  border-bottom: none;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-cyan);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 60ch;
}

/* =============================================
   Princípios
   ============================================= */
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--color-gray-30);
}
.principle {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-gray-30);
  padding-right: 32px;
}
.principle:nth-child(even) {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid var(--color-gray-30);
}
.principle dt {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.principle dd {
  font-size: 15px;
  color: var(--color-gray-70);
  line-height: 1.6;
}

/* =============================================
   Form
   ============================================= */
.submit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 24px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-lead);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field-hint {
  font-weight: 400;
  color: var(--color-gray-70);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--color-lead);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-40);
  border-radius: 6px;
  padding: 12px 14px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 184, 173, 0.15);
}
.field textarea {
  font-family: inherit;
  min-height: 88px;
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: 13px;
  color: var(--color-gray-70);
  font-style: italic;
}
.form-success {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 6px;
  background-color: rgba(48, 181, 101, 0.08);
  border: 1px solid rgba(48, 181, 101, 0.3);
  color: #1f7a44;
  font-size: 15px;
  font-weight: 600;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background-color: var(--color-ink-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-seal {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-primary-cyan);
}

.faq {
  width: 100%;
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 72ch;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: var(--color-primary-cyan);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-meta a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer-meta a:hover {
  color: var(--color-primary-cyan);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
  }

  .nav {
    gap: 16px;
  }
  .nav-link {
    display: none;
  }
  .nav-cta {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 140px 24px 120px;
  }
  .hero-title {
    max-width: none;
  }
  .hero-scroll {
    display: none;
  }

  .methods {
    grid-template-columns: 1fr;
  }
  .method {
    border-right: none;
    border-bottom: 1px solid var(--color-gray-30);
  }
  .method:last-child {
    border-bottom: none;
  }

  .axes-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .axes-head {
    display: none;
  }
  .axes-row span:nth-child(2)::before {
    content: "Reduz · ";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gray-70);
    margin-right: 4px;
  }
  .axes-row span:nth-child(3)::before {
    content: "Eleva · ";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary-cyan);
    margin-right: 4px;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .principles {
    grid-template-columns: 1fr;
  }
  .principle {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
  }

  .submit-form {
    grid-template-columns: 1fr;
  }

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

  .paths-grid,
  .criteria-paths {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
  }
  .timeline-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .timeline-step:last-child {
    border-bottom: none;
  }

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

/* Depois do breakpoint 900px para não perder padding horizontal em telas estreitas */
@media (max-width: 520px) {
  .hero .hero-inner {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
}

/* =============================================
   Escopo — duas listas elegantes (categorias + segmentos)
   ============================================= */
.section--escopo {
  background: var(--color-white);
}
.section--escopo .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray-70);
  margin-bottom: 20px;
}
.escopo-lead {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--color-lead);
  letter-spacing: -0.025em;
  margin: 0 0 20px 0;
  max-width: 28ch;
}
.escopo-subline {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--color-gray-70);
  margin: 0 0 64px 0;
  max-width: 64ch;
}

.scope-social {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--color-gray-70);
  margin: 0 0 48px;
  max-width: 64ch;
}
.scope-social__link {
  color: var(--color-primary-cyan-dark);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 166, 156, 0.35);
  transition: opacity 0.15s ease;
}
.scope-social__link:hover {
  opacity: 0.75;
}
.scope-social__sep {
  color: var(--color-gray-60);
  font-weight: 600;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 80px;
}

.scope-block {
  position: relative;
  padding: 32px 32px 28px;
  border: 1px solid var(--color-gray-30);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 2px 8px rgba(10, 13, 18, 0.02),
    0 24px 48px -24px rgba(10, 13, 18, 0.06);
}
.scope-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 40% at 0% 0%,
    rgba(0, 184, 173, 0.05),
    transparent 60%
  );
}
.scope-block > * {
  position: relative;
}

.scope-block__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-30);
  align-items: baseline;
}
.scope-block__kicker {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-70);
}
.scope-block__axis {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 184, 173, 0.1);
  color: var(--color-primary-cyan-dark);
  font-size: 10.5px;
  letter-spacing: 0.14em;
}
.scope-block__title {
  grid-column: 1;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-lead);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.scope-block__count {
  grid-column: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 500;
  color: var(--color-primary-cyan);
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: center;
  justify-self: end;
  opacity: 0.9;
  text-shadow: 0 2px 18px rgba(0, 184, 173, 0.15);
}

/* Eixo A: cabeçalho e itens um pouco mais compactos para alinhar altura ao Eixo B */
.scope-block--what .scope-block__head {
  row-gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 16px;
}
.scope-block--what .scope-list {
  gap: 12px;
}
.scope-block--what .scope-list__item {
  padding: 14px 16px 14px 14px;
}

.scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scope-list__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  background: transparent;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.scope-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 184, 173, 0.6),
    rgba(0, 184, 173, 0.2)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}
.scope-list__item:hover {
  background: rgba(0, 184, 173, 0.025);
  border-color: rgba(0, 184, 173, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px rgba(0, 184, 173, 0.18);
}
.scope-list__item:hover::before {
  opacity: 1;
}

.scope-list__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
}
.scope-list__num {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-gray-60);
  line-height: 1;
  font-feature-settings: "tnum";
}
.scope-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 184, 173, 0.1) 0%,
    rgba(0, 184, 173, 0.04) 100%
  );
  border: 1px solid rgba(0, 184, 173, 0.22);
  color: var(--color-primary-cyan-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.scope-list__icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scope-list__item:hover .scope-list__icon {
  background: linear-gradient(
    180deg,
    rgba(0, 184, 173, 0.18) 0%,
    rgba(0, 184, 173, 0.08) 100%
  );
  border-color: rgba(0, 184, 173, 0.4);
  transform: scale(1.04);
}

.scope-list__body {
  min-width: 0;
}
.scope-list__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-lead);
  letter-spacing: -0.01em;
  margin: 0 0 6px 0;
}
.scope-list__desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-gray-70);
  margin: 0;
}

.scope-block__region {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-gray-30);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-gray-70);
  font-style: italic;
}
.scope-block__region strong {
  font-style: normal;
  color: var(--color-lead);
}

/* Divisor central: eixo A × eixo B */
.scope-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 4px;
  user-select: none;
}
.scope-bridge__line {
  flex: 1;
  width: 1px;
  min-height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-gray-40) 30%,
    var(--color-gray-40) 70%,
    transparent 100%
  );
}
.scope-bridge__cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-30);
  background: var(--color-white);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-gray-70);
  box-shadow: 0 4px 16px rgba(10, 13, 18, 0.05);
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.scope-bridge__n {
  color: var(--color-primary-cyan-dark);
  font-weight: 600;
}
.scope-bridge__x {
  color: var(--color-gray-60);
  font-size: 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
}

.scope-trava-block {
  margin-top: 0;
  padding-top: 40px;
  border-top: 2px solid var(--color-ink-900);
  max-width: 64ch;
}
.scope-trava {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--color-lead);
  margin: 0 0 16px 0;
  max-width: 40ch;
}
.scope-trava strong {
  font-style: normal;
  color: var(--color-primary-cyan-dark);
}
.scope-trava-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-70);
  max-width: 64ch;
  margin: 0;
}
.scope-trava-sub + .scope-trava-sub {
  margin-top: 14px;
}

@media (max-width: 880px) {
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .scope-bridge {
    flex-direction: row;
    width: 100%;
    padding: 0;
    gap: 14px;
  }
  .scope-bridge__line {
    width: auto;
    min-height: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--color-gray-40) 30%,
      var(--color-gray-40) 70%,
      transparent 100%
    );
  }
  .escopo-subline {
    margin-bottom: 48px;
  }
  .scope-social {
    margin-bottom: 40px;
  }
  .scope-block {
    padding: 28px 24px 24px;
  }
}
@media (max-width: 480px) {
  .scope-list__item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 14px 12px;
  }
  .scope-list__icon {
    width: 36px;
    height: 36px;
  }
  .scope-list__icon svg {
    width: 18px;
    height: 18px;
  }
  .scope-block__count {
    font-size: 40px;
  }
}

/* =============================================
   Processo — 4 etapas (dark)
   ============================================= */
.section--processo {
  background: var(--color-ink-900);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section--processo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 15% 0%,
      rgba(0, 184, 173, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 100% 100%,
      rgba(251, 160, 177, 0.08),
      transparent 60%
    );
  pointer-events: none;
}
.section--processo > .container {
  position: relative;
  z-index: 1;
}
.section--processo .section-title {
  margin-bottom: 20px;
}
.section--processo .section-lead {
  margin-bottom: 64px;
}

.proc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: proc;
}
.proc-step {
  position: relative;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}
.proc-step:hover {
  border-color: rgba(0, 184, 173, 0.45);
  transform: translateY(-3px);
  background: linear-gradient(
    180deg,
    rgba(0, 184, 173, 0.06) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
}
.proc-step:not(.proc-step--last)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 16px;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 184, 173, 0.6), transparent);
  z-index: 2;
}
.proc-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.proc-step__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--color-primary-cyan);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(0, 184, 173, 0.35);
}
.proc-step__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.proc-step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.015em;
  margin: 0;
}
.proc-step__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.proc-step__desc strong {
  color: var(--color-white);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-step:nth-child(2)::after,
  .proc-step:nth-child(4)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .proc-steps {
    grid-template-columns: 1fr;
  }
  .proc-step::after {
    display: none !important;
  }
}

/* =============================================
   Aplicar agora — CTA final
   ============================================= */
.section--aplicar {
  background: var(--color-gray-05);
  border-top: 1px solid var(--color-gray-30);
  position: relative;
  overflow: hidden;
}
.section--aplicar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 0%,
    rgba(0, 184, 173, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.apply-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.apply-wrap .section-eyebrow {
  justify-content: center;
}
.apply-title {
  margin: 0 auto 20px;
  max-width: none;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
}
.apply-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-gray-70);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.apply-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.apply-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gray-70);
  font-style: italic;
}

.footer-min {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-min__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer-min .footer-brand {
  flex-shrink: 0;
}
.footer-min .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.footer-dot {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
  margin: 0 10px;
  font-size: 14px;
  line-height: 1;
}
.footer-copyright {
  margin: 0 0 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 600px) {
  .footer-min__inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .scope-table {
    font-size: 12px;
  }
  .scope-table th,
  .scope-table td {
    padding: 8px 6px;
  }
  .scope-table__row {
    font-size: 11px;
  }
  .scope-table__d {
    font-size: 1.4rem;
    padding: 0.7rem 4px;
  }
}

/* =============================================
   Manifesto — Por que existimos
   Pôster da marca + missão/visão em tom afetivo.
   ============================================= */
.section--manifesto {
  padding: clamp(72px, 10vw, 120px) 0;
  background-color: var(--color-gray-05);
  position: relative;
  overflow: hidden;
}
.section--manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 500px at 85% 0%,
      rgba(0, 184, 173, 0.06),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at 10% 100%,
      rgba(245, 177, 188, 0.12),
      transparent 60%
    );
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.manifesto-poster {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  background: var(--color-white);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 20, 27, 0.04),
    0 20px 60px -20px rgba(15, 20, 27, 0.12);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.manifesto-poster:hover {
  transform: rotate(0deg);
}
.manifesto-poster::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color-gray-30);
  border-radius: 10px;
  pointer-events: none;
}
.manifesto-poster img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.manifesto-copy {
  min-width: 0;
}

.manifesto-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--color-lead);
  margin: 8px 0 40px;
}

.manifesto-list {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 1px solid var(--color-gray-30);
}

.manifesto-item {
  display: grid;
  gap: 6px;
}

.manifesto-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary-cyan-dark);
}

.manifesto-text {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--color-lead);
  max-width: 48ch;
}
.manifesto-text strong {
  font-weight: 700;
  color: var(--color-lead);
}

.manifesto-bridge {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-70);
  max-width: 52ch;
  padding-top: 24px;
  border-top: 1px dashed var(--color-gray-40);
}
.manifesto-bridge em {
  font-style: italic;
  color: var(--color-primary-cyan-dark);
}

@media (max-width: 860px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto-poster {
    max-width: 360px;
    margin: 0 auto;
    transform: rotate(-1deg);
  }
  .manifesto-title {
    margin-top: 0;
  }
}

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