/* =========================================================
   PEKRIA — Site Institucional
   Fundação: variáveis, tipografia, base, componentes
   Fonte: Satoshi (Fontshare)
   ========================================================= */

/* ---------- 1. DESIGN TOKENS (variáveis) ---------- */
:root {
  /* Cores da marca */
  --orange:        #F4711C;
  --orange-soft:   #FF8A3D;
  --gold:          #FFC852;
  --purple:        #290051;
  --purple-soft:   #4A2A7A;
  --white:         #FFFFFF;

  /* Neutros derivados */
  --ink:           #1E0B3B;   /* texto forte (roxo quase preto) */
  --text:          #463A57;   /* texto corrido */
  --muted:         #8A7E99;   /* texto secundário */
  --line:          #ECE6F2;   /* bordas suaves */
  --cream:         #FFF7F0;   /* creme/pêssego claro */
  --peach:         #FFEAD8;   /* pêssego do gradiente */

  /* Gradientes */
  --grad-soft:     linear-gradient(180deg, #FFF7F0 0%, #FFFFFF 60%);
  --grad-hero:     radial-gradient(1200px 600px at 80% -10%, rgba(255,200,82,.35), transparent 60%),
                   radial-gradient(900px 500px at 10% 10%, rgba(244,113,28,.16), transparent 55%),
                   linear-gradient(180deg, #FFF7F0 0%, #FFFFFF 70%);
  --grad-orange:   linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 100%);
  --grad-purple:   linear-gradient(160deg, #2C0058 0%, #170030 100%);

  /* Ruído (noise) animado — camada única por cima do conteúdo */
  --noise: url("../assets/noise.gif");

  /* Sombras */
  --shadow-sm:     0 2px 8px rgba(41,0,81,.06);
  --shadow-md:     0 12px 32px rgba(41,0,81,.10);
  --shadow-lg:     0 24px 60px rgba(41,0,81,.14);
  --shadow-orange: 0 12px 28px rgba(244,113,28,.30);

  /* Raios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1180px;
  --gap: 24px;
  --nav-h: 86px;   /* altura da barra do nav (ancora o menu mobile) */
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }   /* trava scroll horizontal sem quebrar position: sticky */
body {
  font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: 'Satoshi', sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { color: var(--text); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); }

/* Quebra de texto equilibrada e sem estouro */
h1, h2, h3, h4, .lead { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3, h4, p, .btn, .nav-links a { overflow-wrap: break-word; }

.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.gradient-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
/* container mais largo (aproveita mais as laterais) */
.container--wide { max-width: 1380px; }
/* container quase full (97% da largura) — usado nos carrosséis */
.container--full { width: 100%; max-width: 97%; margin-inline: auto; }

/* camada de ruído (noise) animado por cima do conteúdo, bem de leve */
.noise-overlay {
  position: fixed; inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .03;
  background-image: var(--noise);
  background-repeat: repeat;
}
@media (prefers-reduced-motion: reduce) { .noise-overlay { display: none; } }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--cream { background: var(--grad-soft); }
/* topo arredondado (cantos superiores) */
.section--round-top { border-radius: var(--r-xl) var(--r-xl) 0 0; }
.section--peach { background: var(--grad-hero); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--cream);
  border: 1px solid var(--peach);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.eyebrow svg { width: 15px; height: 15px; }

/* ---------- 5. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(244,113,28,.40); }
.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost { color: var(--purple); padding-inline: 8px; }
.btn-ghost:hover { color: var(--orange); }
.btn-purple {
  background: linear-gradient(135deg, #6A34B8 0%, #3A0A6B 55%, #290051 100%);
  color: var(--white);
}
.btn-purple:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8B52DD 0%, #5A1E9E 55%, #3D1470 100%);
}
/* Botões para fundo escuro/colorido (hero) */
.btn-white { background: var(--white); color: var(--purple); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- 6. HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  padding: 18px 36px 0;
  transition: padding .35s ease;
}
.header .container { max-width: 1480px; padding-inline: 28px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding-inline: 26px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transition: height .35s ease, box-shadow .35s ease, padding .35s ease;
}

/* Ao rolar: encolhe um pouco e sombra mais marcada */
.header.scrolled { padding-top: 12px; --nav-h: 72px; }
.header.scrolled .nav { box-shadow: var(--shadow-lg); }
.header.scrolled .brand { font-size: 1.3rem; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.35rem; color: var(--ink); letter-spacing: -.02em; }
.brand .dot {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
  display: inline-grid; place-items: center;
  color: #fff; font-size: .95rem; font-weight: 900;
}
.brand-logo { width: 34px; height: 34px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; flex: 1; justify-content: flex-end; }
.nav-links > a { font-weight: 600; color: var(--text); font-size: .98rem; transition: color .15s; }
.nav-links > a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 10px; }
.nav-cta .btn { padding: 11px 24px; font-size: .94rem; border-radius: 20px; box-shadow: none; color: #fff; }
.nav-cta .btn:hover { box-shadow: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
/* fundo desfocado atrás do menu mobile aberto */
.nav-backdrop {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(20, 5, 40, .22);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-top: 0;
  padding-top: 104px;    /* espaço pro header fixo */
  padding-bottom: 44px;  /* área laranja que aparece nos cantos arredondados da faixa roxa */
  background: linear-gradient(150deg, #FBC04C 0%, #F89A3A 45%, #F4711C 100%);
}
.hero-inner, .hero-media { position: relative; z-index: 1; }

/* "Bola" — um único círculo laranja mais profundo, só pra dar destaque */
.hero::before {
  content: '';
  position: absolute;
  top: 100px; left: 50%;
  width: 760px; height: 760px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    rgba(233,98,22,.42) 0%,
    rgba(233,98,22,.42) 48%,
    rgba(233,98,22,.20) 62%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}
/* Malha sutil no fundo do hero (branca sobre o laranja) */
.hero::after { content: none; }

/* Texto do hero em branco */
.hero h1 { color: #fff; }
.hero .gradient-text {
  background: linear-gradient(120deg, #FFFFFF 0%, #FFE3B8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.35vw, 1.06rem);
  line-height: 1.45;
}
.hero .eyebrow {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

.hero-inner { text-align: center; max-width: 820px; margin-inline: auto; padding-block: clamp(56px, 8vw, 96px) 0; }
.hero-media { padding-bottom: 0; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 620px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding-block: 10px; border-radius: 10px; }
.hero-trust { margin-top: 40px; font-size: .92rem; color: var(--muted); }
/* Pôster do vídeo no hero (clique abre o modal) */
.hero-video {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.hero-video-poster { width: 100%; height: auto; display: block; }
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-video-play svg { width: 32px; height: 32px; margin-left: 4px; }
.hero-video:hover .hero-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 34px rgba(244,113,28,.45);
}
.hero-video-play::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
  animation: video-pulse 2.4s infinite;
}
@keyframes video-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  70%  { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-video-play::after { animation: none; } }

/* Modal do vídeo */
.video-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 5, 40, .82);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.video-modal.open { display: grid; }
.video-modal-frame {
  width: min(1040px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.26); transform: scale(1.06); }
.video-modal-close svg { width: 22px; height: 22px; }

/* ---------- 8. STATS / PROVA SOCIAL ---------- */
.statband {
  background: var(--grad-purple);
  color: #fff;
  padding-block: clamp(18px, 2.6vw, 30px);
  border-radius: var(--r-xl) var(--r-xl) 0 0;   /* só os cantos superiores */
  margin-top: -44px;                            /* sobe pra dentro da área laranja do hero */
  position: relative;
  z-index: 1;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 8px 18px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.16); }
.stat .num { font-size: clamp(1.1rem,2.8vw,2.3rem); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.05; white-space: nowrap; }
.stat .lbl { color: rgba(255,255,255,.72); font-weight: 500; margin-top: 4px; font-size: clamp(.7rem, 1.2vw, .9rem); }

/* ---------- 9. FEATURE (texto + visual alternado) ---------- */
/* Textura sutil (malha/grade) no fundo de todas as seções — efeito "mural" */
.section { position: relative; }
.section::before { content: none; }
.section > .container { position: relative; z-index: 1; }

/* ---------- 9b. ABAS (Professor / Coordenação / Família) ---------- */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.tab svg { width: 18px; height: 18px; }
.tab:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-1px); }
.tab.is-active {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: tab-fade .35s ease; }

/* cabeçalho do painel (título + texto centralizados) */
.panel-head { max-width: 760px; margin: 0 auto clamp(32px, 4vw, 48px); text-align: center; }
.panel-head h2 { margin-bottom: 16px; }
.panel-head p { color: var(--text); }

/* cards lado a lado (carrossel quando não couber) */
.carousel-track .feat-card { flex: 0 0 clamp(280px, 30vw, 340px); }
.feat-card {
  background: linear-gradient(135deg, #F4711C 0%, #FF8A3D 55%, #FFB04A 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.feat-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.18); color: #fff;
}
.feat-ico svg { width: 23px; height: 23px; }
.feat-card h3 { color: #fff; font-size: 1.12rem; line-height: 1.3; }
.feat-card p { color: rgba(255,255,255,.92); font-size: .96rem; line-height: 1.5; }

/* carrossel das abas ocupa 97% da largura da tela (estoura o container) */
.tabs .carousel {
  width: 97vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* setas centralizadas */
.carousel-nav--center { justify-content: center; padding: 0; }

/* imagem no final do painel */
.panel-media { margin-top: clamp(32px, 4vw, 48px); }
.panel-media img {
  width: 100%; display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .tab-panel.is-active { animation: none; } }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4.5vw, 64px); align-items: center; }
/* Seções com imagem: coluna da imagem um pouco mais larga */
.feature:has(.feature-visual img) { grid-template-columns: 1fr 1.18fr; }
.feature.reverse:has(.feature-visual img) { grid-template-columns: 1.18fr 1fr; }
.feature + .feature { margin-top: clamp(64px, 9vw, 112px); }
.feature.reverse .feature-text { order: 2; }
.feature-text .eyebrow { margin-bottom: 18px; }
.feature-text h2 { margin-bottom: 18px; }
.feature-text .btn { border-radius: 10px; }
.feature-text p { margin-bottom: 24px; }
/* Lista interativa: acordeão com barra de progresso que avança sozinha */
.accordion { list-style: none; margin: 8px 0 30px; padding: 0; display: grid; gap: 14px; }
/* cada item é um card cinza arredondado */
.acc-item {
  background: linear-gradient(135deg, #F4711C 0%, #FF8A3D 55%, #FFB04A 100%);
  border: 0;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.acc-item:not(.is-open):hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.acc-item.is-open { box-shadow: var(--shadow-orange); }
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  text-align: left;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit;
}
/* ícone que representa o título (à esquerda, sem caixa) */
.acc-ico {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: #fff;
}
.acc-ico svg { width: 26px; height: 26px; }
/* título em texto simples */
.acc-title {
  font-weight: 700; font-size: 1.04rem; color: #fff; letter-spacing: -.01em; line-height: 1.3;
}
/* setinha num círculo, à direita */
.acc-arrow {
  flex: none;
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.22);
  color: #fff;
  transition: transform .3s ease, background .2s ease, color .2s ease;
}
.acc-arrow svg { width: 20px; height: 20px; }
.acc-head:hover .acc-arrow { background: rgba(255,255,255,.34); }
.acc-item.is-open .acc-arrow { transform: rotate(90deg); background: #fff; color: var(--orange); }
/* corpo recolhível (anima a altura sem max-height mágico) */
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.acc-body > div { overflow: hidden; }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-desc { margin: 14px 0 0; color: rgba(255,255,255,.92); font-size: .98rem; line-height: 1.55; }
.feature-visual {
  border-radius: var(--r-lg);
  background: var(--grad-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  color: var(--muted);
  overflow: hidden;
}
/* Quando há imagem (transparente), tira a "caixa" e mostra só a imagem */
.feature-visual:has(img) {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  aspect-ratio: auto;
  overflow: visible;
}
.feature-visual img { width: 100%; height: auto; object-fit: contain; display: block; }
.feature-visual:has(img) img { width: 100%; max-width: none; border-radius: 15px; }
/* imagem que troca conforme o bullet ativo (crossfade) */
.fv-img { transition: opacity .3s ease; }

/* ---------- 10. COMO FUNCIONA (passos) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  top: 21px; left: 21px; right: 0;
  height: 1.5px; background: var(--line);
  z-index: 0;
}
.tl-step { position: relative; z-index: 1; display: flex; flex-direction: column; }
.tl-card {
  flex: 1;
  background: #fff;
  border: none;
  border-top: 4px solid transparent;
  border-radius: 0;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tl-step:hover .tl-card { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Cada card do fluxo numa cor viva + borda superior mais escura */
.tl-step:nth-child(1) .tl-card { background: #C7E2F9; border-top-color: #6BA8E0; }
.tl-step:nth-child(1) .tl-ico { color: #2F6FD6; }
.tl-step:nth-child(2) .tl-card { background: #FBD6B4; border-top-color: #EF924A; }
.tl-step:nth-child(2) .tl-ico { color: #E2620C; }
.tl-step:nth-child(3) .tl-card { background: #DECBF6; border-top-color: #9D6BDB; }
.tl-step:nth-child(3) .tl-ico { color: #6A34B8; }
.tl-step:nth-child(4) .tl-card { background: #FBE7A6; border-top-color: #E3BC41; }
.tl-step:nth-child(4) .tl-ico { color: #C98A0E; }

/* Dobra de papel (dog-ear) no canto inferior direito */
.tl-card { position: relative; }
.tl-card::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 18px; height: 18px;
  background: linear-gradient(135deg,
    transparent 0 50%,
    rgba(0,0,0,.10) 50%,           /* sombra no vinco (em cima) */
    rgba(0,0,0,.03) 68%,
    rgba(255,255,255,.32) 100%);   /* luz na ponta levantada */
  filter: drop-shadow(0 -1.5px 1.2px rgba(0,0,0,.12));  /* sombra apontando pra cima */
  transition: width .2s ease, height .2s ease, filter .2s ease;
  pointer-events: none;
}
.tl-card:hover::after {
  width: 22px; height: 22px;
  filter: drop-shadow(0 -2px 1.6px rgba(0,0,0,.15));
}
.tl-node {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: var(--grad-orange); border: 1.5px solid transparent;
  color: #fff;
  box-shadow: var(--shadow-orange);
  margin-bottom: 26px;
  transition: transform .2s ease;
}
.tl-node svg { width: 17px; height: 17px; }
.tl-step:hover .tl-node { transform: scale(1.06); }
.tl-ico { color: var(--muted); margin-bottom: 14px; }
.tl-ico svg { width: 24px; height: 24px; }
.tl-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.tl-step p { font-size: .94rem; color: var(--muted); }

/* ---------- 10b. COMO FUNCIONA (etapas + barra + imagem) ---------- */
.howto {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.howto-steps { display: grid; gap: 4px; }
.howto-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  padding: 16px 0 0;
  cursor: pointer;
}
.howto-ico {
  grid-row: 1; grid-column: 1;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream); border: 1px solid var(--peach); color: var(--muted);
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.howto-ico svg { width: 21px; height: 21px; }
.howto-step.is-active .howto-ico {
  background: var(--grad-orange); border-color: transparent; color: #fff;
}
.howto-text { grid-column: 2; min-width: 0; }
.howto-text h3 { font-size: 1.2rem; color: var(--muted); transition: color .25s ease; }
.howto-step.is-active .howto-text h3 { color: var(--ink); }
/* descrição recolhível (só a etapa ativa mostra) */
.howto-collapse { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.howto-collapse > div { overflow: hidden; }
.howto-step.is-active .howto-collapse { grid-template-rows: 1fr; }
.howto-collapse p { margin: 8px 0 0; color: var(--text); font-size: .98rem; line-height: 1.6; }
.howto-collapse strong { font-weight: 700; }
/* barra de progresso (enche na etapa ativa) */
.howto-bar {
  grid-column: 1 / -1;
  display: block; height: 3px; margin-top: 16px;
  border-radius: 3px; background: var(--line); overflow: hidden;
}
.howto-bar-fill { display: block; height: 100%; width: 0; border-radius: 3px; background: var(--grad-orange); }
/* painel da imagem (troca por etapa) */
.howto-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--grad-soft);
  aspect-ratio: 4 / 3;
}
.howto-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
/* imagem que aparece dentro da etapa ativa (só no mobile) */
.howto-inline-img { display: none; }

/* Como funciona em fundo roxo com gradiente */
#como-funciona {
  background: linear-gradient(150deg, #4A1E8C 0%, #2C0058 55%, #1A0036 100%);
  color: #fff;
}
#como-funciona .eyebrow {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.32);
  color: #fff;
}
#como-funciona h2 { color: #fff; }
#como-funciona .section-head p { color: rgba(255,255,255,.8); }
#como-funciona .howto-text h3 {
  color: rgba(255,255,255,.55);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
#como-funciona .howto-step.is-active .howto-text h3 { color: #fff; }
#como-funciona .howto-collapse p { color: rgba(255,255,255,.82); }
#como-funciona .howto-collapse strong { color: #fff; }
/* fundo cobrindo a etapa ativa inteira (ícone + título + texto) */
#como-funciona .howto-step.is-active {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px 24px;
}
#como-funciona .howto-ico {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}
#como-funciona .howto-step.is-active .howto-ico {
  background: var(--grad-orange);
  border-color: transparent;
  color: #fff;
}
#como-funciona .howto-bar { background: rgba(255,255,255,.16); }
#como-funciona .howto-media {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

/* ---------- 11. DEPOIMENTO ---------- */
.quote {
  max-width: 860px; margin-inline: auto; text-align: center;
}
.quote blockquote {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700; color: var(--ink); line-height: 1.3;
  letter-spacing: -.02em; margin-bottom: 28px;
}
.quote blockquote span { background: linear-gradient(180deg, transparent 62%, rgba(255,200,82,.55) 62%); }
.quote-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.quote-author .av { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-purple); color:#fff; display:grid; place-items:center; font-weight:800; }
.quote-author .who { text-align: left; }
.quote-author .who strong { color: var(--ink); display:block; }
.quote-author .who small { color: var(--muted); }

/* ---------- 11b. MARQUEE DE DEPOIMENTOS (passa sozinho) ---------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px 0 16px;
  animation: marquee-scroll 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
.testi {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.testi-text { color: var(--text); font-size: 1rem; line-height: 1.5; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .av {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}
.testi-author .who strong { display: block; color: var(--ink); font-size: .98rem; }
.testi-author .who small { color: var(--muted); font-size: .86rem; }

/* ---------- 12. VALUE PROP (bloco roxo) ---------- */
.valueprop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--grad-purple);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  text-align: left;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.valueprop::after {
  content:''; position:absolute; inset:auto -10% -40% auto; width:520px; height:520px;
  background: radial-gradient(circle, rgba(255,200,82,.30), transparent 60%);
  pointer-events: none;
}
.valueprop-text, .valueprop-media { position: relative; z-index: 1; }
.valueprop .eyebrow {
  background: rgba(255,200,82,.16);
  border-color: rgba(255,200,82,.45);
  color: var(--gold);
  margin-bottom: 18px;
}
.valueprop h2 { color: #fff; font-size: clamp(1.9rem,3.4vw,2.7rem); margin-bottom: 16px; }
.valueprop h2 em { font-style: normal; color: var(--gold); }
.valueprop p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 0 24px; }
.valueprop .btn-primary { position: relative; box-shadow: none; }
.valueprop .btn-primary:hover { box-shadow: none; }

/* bullets do bloco roxo */
.vp-list { display: grid; gap: 12px; margin: 0 0 30px; }
.vp-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.45;
}
.vp-list li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; 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='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--grad-orange);
}

/* campo de imagem (placeholder até você colocar a imagem) */
.valueprop-media .vp-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.16);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px),
    rgba(255,255,255,.06);
  display: grid; place-items: center;
  overflow: hidden;
}
.valueprop-media .vp-img span {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1.5px dashed rgba(255,255,255,.4);
  padding: 8px 16px; border-radius: var(--r-pill);
}
.valueprop-media .vp-img img { width: 100%; height: auto; object-fit: contain; display: block; border-radius: var(--r-lg); }
/* com imagem: tira a caixa/proporção fixa pra ela aparecer inteira */
.valueprop-media .vp-img:has(img) {
  aspect-ratio: auto;
  border: none;
  background: none;
  border-radius: 0;
  overflow: visible;
}

/* ---------- 13. GRID DE BENEFÍCIOS ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream); border: 1px solid var(--peach);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: .96rem; color: var(--muted); }

/* ---------- 13b. BENTO GRID (Por que Pekria) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  align-items: stretch;   /* cards acompanham a altura da imagem na mesma linha */
  gap: 18px;
}
.bento-card {
  background: linear-gradient(160deg, #FFD79A 0%, #FFB061 100%);
  border: 1px solid rgba(244,113,28,.25);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 215px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #FFD15C 0%, #FFA63D 50%, #FF8A2B 100%);
  border: none;
  display: grid; place-items: center; color: #fff;
  margin-bottom: 16px;
}
.bento-ico svg { width: 24px; height: 24px; }
.bento-card h3 { font-size: 1.14rem; margin-bottom: 8px; color: var(--ink); }
.bento-card p { font-size: .95rem; color: #5E3D1C; }

/* Card de imagem */
.bento-card--img { padding: 0; overflow: hidden; border: none; min-height: 0; }
.bento-img {
  width: 100%;
  aspect-ratio: 1672 / 941;   /* proporção real das imagens (altura natural) */
  border-radius: inherit;
  background:
    repeating-linear-gradient(45deg, rgba(244,113,28,.05) 0 12px, transparent 12px 24px),
    var(--grad-hero);
  display: grid; place-items: center;
  overflow: hidden;
}
.bento-img span {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
  border: 1.5px dashed rgba(138,126,153,.5);
  padding: 8px 16px; border-radius: var(--r-pill);
}
.bento-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 14. BLOG ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post .thumb { aspect-ratio: 16/10; background: var(--grad-hero); }
.post .body { padding: 22px 22px 26px; }
.post .meta { font-size: .82rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post h3 { font-size: 1.12rem; margin: 8px 0 10px; }
.post p { font-size: .94rem; color: var(--muted); }

/* ---------- 14b. CARROSSEL (blog + depoimentos) ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: var(--gap);
  justify-content: safe center;   /* centraliza quando cabe; alinha à esquerda (rolável) quando passa */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.carousel-track .post,
.carousel-track .testi { flex: 0 0 340px; }
/* navegação do carrossel */
.carousel-nav { display: flex; gap: 12px; margin-top: 24px; padding-left: 4px; }
/* variante: canto inferior direito (abaixo da faixa) */
.carousel-nav--right { justify-content: flex-end; padding: 0 4px 0 0; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--purple);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover { color: var(--orange); transform: scale(1.06); box-shadow: var(--shadow-lg); }
.carousel-btn svg { width: 20px; height: 20px; }

/* ---------- 15. FAQ (duas colunas + accordion em cards) ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.faq-head { text-align: left; }
.faq-head h2 { margin: 16px 0 14px; }
.faq-head p { color: var(--text); margin-bottom: 26px; max-width: 380px; }
.faq-head .btn { border-radius: 10px; }

.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 20px;
  align-items: center; padding: 20px 22px; font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq-q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); color: var(--orange); display: grid; place-items: center; font-size: 1.3rem; transition: transform .25s, background .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--grad-orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--text); }

/* ---------- 16. CTA FINAL ---------- */
/* Faixa laranja full-width, colada no rodapé, só cantos de cima arredondados */
.cta-band {
  background: linear-gradient(150deg, #FBC04C 0%, #F89A3A 45%, #F4711C 100%);
  border-radius: 32px 32px 0 0;
  padding-block: clamp(56px, 8vw, 96px);
  color: #fff;
}
.cta-final { text-align: center; color: #fff; }
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final p { max-width: 540px; margin: 0 auto 32px; color: rgba(255,255,255,.92); }
.cta-final .eyebrow {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ---------- 17. FOOTER ---------- */
.footer { background: var(--grad-purple); color: rgba(255,255,255,.72); padding-block: 72px 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about { max-width: 320px; color: rgba(255,255,255,.65); font-size: .96rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; color: rgba(255,255,255,.72); font-size: .96rem; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem; color: rgba(255,255,255,.55);
}

/* ---------- 17b. BOTÃO FLUTUANTE WHATSAPP ---------- */
.wpp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 200;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37,211,102,.55); }
.wpp-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: wpp-pulse 2.2s infinite;
}
@keyframes wpp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wpp-float::after { animation: none; } }

/* ---------- 18. REVEAL (animação de entrada) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; } html { scroll-behavior:auto; } }

/* ---------- 23. PÁGINAS LEGAIS ---------- */
.legal { padding-top: 140px; padding-bottom: clamp(64px, 9vw, 110px); background: var(--grad-soft); min-height: 70vh; }
.legal .container { max-width: 820px; }
.legal-head { margin-bottom: 40px; }
.legal-head .eyebrow { margin-bottom: 18px; }
.legal h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 12px; }
.legal-updated { color: var(--muted); font-size: .92rem; }
.legal-content h2 { font-size: 1.3rem; margin: 38px 0 12px; }
.legal-content h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 8px; line-height: 1.65; }
.legal-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }

/* ---------- 24. BANNER DE COOKIES / ACEITE ---------- */
.cookie-banner {
  position: fixed;
  left: 50%; bottom: 20px;
  z-index: 250;
  width: min(680px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.cookie-text { flex: 1 1 300px; font-size: .92rem; color: var(--text); line-height: 1.5; }
.cookie-text a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions .btn { padding: 11px 22px; font-size: .92rem; box-shadow: none; }
/* no mobile o banner sobe pra não cobrir o botão flutuante do WhatsApp */
@media (max-width: 720px) {
  .cookie-banner { bottom: 96px; }
}
@media (max-width: 520px) {
  .cookie-banner { padding: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- 25. PÁGINAS LEGAIS (estilo documentação) ---------- */
.docs {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 230px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1320px;
  margin-inline: auto;
  padding: 140px 24px clamp(64px, 9vw, 110px);
}
/* sidebar esquerda */
.docs-sidebar { position: sticky; top: 130px; align-self: start; }
.docs-sidebar h4 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.docs-sidebar nav { display: grid; gap: 2px; }
.docs-sidebar a {
  display: block; padding: 9px 14px; border-radius: 10px;
  color: var(--text); font-weight: 600; font-size: .96rem;
  border-left: 2px solid transparent;
  transition: background .15s ease, color .15s ease;
}
.docs-sidebar a:hover { background: var(--cream); color: var(--orange); }
.docs-sidebar a.is-active { background: var(--cream); color: var(--orange); border-left-color: var(--orange); }

/* conteúdo central */
.docs-main { min-width: 0; }
.docs-eyebrow { color: var(--orange); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.docs-main h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 10px 0 8px; }
.docs-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.docs-callout {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--peach);
  border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 34px;
  font-size: .95rem; color: var(--text); line-height: 1.6;
}
.docs-callout svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.docs-content h2 { font-size: 1.35rem; margin: 40px 0 12px; scroll-margin-top: 130px; }
.docs-content h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.docs-content p { margin-bottom: 14px; line-height: 1.75; }
.docs-content ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.docs-content li { margin-bottom: 8px; line-height: 1.65; }
.docs-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.docs-content strong { color: var(--ink); }

/* TOC direita */
.docs-toc { position: sticky; top: 130px; align-self: start; }
.docs-toc-title { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.docs-toc nav { display: grid; gap: 2px; border-left: 1px solid var(--line); }
.docs-toc a {
  display: block; padding: 5px 0 5px 14px; margin-left: -1px;
  border-left: 2px solid transparent;
  color: var(--muted); font-size: .86rem; line-height: 1.4;
  transition: color .15s ease, border-color .15s ease;
}
.docs-toc a:hover { color: var(--orange); }
.docs-toc a.is-active { color: var(--orange); border-left-color: var(--orange); font-weight: 600; }
