/* ============================================================
   OcondoEasy — marca própria
   Plus Jakarta Sans (fonte única) · fundo branco ·
   seções warm/azul · cor primária #0096FA · raio único 28px
   ============================================================ */

:root {
  /* fontes */
  --f-display: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;

  /* superfícies (light) */
  --bg: #FFFFFF;
  --warm: #F5F3EF;
  --card: #FFFFFF;

  /* tinta */
  --ink: #1D1D1F;
  --ink-soft: #727077;
  --ink-faint: #727077; /* mesmo tom do ink-soft — cor "complemento" única definida pela marca */

  /* cor primária */
  --accent: #0096FA; /* só em elementos gráficos (logo, glow, avatar) — nunca texto/botão */
  --accent-deep: #0078CE;
  --accent-contrast: #006FC9; /* variante ajustada p/ contraste — fundo de seções/botões com texto branco (5.1:1) */
  --accent-soft: rgba(0, 150, 250, 0.12);

  /* linhas */
  --line: rgba(29, 29, 31, 0.12);
  --line-soft: rgba(29, 29, 31, 0.07);

  /* tipografia */
  --t-d1: clamp(44px, 6.2vw, 88px);
  --t-d2: clamp(36px, 4.6vw, 60px);
  --t-d3: clamp(28px, 3.4vw, 44px);
  --t-h: clamp(20px, 1.9vw, 24px);
  --t-b: clamp(17px, 1.4vw, 20px);
  --t-body: 16px;
  --t-c: 12px;
  --t-cta: clamp(40px, 5.6vw, 80px); /* título do CTA final — maior que --t-d1, ajustado p/ quebra em 2 linhas */

  /* geometria */
  --r: 28px;
  --r-sm: 20px; /* radius secundário — mídia aninhada em card, painel mobile do nav */

  /* layout */
  --maxw: 1140px;
  --gutter: clamp(20px, 4.5vw, 40px);
  --sec-pad: clamp(72px, 9vw, 120px);
  --head-gap: clamp(36px, 5vw, 56px);
  --lede-gap: 20px; /* espaço entre título de seção e parágrafo de apoio (lede/desc/sub) */
  --showcase-h: clamp(440px, 52vw, 580px); /* altura das faixas de foto (.showcase / .showcase-grid) */
  --nav-h: 94px;

  /* elevação */
  --shadow-1: 0 4px 22px rgba(29, 29, 31, 0.08);
  --shadow-2: 0 12px 36px rgba(29, 29, 31, 0.12);

  /* movimento */
  --ease-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img, svg { display: block; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
/* ---------- Tipografia utilitária ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--t-c);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.display {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-d2);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-top: 20px;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-expo), box-shadow 0.25s var(--ease-out), background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  min-width: 44px;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-expo); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29, 29, 31, 0.22); }
.btn--solid:hover svg { transform: translateX(3px); }
.btn--solid:active { transform: translateY(0) scale(0.98); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost:active { transform: scale(0.98); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
}
.btn-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.btn-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-expo); }
.btn-link:hover { color: var(--ink); }
.btn-link:hover svg { transform: translateX(4px); }

/* ---------- Mídia ---------- */
.m {
  border-radius: var(--r);
  overflow: hidden;
}

/* ---------- Loader (tela de carregamento no refresh) ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--accent);
  transition: opacity 0.55s var(--ease-out), visibility 0.55s var(--ease-out);
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderMark 1.2s var(--ease-spring) both;
}
.loader__mark svg { width: 40px; height: 40px; color: #fff; }
.loader__phrase {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
  text-align: center;
  max-width: 22ch;
  margin: 0;
}
.lw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: lwIn 0.7s var(--ease-expo) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 250ms);
}
@keyframes lwIn { to { opacity: 1; transform: none; } }
.loader__bar { width: 120px; height: 3px; border-radius: 999px; background: rgba(255, 255, 255, 0.35); overflow: hidden; animation: loaderFade 0.6s var(--ease-out) 0.4s both; }
.loader__bar-fill { display: block; width: 100%; height: 100%; border-radius: 999px; background: #fff; transform-origin: left; transform: scaleX(0); animation: loaderFill 1.1s var(--ease-expo) 0.3s forwards; }
@keyframes loaderMark {
  0% { opacity: 0; transform: scale(0.6) rotate(-12deg); }
  60% { transform: scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes loaderFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes loaderFill { to { transform: scaleX(1); } }
html.is-loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .loader { display: none; } }

/* ---------- Reveal pontual ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Reveal palavra-a-palavra [data-lines] ---------- */
[data-lines] .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(8px);
  transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-expo), filter 0.7s var(--ease-out);
  transition-delay: calc(var(--wi, 0) * 42ms);
  will-change: transform, opacity, filter;
}
[data-lines].in .w { opacity: 1; transform: none; filter: none; }

/* ---------- Nav (cápsula flutuante) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.4s var(--ease-out);
}
.nav.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo__mark { width: 30px; height: 30px; color: var(--ink); display: inline-flex; flex: none; transition: transform 0.3s var(--ease-expo); }
.logo__mark svg { width: 100%; height: 100%; }
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.06); }
.logo__word { font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.logo__word strong { color: var(--ink); font-weight: 700; }

/* Links agrupados numa pílula própria, centralizada na barra */
.nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 10px 18px;
  border-radius: 999px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.75); }
.nav__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.nav__right { display: flex; align-items: center; gap: 14px; flex: none; }
.nav__cta { padding: 11px 20px; font-size: 14px; min-height: 44px; }
.nav__cta.btn--solid,
.nav__sheet .btn--solid,
.phero__actions .btn--solid {
  background: var(--accent-contrast);
  color: #fff;
}
.nav__cta.btn--solid:hover,
.nav__sheet .btn--solid:hover,
.phero__actions .btn--solid:hover {
  background: var(--accent-deep);
}

/* ---------- Nav: toggle + painel mobile (≤820px) ---------- */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex: none;
}
.nav__toggle:hover { background: rgba(29, 29, 31, 0.06); }
.nav__toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .i-close { display: none; }
.nav__toggle[aria-expanded="true"] .i-open { display: none; }
.nav__toggle[aria-expanded="true"] .i-close { display: block; }

.nav__sheet {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(5, 46, 77, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.nav__sheet[hidden] { display: none; }
.nav__sheet a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__sheet a:hover { background: var(--warm); }
.nav__sheet a:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.nav__sheet .btn { margin-top: 6px; width: 100%; }

/* ---------- Hero ---------- */
.phero { min-height: 100vh; display: flex; align-items: center; }
.phero__inner { text-align: center; width: 100%; }
.phero__kicker { justify-content: center; }
.phero__title {
  font-size: var(--t-d1);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 24ch;
  margin: 22px auto 0;
}
.phero__lede {
  font-size: var(--t-b);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: var(--lede-gap) auto 0;
}
.phero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- Media band reaproveitada (showcase do mockup) ---------- */
.showcase {
  position: relative;
  margin-top: var(--head-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--showcase-h);
  background: var(--warm);
}
.showcase--photo::before { display: none; }
.showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase::before {
  content: "";
  position: absolute;
  width: 62%;
  max-width: 760px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 62%);
  pointer-events: none;
}

.deco {
  position: absolute;
  z-index: 2;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: floatY 6s ease-in-out infinite;
}
.deco--a { top: 42px; left: clamp(14px, 7vw, 90px); }
.deco--b { bottom: 42px; right: clamp(14px, 7vw, 90px); animation-delay: 2.8s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Seção entrance (fade + slide up escalonado) ---------- */
.sec {
  position: relative;
  padding: var(--sec-pad) 0;
  scroll-margin-top: calc(var(--nav-h) + 12px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--sd, 0s);
}
.sec.in { opacity: 1; transform: translateY(0); }
.sec.warm { background: var(--warm); }
.sec.sec--soft { background: #F5F5F7; }
.sec.accent { background: var(--accent-contrast); color: #fff; }
.sec-head { max-width: 840px; margin-inline: auto; text-align: center; }
.sec-head .kicker { justify-content: center; }
.wrap.cta, .phero__inner { margin-inline: auto; }

/* texto sobre o azul de seção (--accent-contrast, 5.1:1+) — branco 100%, hierarquia por peso/tamanho, nunca opacidade */
.sec.accent .cta__title { color: #fff; }
.sec.accent .cta__lede { color: #fff; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: var(--head-gap);
}
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--warm);
  border-radius: var(--r);
  padding: clamp(26px, 2.8vw, 36px);
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  transition-delay: var(--cd, 0s);
  will-change: transform, opacity, box-shadow;
}
.card.in { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card.on-warm { background: var(--card); }
.card__title { font-size: var(--t-h); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
.card__desc { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Card expansível (ícone + destaque + "+") ---------- */
.card--exp {
  position: relative;
  padding: clamp(30px, 3.2vw, 40px) clamp(28px, 3vw, 38px) 72px;
  gap: 18px;
}
.card__icon { width: 36px; height: 36px; margin-bottom: 4px; color: var(--accent); }
.card__icon svg { width: 100%; height: 100%; }
.card__title .hl { color: var(--accent-deep); }
/* título sempre em 2 linhas (quebra manual no HTML) e descrição sempre em 3 —
   padrão visual entre os 3 cards, estável em qualquer largura */
.card--exp .card__title { min-height: calc(var(--t-h) * 1.25 * 2); }
.card--exp .card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* variante com kicker de texto + título maior + espaço reservado p/ imagem */
.card__kicker { color: var(--ink-faint); }
.card__title--lg {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.card--media .card__media {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  background: var(--warm);
  overflow: hidden;
}
.card--media .card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__more {
  position: absolute;
  right: clamp(20px, 2.4vw, 28px);
  bottom: clamp(20px, 2.4vw, 28px);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
  transition: transform 0.25s var(--ease-expo), background 0.2s ease;
}
.card__more svg { width: 16px; height: 16px; }
.card__more:hover { transform: scale(1.08); background: var(--accent-deep); }
.card__more:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Modal (detalhe do card) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 31, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(78vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  padding: clamp(28px, 4vw, 44px);
  animation: modalIn 0.35s var(--ease-expo);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover { background: var(--accent-deep); }
.modal__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.modal__title { font-size: var(--t-d3); letter-spacing: -0.03em; line-height: 1.1; margin-right: 40px; }
.modal__body-content { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; }
.modal__body-content p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.modal__body-content strong { color: var(--ink); font-weight: 600; }
.modal__body-content a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
body.modal-open { overflow: hidden; }

/* ---------- "Para quem é": foto contida com título/subtítulo + pill sobrepostos ---------- */
.aud-showcase { position: relative; }
.aud-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.aud-hero__img.is-active { opacity: 1; }
.aud-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 31, 0.55) 0%, rgba(29, 29, 31, 0.6) 45%, rgba(29, 29, 31, 0.8) 100%);
}

.aud-hero__panel {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 520px;
  padding-inline: var(--gutter);
  text-align: center;
  transition: opacity 0.2s ease;
}
.aud-hero__panel:not(.is-in) { opacity: 0; }
.aud-hero__title { font-size: var(--t-d2); line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.aud-hero__desc { font-size: var(--t-b); line-height: 1.6; color: #fff; margin: 16px auto 0; max-width: 40ch; min-height: calc(var(--t-b) * 1.6 * 2); }

.aud-pill {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.4vw, 40px);
  transform: translateX(-50%);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 4px;
  max-width: calc(100% - 32px);
  padding: 6px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.aud-pill__btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.25s var(--ease-out), color 0.2s ease;
}
.aud-pill__btn:hover { color: #fff; }
.aud-pill__btn.is-active { background: var(--accent-contrast); color: #fff; font-weight: 600; }
.aud-pill__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width: 680px) {
  .aud-pill {
    gap: 3px;
    flex-wrap: nowrap;
    max-width: calc(100% - 32px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .aud-pill::-webkit-scrollbar { display: none; }
  .aud-pill__btn { padding: 10px 14px; font-size: 12.5px; flex: none; white-space: nowrap; }
}

/* ---------- Banner ---------- */
.banner__desc { font-size: var(--t-b); line-height: 1.6; color: var(--ink-soft); max-width: 44ch; margin: var(--lede-gap) auto 0; }
/* ---------- Grade de fotos (bento) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--head-gap);
  min-height: var(--showcase-h);
}
.showcase-grid__item { position: relative; overflow: hidden; background: var(--warm); }
.showcase-grid__item > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-grid__item--big { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.showcase-grid__item--top { grid-column: 3 / span 2; grid-row: 1; }
.showcase-grid__item--br1 { grid-column: 3; grid-row: 2; }
.showcase-grid__item--br2 { grid-column: 4; grid-row: 2; }
/* Enquadramentos diferentes por célula — mesma foto, com zoom aproximando rosto/celular e cortando o fundo vazio (padrão bento) */
.showcase-grid__item--big > img { object-position: 35% center; }
.showcase-grid__item--top > img { transform: scale(1.15); transform-origin: 45% 30%; }

@media (max-width: 680px) {
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .showcase-grid__item--big,
  .showcase-grid__item--top,
  .showcase-grid__item--br1,
  .showcase-grid__item--br2 { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 3; }
}

/* ---------- Palavra rotativa (usada no H1 do hero) ---------- */
.rotate-hero__word { display: inline-block; color: var(--accent-deep); }
.rotate-hero__cursor {
  display: inline-block;
  width: 4px;
  height: 0.72em;
  margin-left: 8px;
  border-radius: 2px;
  background: var(--accent-deep);
  vertical-align: -0.06em;
  animation: cursorPulse 1s step-end infinite;
}
@keyframes cursorPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ---------- CTA final ---------- */
#cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--accent-contrast);
}
#cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90%;
  max-width: 1100px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent) 0%, transparent 68%);
}
.wrap.cta { text-align: center; max-width: 1000px; }
.cta__title { font-size: var(--t-cta); letter-spacing: -0.03em; line-height: 1.03; }
.cta__lede { font-size: var(--t-b); line-height: 1.6; color: var(--ink-soft); max-width: 44ch; margin: var(--lede-gap) auto 0; }
.wrap.cta .btn { margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq-intro__title { font-size: var(--t-d2); letter-spacing: -0.03em; line-height: 1.05; }
.faq-intro__sub { margin-top: var(--lede-gap); font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }
.faq-card {
  margin-top: var(--head-gap);
  background: #fff;
  border-radius: var(--r);
  padding: 4px clamp(24px, 3.4vw, 48px);
  box-shadow: var(--shadow-1);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--t-h);
  line-height: 1.3;
  letter-spacing: -0.02em;
  min-height: 44px;
}
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.chev { display: inline-flex; width: 20px; height: 20px; color: var(--ink-faint); flex: none; transition: transform 0.3s var(--ease-expo); }
.chev svg { width: 100%; height: 100%; }
.faq-item.open .chev { transform: rotate(180deg); color: var(--ink); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq-a-in { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); max-width: 58ch; }

/* ---------- Página legal (Privacidade / LGPD) ---------- */
.legal-hero { padding-bottom: 0; }
.legal-hero__inner { text-align: center; max-width: 900px; }
.legal-hero__title {
  font-size: var(--t-d2);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 20px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .legal-hero__title { white-space: normal; }
}
.legal-hero__lede { font-size: var(--t-b); line-height: 1.6; color: var(--ink-soft); margin: var(--lede-gap) auto 0; max-width: 56ch; }
.legal-hero__updated { font-size: 13.5px; color: var(--ink-faint); margin-top: 36px; }

.legal { display: grid; grid-template-columns: 220px 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.legal__toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal__toc a {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.legal__toc a:hover { color: var(--ink); background: rgba(29, 29, 31, 0.05); }
.legal__toc a:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.legal__body { max-width: 68ch; }
.legal__body section { padding-top: 48px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal__body section:first-child { padding-top: 0; }
.legal__body h2 {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.legal__body p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-top: 12px; }
.legal__body p:first-of-type { margin-top: 0; }
.legal__body ul { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal__body li { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__body a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__body .btn { margin-top: 18px; text-decoration: none; color: #fff; }
.legal__body .btn.btn--solid { background: var(--accent-contrast); }
.legal__body .btn.btn--solid:hover { background: var(--accent-deep); }

@media (max-width: 820px) {
  .legal { grid-template-columns: 1fr; }
  .legal__toc {
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .legal__toc::-webkit-scrollbar { display: none; }
  .legal__toc a { flex: none; white-space: nowrap; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 7vw, 88px) 0 28px;
}
.foot__main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line-soft);
}
.foot__tag { font-family: var(--f-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -0.02em; line-height: 1.2; margin-top: 18px; }
.foot__sub { color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 34ch; margin-top: 8px; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__cols strong {
  display: block;
  font-size: var(--t-c);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.foot__cols a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 14.5px; line-height: 2.1; transition: color 0.2s ease; }
.foot__cols a:hover { color: var(--ink); }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; color: var(--ink-faint); font-size: 13.5px; }
.foot__social { display: flex; align-items: center; gap: 16px; }
.foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-faint);
  transition: color 0.2s ease;
}
.foot__social a svg { width: 19px; height: 19px; }
.foot__social a:hover { color: var(--ink); }
.foot__social a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 50%; }

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .cards.c3 { grid-template-columns: repeat(2, 1fr); }
  .cards.c3 .card:last-child { grid-column: 1 / -1; }
  .deco { display: none; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

@media (min-width: 821px) {
  .nav__sheet { display: none !important; }
}

@media (max-width: 680px) {
  .cards.c2 { grid-template-columns: 1fr; }
  .cards.c3 { grid-template-columns: 1fr; }
  .cards.c3 .card:last-child { grid-column: auto; }
  .foot__main { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }
  .phero__title { letter-spacing: -0.03em; }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  [data-lines] .w { opacity: 1; transform: none; filter: none; transition: none; }
  [data-parallax] { translate: none !important; }
}