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

:root {
  --black: #000000;
  --ink: #06070a;
  --text: #f4f5f7;
  --muted: #9aa0ad;
  --accent: #7fd8ff;   /* azul gelo, remete ao acrílico translúcido */
  --accent-2: #cfeeff;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* logo | menu centralizado | ações */
  align-items: center;
  gap: 24px;
  transition: padding 0.35s ease;
}

/* wrapper some do layout no desktop -> menu e ações viram itens do grid */
.nav__collapse {
  display: contents;
}

.nav__logo {
  justify-self: start;
}
.nav__menu {
  justify-self: center;
}
.nav__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav--scrolled {
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav--scrolled .nav__inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: clamp(-32px, -1.8vw, -12px); /* puxa a logo mais para a esquerda */
}

.nav__logo img {
  height: clamp(73px, 6vw, 86px); /* +20% */
  width: auto;
  display: block;
  /* versão branca monocromática: zera a cor e inverte -> branco puro,
     mantendo a transparência do PNG */
  filter: brightness(0) invert(1);
}

/* --- lista --- */
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin: 0;
  padding: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(244, 245, 247, 0.82);
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #fff;
}

.nav__link.is-active {
  color: #fff;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

/* --- submenu --- */
.nav__item {
  position: relative;
}

.nav__caret {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav__item:hover .nav__caret,
.nav__item.is-open .nav__caret {
  transform: rotate(180deg);
}

.nav__submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

/* ponte invisível para o hover não "cair" entre o botão e o menu */
.nav__submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu,
.nav__item.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 0.9rem;
  color: rgba(244, 245, 247, 0.78);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__submenu a:hover {
  background: rgba(127, 216, 255, 0.1);
  color: #fff;
}

/* --- botão WhatsApp --- */
.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: #25d366;
  color: #04140c;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.nav__wa svg {
  width: 18px;
  height: 18px;
}
.nav__wa:hover {
  background: #2ee06f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

/* --- ícones sociais --- */
.nav__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 245, 247, 0.82);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.nav__social a svg {
  width: 17px;
  height: 17px;
}
.nav__social a:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- hambúrguer --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1024px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: flex;
  }
  /* o wrapper deixa de ser 'contents' e vira o painel dropdown */
  .nav__collapse {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 8, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px clamp(20px, 5vw, 64px) 26px;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transition: clip-path 0.4s ease, opacity 0.3s ease;
  }
  .nav--open .nav__collapse {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__link {
    padding: 14px 4px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav__link.is-active::after {
    display: none;
  }
  /* submenu vira acordeão inline no mobile */
  .nav__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 0 6px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav__item.is-open .nav__submenu {
    max-height: 260px;
  }
  .nav__submenu a {
    padding: 12px 10px;
  }
  /* ações (WhatsApp + sociais) empilhadas no painel */
  .nav__actions {
    justify-self: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 22px;
  }
  .nav__wa {
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.98rem;
  }
  .nav__social {
    justify-content: center;
  }
  /* animação do hambúrguer -> X */
  .nav--open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav--open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav--open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  /* reserva o espaço da navbar fixa no topo (e desce um pouco o conteúdo)... */
  padding-top: clamp(132px, 18vh, 184px);
  padding-bottom: clamp(24px, 4vh, 56px);
  /* ...e, se o conteúdo não couber, alinha ao topo (abaixo da navbar)
     em vez de transbordar por cima da logo — 'safe' evita a sobreposição.
     A primeira linha é fallback p/ navegadores sem suporte a 'safe'. */
  align-items: center;
  align-items: safe center;
  /* base preta com leve tom para dar respiro */
  background:
    radial-gradient(120% 90% at 70% 45%, #0c0f16 0%, #000 60%);
  perspective: 1400px;         /* habilita o tilt 3D das camadas */
  perspective-origin: 50% 45%;
}

/* --- Brilho que segue o mouse (fundo profundo) --- */
.hero__glow {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      520px 520px at var(--mx, 65%) var(--my, 45%),
      rgba(127, 216, 255, 0.16),
      rgba(127, 216, 255, 0.05) 35%,
      transparent 60%
    );
  transition: background 0.15s ease-out;
  will-change: background;
}

/* --- Partículas --- */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* --- Palco da imagem (parallax + tilt) --- */
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;      /* imagem alinhada à direita */
  padding-right: clamp(16px, 4vw, 80px);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero__image {
  /* canvas WebGL (three.js) — preenche o palco; o modelo 3D é renderizado
     sobre fundo transparente e funde na página. */
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  touch-action: pan-y;            /* deixa a página rolar no toque vertical */
}

/* --- Vinheta para fundir tudo no preto --- */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(130% 100% at 65% 50%, transparent 45%, rgba(0,0,0,0.55) 78%, #000 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 20%, transparent 70%, #000 100%);
}

/* --- Conteúdo --- */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 0 clamp(24px, 7vw, 130px);
  will-change: transform;
}

.hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
}

.hero__title-accent {
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 60%, #6bb6e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #04121a;
  box-shadow: 0 10px 40px rgba(127, 216, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(127, 216, 255, 0.4);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: rgba(127, 216, 255, 0.5);
  transform: translateY(-2px);
}

/* --- Indicador de scroll --- */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  z-index: 6;
  display: flex;
  justify-content: center;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* ===================== SEÇÕES ===================== */
.section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(78px, 11vh, 140px) clamp(24px, 6vw, 80px);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}

.accent {
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 60%, #6bb6e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 66px);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.section-lead strong {
  color: var(--text);
  font-weight: 500;
}

/* --- quem somos: intro em 2 colunas --- */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.about-intro .section-head {
  margin-bottom: 0;
  max-width: 620px;
}

.about-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d14;
  box-shadow: 0 30px 70px -45px rgba(127, 216, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-figure:hover img {
  transform: scale(1.04);
}

.about-figure figcaption {
  padding: 14px 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 860px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}

/* --- diferenciais --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature {
  padding: 30px 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 216, 255, 0.35);
  background: linear-gradient(160deg, rgba(127, 216, 255, 0.07), rgba(255, 255, 255, 0.015));
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(127, 216, 255, 0.22), rgba(127, 216, 255, 0.04));
  border: 1px solid rgba(127, 216, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px -14px rgba(127, 216, 255, 0.7);
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature:hover .feature__icon {
  transform: translateY(-2px);
  border-color: rgba(127, 216, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 32px -12px rgba(127, 216, 255, 0.85);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- serviços --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.service {
  position: relative;
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 216, 255, 0.3);
}

.service--featured {
  border-color: rgba(127, 216, 255, 0.4);
  background: linear-gradient(165deg, rgba(127, 216, 255, 0.09), rgba(255, 255, 255, 0.02));
}

/* imagem do card */
.service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #05070c;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service:hover .service__media img {
  transform: scale(1.05);
}

/* funde a base da foto no corpo do card */
.service__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.9), transparent);
  pointer-events: none;
}

.service__body {
  padding: 22px 30px 32px;
}

.service__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.service__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #04121a;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  padding: 5px 11px;
  border-radius: 100px;
  box-shadow: 0 6px 18px -6px rgba(127, 216, 255, 0.8);
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
}

.service p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 300;
}

/* --- também fazemos --- */
.also-title {
  margin: clamp(48px, 7vw, 72px) 0 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.also {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.also__item {
  padding: 20px 22px;
  border-left: 2px solid rgba(127, 216, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 12px 12px 0;
}

.also__item h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.also__item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 300;
}

/* --- processo / jornada --- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(127, 216, 255, 0.4);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 300;
}

/* --- band (para quem) --- */
.band {
  position: relative;
  text-align: center;
  padding: clamp(70px, 10vw, 120px) clamp(24px, 6vw, 80px);
  background: radial-gradient(80% 120% at 50% 0%, rgba(127, 216, 255, 0.08), transparent 60%),
    #04060a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.band__inner {
  max-width: 760px;
  margin: 0 auto;
}

.band .section-lead {
  margin: 0 auto;
}

.audience {
  list-style: none;
  margin: clamp(38px, 5vw, 56px) auto 0;
  padding: 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.audience__item {
  padding: 24px 24px 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.audience__item:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 216, 255, 0.35);
  background: rgba(127, 216, 255, 0.05);
}

.audience__item h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-left: 16px;
  margin-bottom: 10px;
}

.audience__item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--accent-2), var(--accent));
}

.audience__item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 720px) {
  .audience {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* --- caso real --- */
.case-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 56px);
}

.case-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.case-row--reverse .case-figure {
  order: 2;
}

.case-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d14;
  box-shadow: 0 30px 70px -45px rgba(127, 216, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.case-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-figure:hover img {
  transform: scale(1.04);
}

.case-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.case-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.case-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ficha técnica */
.case-spec {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(127, 216, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(127, 216, 255, 0.2);
}

.case-spec__head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.case-spec__head p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 26px;
}

.case-spec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 720px) {
  .case-spec__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .case-spec__grid {
    grid-template-columns: 1fr;
  }
}

.case-spec__item {
  padding: 18px 20px;
  background: #06080d;
}

.case-spec__item dt {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 500;
}

.case-spec__item dd {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.case-spec__note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

@media (max-width: 760px) {
  .case-row,
  .case-row--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-row--reverse .case-figure {
    order: 0;
  }
}

/* --- visualizador 3D --- */
.viewer3d__frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(80% 120% at 50% 0%, rgba(127, 216, 255, 0.1), transparent 60%),
    #0a0d14;
  border: 1px solid rgba(127, 216, 255, 0.18);
  box-shadow: 0 30px 80px -40px rgba(127, 216, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.viewer3d__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.viewer3d__hint {
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .viewer3d__frame {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }
}

/* --- contato --- */
.contact {
  position: relative;
  text-align: center;
  padding: clamp(90px, 12vw, 150px) clamp(24px, 6vw, 80px);
  background: radial-gradient(70% 100% at 50% 100%, rgba(127, 216, 255, 0.1), transparent 65%);
}

.contact__inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact .section-lead {
  margin: 0 auto;
}

.contact__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0 28px;
}

.contact__social {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}

.contact__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 245, 247, 0.82);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact__social a:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact__social svg {
  width: 19px;
  height: 19px;
}

/* --- rodapé --- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(48px, 7vw, 72px) clamp(24px, 6vw, 80px) 32px;
  background: #030405;
}

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* faz as duas colunas de links virarem itens diretos do grid,
   distribuindo marca | navegação | serviços por toda a largura */
.footer__links {
  display: contents;
}

.footer__brand img {
  height: 68px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 260px;
}

.footer__loc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__loc svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--accent);
}
.footer__loc strong {
  color: var(--text);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer__col a {
  display: block;
  color: rgba(244, 245, 247, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: var(--accent);
}

.footer__bottom .social {
  display: flex;
  gap: 10px;
}

.footer__bottom .social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer__bottom .social a:hover {
  color: var(--accent);
}

.footer__bottom .social svg {
  width: 18px;
  height: 18px;
}

/* --- revelação ao rolar --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* stagger dentro dos grids */
.feature:nth-child(2),
.service:nth-child(2),
.step:nth-child(2),
.also__item:nth-child(2) {
  transition-delay: 0.08s;
}
.feature:nth-child(3),
.service:nth-child(3),
.step:nth-child(3),
.also__item:nth-child(3) {
  transition-delay: 0.16s;
}
.feature:nth-child(4),
.step:nth-child(4) {
  transition-delay: 0.24s;
}
.step:nth-child(5) {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__actions .btn {
    width: 100%;
  }
}

/* ===================== PÁGINAS INTERNAS ===================== */
/* hero compacto usado nas páginas dedicadas (Quem somos, serviços) */
.page-hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(140px, 22vh, 210px) clamp(24px, 6vw, 80px) clamp(52px, 7vw, 84px);
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(80% 75% at 50% 22%, rgba(127, 216, 255, 0.1), transparent 72%);
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.page-hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.68;
  color: var(--muted);
  font-weight: 300;
  max-width: 660px;
}

.page-hero__lead strong {
  color: var(--text);
  font-weight: 500;
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* --- breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  opacity: 0.5;
}

.breadcrumb [aria-current] {
  color: var(--text);
}

/* --- bloco de conteúdo em 2 colunas (texto + figura) --- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split--reverse .split__figure {
  order: 2;
}

.split__body .section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.split__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d14;
  box-shadow: 0 30px 70px -45px rgba(127, 216, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.split__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.split__figure:hover img {
  transform: scale(1.04);
}

.split__figure figcaption {
  padding: 14px 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split + .split {
  margin-top: clamp(48px, 7vw, 88px);
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__figure {
    order: 0;
  }
}

/* --- lista de tópicos com marcador em "check" --- */
.checklist {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 300;
}

.checklist li strong {
  color: var(--text);
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237fd8ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-11'/%3E%3C/svg%3E")
    center / 13px no-repeat,
    linear-gradient(155deg, rgba(127, 216, 255, 0.2), rgba(127, 216, 255, 0.04));
  border: 1px solid rgba(127, 216, 255, 0.28);
}

/* --- galeria de imagens do serviço --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d14;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 12px 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- "saiba mais" nos cards de serviço da home --- */
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.service__more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.service__more:hover {
  gap: 9px;
}

.service__more:hover svg {
  transform: translateX(2px);
}

/* --- navegação entre serviços (rodapé da página) --- */
.pagenav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px) clamp(60px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pagenav__card {
  display: block;
  padding: 24px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.pagenav__card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 216, 255, 0.35);
}

.pagenav__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.pagenav__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

/* ===================== BLOG — LISTAGEM ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.postcard {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.postcard:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 216, 255, 0.3);
}

.postcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #05070c;
}

.postcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.postcard:hover .postcard__media img {
  transform: scale(1.05);
}

.postcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 28px;
}

.postcard__tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.postcard__title {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.postcard__excerpt {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 18px;
}

.postcard__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.postcard__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* card em destaque (primeiro post, largura total) */
.postcard--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.postcard--featured .postcard__media {
  flex: 1 1 52%;
  aspect-ratio: auto;
}

.postcard--featured .postcard__body {
  flex: 1 1 48%;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.postcard--featured .postcard__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.postcard--featured .postcard__excerpt {
  font-size: 1rem;
}

@media (max-width: 760px) {
  .postcard--featured {
    flex-direction: column;
  }
  .postcard--featured .postcard__media {
    aspect-ratio: 16 / 10;
  }
}

/* ===================== BLOG — ARTIGO ===================== */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(130px, 20vh, 190px) clamp(24px, 6vw, 40px) clamp(40px, 6vw, 64px);
}

.article__tag {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.article__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.article__excerpt {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 26px;
}

.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}

.article__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.article__hero {
  margin: clamp(28px, 4vw, 44px) 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d14;
  box-shadow: 0 30px 70px -45px rgba(127, 216, 255, 0.5);
}

.article__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.article__hero figcaption {
  padding: 13px 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* corpo do texto (prose) */
.article__body {
  margin-top: clamp(32px, 5vw, 52px);
  font-size: 1.06rem;
  line-height: 1.8;
  color: #d6d9e0;
  font-weight: 300;
}

.article__body > p {
  margin-bottom: 22px;
}

.article__body strong {
  color: var(--text);
  font-weight: 600;
}

.article__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(127, 216, 255, 0.4);
}

.article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin: clamp(38px, 5vw, 52px) 0 16px;
}

.article__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 30px 0 12px;
}

.article__body ul,
.article__body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article__body ul li,
.article__body ol li {
  position: relative;
  padding-left: 30px;
}

.article__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(127, 216, 255, 0.12);
}

.article__body ol {
  counter-reset: li;
}

.article__body ol li {
  counter-increment: li;
  padding-left: 38px;
}

.article__body ol li::before {
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(127, 216, 255, 0.4);
  border-radius: 50%;
}

.article__body blockquote {
  margin: 30px 0;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* caixa de destaque / dica */
.callout {
  margin: 32px 0;
  padding: 24px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(127, 216, 255, 0.08), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(127, 216, 255, 0.22);
}

.callout__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.callout__label svg {
  width: 16px;
  height: 16px;
}

.callout p {
  color: #d6d9e0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.callout p + p {
  margin-top: 12px;
}

/* CTA ao final do artigo */
.article-cta {
  max-width: 820px;
  margin: clamp(20px, 4vw, 40px) auto 0;
  padding: 0 clamp(24px, 6vw, 40px);
}

.article-cta__inner {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 22px;
  text-align: center;
  background: radial-gradient(90% 130% at 50% 0%, rgba(127, 216, 255, 0.1), transparent 65%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(127, 216, 255, 0.2);
}

.article-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.article-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 26px;
}

/* navegação de posts relacionados reaproveita .pagenav */
.article .pagenav,
.article-related {
  padding-left: 0;
  padding-right: 0;
}

/* ===================== ANIMAÇÕES ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(0); }
  30%  { opacity: 1; }
  60%  { opacity: 1; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ===================== ACESSIBILIDADE ===================== */
@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .hero__stage,
  .hero__content { transition: none !important; transform: none !important; }
  .hero__scroll span { animation: none; }
  /* sem animação de entrada: revela o conteúdo imediatamente */
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions { opacity: 1 !important; animation: none !important; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
  /* No mobile o hero vira coluna: imagem em cima, texto logo abaixo. */
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 92px;      /* espaço para a navbar fixa */
    padding-bottom: 8vh;
  }

  /* Palco da imagem entra no fluxo normal (deixa de ser sobreposição).
     Precisa de altura explícita: o canvas é position:absolute e sozinho
     não daria altura ao palco (o modelo ficaria invisível). */
  .hero__stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(52vh, 440px);
    min-height: 300px;
    justify-content: center;
    padding-right: 0;
    margin-bottom: 12px;
  }

  /* Texto abaixo da imagem */
  .hero__content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__eyebrow { letter-spacing: 0.2em; font-size: 0.7rem; }
  .hero__title { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
  .hero__subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions { justify-content: center; }

  /* Vinheta cobre só o fundo, sem escurecer o texto abaixo */
  .hero__vignette {
    background:
      radial-gradient(140% 70% at 50% 22%, transparent 45%, rgba(0,0,0,0.7) 78%, #000 100%);
  }

  /* Indicador de scroll atrapalharia o layout empilhado */
  .hero__scroll { display: none; }
}
