/* Home premium. Direção: jessica/docs/design-direction.md. Hero original preservada. */
:root{
  --cpvh-fundo:        #050505;
  --cpvh-fundo-2:      #0b1011;
  --cpvh-superficie:   #141414;
  --cpvh-superficie-2: #1c1c1c;
  --cpvh-borda:        rgba(255,255,255,.10);
  --cpvh-borda-forte:  rgba(255,255,255,.20);
  --cpvh-texto:        #f5f5f5;
  --cpvh-texto-2:      #afb7b8;
  --cpvh-texto-3:      #8b8b8b;   /* 5,11:1 sobre a superficie */
  --cpvh-magenta:      #fe2a5b;   /* cor da marca, so em area grande */
  --cpvh-magenta-bt:   #d81b4a;   /* fundo de botao com texto branco: 5,02 */
  --cpvh-ciano:        #24f5d2;   /* rotulo e texto pequeno: 12,9 sobre o fundo */
  --cpvh-gradiente:    linear-gradient(135deg, #24f5d2, #fe2a5b);
  --cpvh-largura:      1140px;
  --cpvh-raio:         14px;
  --cpvh-fonte: "Poppins", "Poppins Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
               "Segoe UI Emoji";
}

*,*::before,*::after{ box-sizing:border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--cpvh-fundo);
  color:var(--cpvh-texto);
  font-family:var(--cpvh-fonte);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
h1,h2,h3{ margin:0; line-height:1.15; font-weight:800; letter-spacing:-.025em; }

.cpvh-envelope{
  max-width:var(--cpvh-largura);
  margin:0 auto;
  padding:0 22px;
}

/* Escondido por tamanho zero, nao por posicao negativa: `left:-9999px` tira o
   elemento da viewport e todo verificador de layout passa a acusar conteudo
   cortado. Mesma tecnica do blog e da /bio. */
.cpvh-saltar{
  position:absolute; top:10px; left:10px; z-index:60;
  width:1px; height:1px; padding:0; overflow:hidden;
  clip-path:inset(50%); white-space:nowrap;
  background:var(--cpvh-superficie); color:var(--cpvh-texto);
  border-radius:999px; text-decoration:none;
}
.cpvh-saltar:focus{ width:auto; height:auto; padding:12px 20px; overflow:visible; clip-path:none; }

/* ---------- cabecalho ---------- */

.cpvh-topo{
  position:sticky; top:0; z-index:50;
  background:rgba(10,10,10,.86);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--cpvh-borda);
}
.cpvh-topo__interno{
  max-width:var(--cpvh-largura);
  margin:0 auto;
  padding:13px 22px;
  display:flex; align-items:center; gap:20px;
}
.cpvh-topo__marca{ display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
/* SEM `filter:brightness(0) invert(1)`, que veio junto na copia do home.css do
   Yan e aqui estava errado. Lá o logo é um SVG com `fill="currentColor"`, que
   dentro de um <img> cai no preto e some no fundo escuro, e o filtro devolve o
   branco. Aqui o logo é um PNG que JÁ é branco sobre o fundo #050505: o filtro
   levava a imagem inteira, fundo incluído, para branco, e o cabeçalho aparecia
   com um retângulo branco chapado no lugar da marca. */
.cpvh-topo__marca img{ height:34px; width:auto; }
.cpvh-topo__nav{
  display:flex; align-items:center; gap:24px;
  margin-left:auto;
  font-size:14.5px;
}
/* `:not(.cpvh-botao)` porque esta regra vem depois de `.cpvh-botao` e tem a mesma
   especificidade: sem ela, o botao do topo herdava o cinza da navegacao e ficava
   com texto cinza sobre o magenta, 2,4:1. Foi o unico item que segurou a
   acessibilidade da home em 96 no PageSpeed de 08/09/2026. */
.cpvh-topo__nav a:not(.cpvh-botao){
  color:var(--cpvh-texto-2);
  text-decoration:none;
  transition:color .16s ease;
}
.cpvh-topo__nav a:not(.cpvh-botao):hover,
.cpvh-topo__nav a:not(.cpvh-botao):focus-visible{ color:var(--cpvh-texto); }

/* Botão: a âncora é estável, o filho recebe shine e respiração. */
.cpvh-botao{
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff; font-weight:800; font-size:15px; letter-spacing:.01em;
  border-radius:999px; text-decoration:none; max-width:100%;
  text-align:center; vertical-align:middle;
}
.cpvh-botao__visual{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  position:relative; isolation:isolate; overflow:hidden; width:100%;
  padding:15px 27px; min-height:50px; border-radius:inherit;
  background:var(--cpvh-magenta-bt); border:1px solid rgba(255,255,255,.16);
  box-shadow:0 6px 28px rgba(216,27,74,.15);
  transition:background .2s ease, box-shadow .2s ease;
}
.cpvh-botao__visual::after{
  content:""; position:absolute; top:-40%; bottom:-40%; left:0; width:42%;
  pointer-events:none;
  background:linear-gradient(110deg,transparent,rgba(255,255,255,.3),transparent);
  transform:translateX(-180%) skewX(-20deg);
}
.cpvh-botao:hover .cpvh-botao__visual{ background:#c71540; box-shadow:0 8px 32px rgba(216,27,74,.27); }
.cpvh-botao--fantasma{ min-height:50px; padding:14px 26px; border:1px solid var(--cpvh-borda-forte); color:var(--cpvh-texto); }
.cpvh-botao--fantasma:hover{ background:rgba(255,255,255,.05); }
.cpvh-botao--pequeno{ font-size:13px; }
.cpvh-botao--pequeno .cpvh-botao__visual{ padding:10px 18px; min-height:44px; }
.cpvh-botao svg{ width:17px; height:17px; fill:currentColor; flex-shrink:0; }
:focus-visible{ outline:2px solid var(--cpvh-ciano); outline-offset:6px; }
section[id]{ scroll-margin-top:90px; }

/* ---------- topo da pagina ---------- */

.cpvh-heroi{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:min(86vh, 720px);
  display:flex; align-items:center;
  padding:74px 0 66px;
}
.cpvh-heroi__fundo{ position:absolute; inset:0; z-index:0; display:block; }
/* `right center` protege o expert: o banner foi gerado com ele no terco
   direito, e e esse terco que precisa sobreviver ao corte em telas estreitas. */
.cpvh-heroi__fundo img{
  width:100%; height:100%;
  object-fit:cover; object-position:right center;
  display:block;
}
.cpvh-heroi::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,.93) 0%,
      rgba(10,10,10,.82) 46%,
      rgba(10,10,10,.50) 72%,
      rgba(10,10,10,.18) 100%),
    linear-gradient(180deg, transparent 62%, var(--cpvh-fundo) 100%);
}
.cpvh-heroi__interno{ position:relative; z-index:2; max-width:var(--cpvh-largura); margin:0 auto;
                     padding:0 22px; width:100%; }
.cpvh-heroi__texto{ max-width:660px; }

.cpvh-rotulo{
  display:inline-block;
  color:var(--cpvh-ciano);
  font-size:12px; font-weight:800;
  letter-spacing:.16em; text-transform:uppercase;
  margin-bottom:16px;
}
.cpvh-heroi__titulo{
  font-size:clamp(35px, 6.4vw, 63px);
  margin:0 0 20px;
  text-wrap:balance;
}
.cpvh-heroi__titulo em{ color:var(--cpvh-ciano); font-style:normal; }
.cpvh-heroi__linha{
  color:var(--cpvh-texto-2);
  font-size:clamp(16px, 2vw, 18.5px);
  max-width:46em;
  margin:0 0 30px;
  text-wrap:pretty;
}
.cpvh-heroi__acoes{ display:flex; flex-wrap:wrap; gap:13px; margin-bottom:30px; }
.cpvh-heroi__prova{
  display:flex; flex-wrap:wrap; gap:10px 28px;
  color:var(--cpvh-texto-3);
  font-size:13.5px;
}
.cpvh-heroi__prova strong{ color:var(--cpvh-texto); font-weight:800; }

/* Faixa acessível: rolagem manual, loops pausados por padrão. */
.cpvh-faixa{
  border-block:1px solid var(--cpvh-borda); background:#0a0d0d;
  overflow-x:auto; overflow-y:hidden; scrollbar-width:none; padding:22px 0;
}
.cpvh-faixa::-webkit-scrollbar{ display:none; }
.cpvh-faixa__trilho{ display:flex; width:max-content; }
.cpvh-faixa__grupo{
  display:flex; align-items:center; gap:34px; padding-right:34px;
  color:var(--cpvh-texto-2); font-size:12px; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase; white-space:nowrap;
}
.cpvh-faixa__grupo span::after{ content:"✦"; margin-left:34px; color:var(--cpvh-ciano); }

/* Ritmo editorial. Titres leves contra destaques em peso 800. */
.cpvh-secao{ padding:112px 0; }
.cpvh-secao--escura{ background:var(--cpvh-fundo-2); }
.cpvh-secao__cabeca{ max-width:750px; margin:0 0 48px; }
.cpvh-secao__titulo{
  font-size:clamp(32px,4.2vw,56px); font-weight:300;
  line-height:1.14; letter-spacing:-.055em; margin:0 0 24px; text-wrap:balance;
}
.cpvh-secao__titulo em{ font-weight:800; font-style:normal; color:var(--cpvh-ciano); }
.cpvh-secao__linha{ color:var(--cpvh-texto-2); font-size:16px; line-height:1.8; margin:0; text-wrap:pretty; }
.cpvh-secao .cpvh-rotulo, .cpvh-passo__tema, .cpvh-preco__rotulo, .cpvh-guia__categoria{
  font-family:'JetBrains Mono','JetBrains Mono Fallback',monospace;
}
.cpvh-rotulo{ font-weight:600; font-size:10px; letter-spacing:.21em; }
.cpvh-heroi .cpvh-rotulo{ font-size:12px; font-weight:800; letter-spacing:.16em; }
.cpvh-textlink{
  display:inline-flex; align-items:center; gap:24px; min-height:44px;
  font-size:13px; text-decoration:none; border-bottom:1px solid var(--cpvh-borda-forte);
}
.cpvh-textlink span{ color:var(--cpvh-ciano); font-size:24px; transition:transform .2s; }
.cpvh-textlink:hover span{ transform:translate(3px,3px); }

/* Método: introdução fixa + lista numerada, sem grade de cartões. */
.cpvh-metodo{ background:radial-gradient(ellipse at 4% 44%,rgba(36,245,210,.045),transparent 52%); }
.cpvh-metodo__grade{ display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.cpvh-metodo__intro{ position:sticky; top:115px; }
.cpvh-mercados{ margin:38px 0 22px; }
.cpvh-mercados>div{ font-size:clamp(68px,7vw,108px); font-weight:300; letter-spacing:-.075em; line-height:1.3; color:var(--cpvh-ciano); }
.cpvh-mercados>div span{ color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.6); }
.cpvh-mercados p{ font-size:12px; line-height:1.85; color:var(--cpvh-texto-2); }
.cpvh-mercados strong{ color:var(--cpvh-texto); font-weight:400; }
.cpvh-passos{ list-style:none; padding:0; margin:0; }
.cpvh-passo{ display:grid; grid-template-columns:64px 1fr; gap:24px; padding:28px 0; border-top:1px solid var(--cpvh-borda); }
.cpvh-passo:last-child{ border-bottom:1px solid var(--cpvh-borda); }
.cpvh-passo__numero{ font-size:42px; line-height:1.2; font-weight:300; letter-spacing:-.05em; color:var(--cpvh-ciano); opacity:.75; }
.cpvh-passo__tema{ display:block; color:var(--cpvh-texto-2); text-transform:uppercase; font-size:9px; letter-spacing:.18em; margin-bottom:8px; }
.cpvh-passo h3{ font-size:21px; font-weight:600; margin-bottom:12px; }
.cpvh-passo p{ font-size:14px; color:var(--cpvh-texto-2); margin:0; line-height:1.85; }

/* Treinamento: capas reais em vitrine, seguidas de entregáveis e oferta. */
.cpvh-formacao{ position:relative; overflow:hidden; border-block:1px solid var(--cpvh-borda); background:radial-gradient(ellipse at 75% 35%,rgba(36,245,210,.06),transparent 55%),var(--cpvh-fundo-2); }
.cpvh-formacao__cabeca{ display:grid; grid-template-columns:1.2fr .8fr; gap:70px; align-items:end; margin-bottom:54px; }
.cpvh-formacao__cabeca .cpvh-secao__titulo{ margin-bottom:0; }
.cpvh-formacao__cabeca>.cpvh-secao__linha{ max-width:340px; padding-bottom:5px; }
.cpvh-curriculo{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; margin-bottom:70px; }
.cpvh-curriculo figure{ margin:0; min-width:0; }
.cpvh-curriculo figure:nth-child(even){ padding-top:28px; }
.cpvh-curriculo img{
  width:100%; height:auto; aspect-ratio:330/528; object-fit:cover;
  border:1px solid rgba(255,255,255,.12); border-radius:7px;
  box-shadow:0 20px 40px rgba(0,0,0,.35); transition:transform .4s ease;
}
.cpvh-curriculo figure:hover img{ transform:translateY(-8px) rotate(-1deg); }
.cpvh-curriculo figcaption{ font-size:11px; letter-spacing:.02em; color:var(--cpvh-texto-2); margin-top:15px; }
.cpvh-produto{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; border-top:1px solid var(--cpvh-borda-forte); padding-top:44px; }
.cpvh-produto__resumo{ color:var(--cpvh-texto-2); font-size:16px; margin:0 0 15px; }
.cpvh-produto__resumo strong{ color:var(--cpvh-texto); font-weight:300; font-size:46px; letter-spacing:-.06em; }
.cpvh-produto__resumo span{ margin:0 14px; opacity:.5; }
.cpvh-produto h3{ font-size:18px; font-weight:600; }
.cpvh-produto__itens{ list-style:none; padding:0; margin:22px 0 0; display:grid; gap:12px; }
.cpvh-produto__itens li{ position:relative; padding-left:24px; color:var(--cpvh-texto-2); font-size:13px; }
.cpvh-produto__itens li::before{ content:"↗︎"; position:absolute; left:0; color:var(--cpvh-ciano); }
.cpvh-preco{ padding:32px 0 32px 44px; border-left:1px solid var(--cpvh-borda-forte); }
.cpvh-preco__rotulo{ font-size:10px; text-transform:uppercase; letter-spacing:.2em; color:var(--cpvh-ciano); margin:0 0 18px; }
.cpvh-preco__valor{ margin:0; font-size:clamp(26px,3.1vw,40px); font-weight:800; letter-spacing:-.05em; line-height:1.2; }
.cpvh-preco__vista{ font-size:14px; color:var(--cpvh-texto-2); margin:10px 0 25px; }
.cpvh-preco .cpvh-botao{ width:100%; }
.cpvh-preco__nota{ font-size:10px; color:var(--cpvh-texto-2); text-align:center; margin:18px 0 0; }

/* Autora: assinatura tipográfica, retrato amplo e dados com contexto. */
.cpvh-sobre{ background:radial-gradient(ellipse at 0% 55%,rgba(36,245,210,.045),transparent 50%); }
.cpvh-sobre__assinatura{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-size:clamp(38px,6.2vw,82px); font-weight:800; letter-spacing:-.055em;
  line-height:1; color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.23);
  padding-bottom:38px; margin-bottom:48px; border-bottom:1px solid var(--cpvh-borda);
}
.cpvh-sobre__assinatura span{ font-size:9px; font-weight:400; line-height:1.8; text-transform:uppercase; letter-spacing:.18em; color:var(--cpvh-texto-2); -webkit-text-stroke:0; text-align:right; max-width:140px; }
.cpvh-autor{ display:grid; grid-template-columns:.95fr 1.05fr; align-items:center; gap:80px; }
.cpvh-autor__retrato{ position:relative; margin:0; border-radius:4px; overflow:hidden; }
.cpvh-autor picture{ display:block; }
.cpvh-autor__foto{ width:100%; height:auto; aspect-ratio:2/3; object-fit:cover; }
.cpvh-autor__retrato figcaption{ position:absolute; inset:auto 0 0; padding:60px 28px 28px; background:linear-gradient(transparent,rgba(0,0,0,.95)); font-size:23px; font-weight:600; }
.cpvh-autor__retrato figcaption span{ display:block; font-size:10px; font-weight:400; color:#d8dcdc; letter-spacing:.04em; margin-top:5px; }
.cpvh-autor p:not(.cpvh-rotulo){ font-size:14px; color:var(--cpvh-texto-2); line-height:1.95; margin:0 0 20px; }
.cpvh-autor__numeros{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; border-top:1px solid var(--cpvh-borda-forte); padding-top:30px; margin-top:34px; }
.cpvh-autor__numero strong{ display:block; font-size:25px; font-weight:300; letter-spacing:-.05em; white-space:nowrap; }
.cpvh-autor__numero span{ display:block; font-size:10px; color:var(--cpvh-texto-2); margin-top:8px; }

/* FAQ nativo, inteiramente disponível mesmo sem JS. */
.cpvh-duvidas{ border-top:1px solid var(--cpvh-borda); }
.cpvh-duvidas>.cpvh-envelope{ display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; }
.cpvh-duvidas .cpvh-secao__cabeca{ margin:0; }
.cpvh-duvidas .cpvh-secao__linha{ max-width:260px; font-size:14px; }
.cpvh-faq{ min-width:0; }
.cpvh-faq details{ border-bottom:1px solid var(--cpvh-borda-forte); }
.cpvh-faq details:first-child{ border-top:1px solid var(--cpvh-borda-forte); }
.cpvh-faq summary{ cursor:pointer; padding:26px 0; font-size:14px; font-weight:500; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.cpvh-faq summary::-webkit-details-marker{ display:none; }
.cpvh-faq summary::after{ content:"+"; font-size:24px; font-weight:300; line-height:1; color:var(--cpvh-ciano); flex-shrink:0; }
.cpvh-faq details[open] summary::after{ content:"−"; }
.cpvh-faq details[open] summary{ color:var(--cpvh-ciano); }
.cpvh-faq__resposta{ color:var(--cpvh-texto-2); font-size:13px; line-height:1.85; padding:0 28px 26px 0; }
.cpvh-faq__resposta a{ color:var(--cpvh-ciano); }

/* Vitrine gerada: uma reportagem em destaque, três leituras laterais. */
.cpvh-leituras{ border-top:1px solid var(--cpvh-borda); }
.cpvh-guias{ display:grid; grid-template-columns:1fr 1fr; gap:0 48px; }
.cpvh-guia{ min-width:0; display:grid; grid-template-columns:130px 1fr; column-gap:22px; align-content:start; text-decoration:none; padding:24px 0; border-bottom:1px solid var(--cpvh-borda-forte); }
.cpvh-guia__capa{ width:130px; height:auto; aspect-ratio:600/315; object-fit:cover; grid-column:1; grid-row:1 / 5; border-radius:4px; transition:transform .35s ease; }
.cpvh-guia:hover .cpvh-guia__capa{ transform:translateY(-4px); }
.cpvh-guia__categoria{ margin:0 0 9px; font-size:9px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--cpvh-ciano); }
.cpvh-guia h3{ font-size:16px; line-height:1.4; font-weight:600; margin-bottom:12px; }
.cpvh-guia p:not(.cpvh-guia__categoria){ margin:0 0 15px; font-size:12px; line-height:1.85; color:var(--cpvh-texto-2); }
.cpvh-guia__ler{ font-size:11px; font-weight:600; }
.cpvh-guia__ler::after{ content:" ↗︎"; color:var(--cpvh-ciano); }
.cpvh-guia:first-child{ grid-row:span 3; display:flex; flex-direction:column; padding:0 0 28px; }
.cpvh-guia:first-child .cpvh-guia__capa{ width:100%; margin-bottom:26px; }
.cpvh-guia:first-child h3{ font-size:29px; line-height:1.3; margin-bottom:18px; }
.cpvh-guia:first-child p:not(.cpvh-guia__categoria){ font-size:14px; }
.cpvh-guia:first-child .cpvh-guia__ler{ margin-top:auto; padding-top:24px; font-size:13px; }
.cpvh-guia:nth-child(2){ padding-top:0; }

/* Fecho com fotografia, repetindo o caminho principal. */
.cpvh-final{ position:relative; isolation:isolate; overflow:hidden; padding:100px 0; min-height:580px; display:flex; align-items:center; border-top:1px solid var(--cpvh-borda); }
.cpvh-final__foto{ position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; object-position:78% center; }
.cpvh-final::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(5,5,5,.98) 10%,rgba(5,5,5,.8) 46%,rgba(5,5,5,.05) 85%),linear-gradient(0deg,#050505,transparent 25%); }
.cpvh-final>.cpvh-envelope{ width:100%; }
.cpvh-final h2{ max-width:640px; }
.cpvh-final p:not(.cpvh-rotulo){ max-width:440px; font-size:15px; line-height:1.85; color:var(--cpvh-texto-2); margin:0 0 28px; }

.cpvh-rodape{ border-top:1px solid var(--cpvh-borda); background:var(--cpvh-fundo); padding:56px 0 30px; font-size:13px; }
.cpvh-rodape__grade{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:28px 48px; margin-bottom:42px; }
.cpvh-rodape__coluna h3{ font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:.15em; color:var(--cpvh-texto); margin:0 0 16px; }
.cpvh-rodape__coluna ul{ list-style:none; margin:0; padding:0; }
.cpvh-rodape__coluna a{ display:inline-flex; align-items:center; min-height:36px; color:var(--cpvh-texto-2); text-decoration:none; font-size:12px; }
.cpvh-rodape__coluna a:hover{ color:var(--cpvh-ciano); }
.cpvh-rodape__fim{ border-top:1px solid var(--cpvh-borda); padding-top:24px; color:var(--cpvh-texto-3); font-size:10px; line-height:1.9; }

/* Animações somente com preferência explícita, pausadas pelo observador. */
@media (prefers-reduced-motion:no-preference){
  .cpvh-botao__visual{ animation:cpvh-respira 4s ease-in-out infinite; animation-play-state:paused; }
  .cpvh-botao__visual::after{ animation:cpvh-shine 5.8s ease-in-out infinite; animation-play-state:paused; }
  .cpvh-botao.is-playing .cpvh-botao__visual,
  .cpvh-botao.is-playing .cpvh-botao__visual::after{ animation-play-state:running; }
  .cpvh-botao:hover .cpvh-botao__visual,
  .cpvh-botao:focus-visible .cpvh-botao__visual,
  .cpvh-botao:hover .cpvh-botao__visual::after,
  .cpvh-botao:focus-visible .cpvh-botao__visual::after{ animation-play-state:paused; }
  .cpvh-faixa__trilho{ animation:cpvh-desliza 42s linear infinite; animation-play-state:paused; }
  .cpvh-faixa.is-playing .cpvh-faixa__trilho{ animation-play-state:running; }
  .cpvh-faixa:hover .cpvh-faixa__trilho,
  .cpvh-faixa:focus-within .cpvh-faixa__trilho{ animation-play-state:paused; }
}
@keyframes cpvh-respira{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.025); } }
@keyframes cpvh-shine{ 0%,62%{ transform:translateX(-180%) skewX(-20deg); opacity:0; } 65%{ opacity:1; } 88%,100%{ transform:translateX(350%) skewX(-20deg); opacity:0; } }
@keyframes cpvh-desliza{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

@media (max-width:1050px){
  .cpvh-metodo__grade, .cpvh-autor, .cpvh-produto{ gap:40px; }
  .cpvh-formacao__cabeca, .cpvh-duvidas>.cpvh-envelope{ gap:40px; }
  .cpvh-guias{ gap:0 28px; }
  .cpvh-guia{ grid-template-columns:95px 1fr; column-gap:16px; }
  .cpvh-guia__capa{ width:95px; }
  .cpvh-curriculo{ gap:16px; }
  .cpvh-preco{ padding-left:28px; }
}
@media (max-width:800px){
  .cpvh-secao{ padding:80px 0; }
  .cpvh-metodo__grade{ grid-template-columns:1fr; gap:36px; }
  .cpvh-metodo__intro{ position:static; }
  .cpvh-metodo__intro .cpvh-secao__linha{ max-width:500px; }
  .cpvh-mercados{ margin:20px 0; display:flex; align-items:center; gap:32px; }
  .cpvh-mercados>div{ font-size:70px; flex-shrink:0; }
  .cpvh-mercados p{ font-size:11px; }
  .cpvh-formacao__cabeca{ grid-template-columns:1fr; gap:20px; }
  .cpvh-formacao__cabeca>.cpvh-secao__linha{ max-width:520px; }
  .cpvh-produto{ gap:32px; }
  .cpvh-produto__resumo{ font-size:13px; }
  .cpvh-produto__resumo strong{ font-size:36px; }
  .cpvh-autor{ gap:32px; align-items:start; }
  .cpvh-autor__numeros{ grid-template-columns:1fr; gap:15px; margin-top:24px; padding-top:24px; }
  .cpvh-autor__numero{ display:flex; align-items:baseline; gap:14px; }
  .cpvh-autor__numero strong{ font-size:24px; }
  .cpvh-autor__numero span{ margin:0; font-size:10px; }
  .cpvh-duvidas>.cpvh-envelope{ grid-template-columns:1fr; }
  .cpvh-duvidas .cpvh-secao__titulo br{ display:none; }
  .cpvh-duvidas .cpvh-secao__linha{ max-width:none; }
  .cpvh-guias{ grid-template-columns:1fr; }
  .cpvh-guia{ grid-template-columns:160px 1fr; padding:26px 0; }
  .cpvh-guia__capa{ width:160px; }
  .cpvh-guia:first-child{ grid-row:auto; }
  .cpvh-guia:first-child .cpvh-guia__capa{ max-height:320px; object-fit:cover; }
  .cpvh-guia:nth-child(2){ padding-top:26px; }
  .cpvh-final{ min-height:540px; }
}
@media (max-width:640px){
  .cpvh-envelope{ padding-inline:22px; }
  .cpvh-secao{ padding:68px 0; }
  .cpvh-secao__titulo{ font-size:36px; letter-spacing:-.05em; }
  .cpvh-secao__linha{ font-size:14px; }
  .cpvh-heroi{ padding:142px 0 64px; min-height:740px; }
  .cpvh-heroi__acoes .cpvh-botao{ width:100%; }
  .cpvh-topo__interno{ padding:12px 18px; gap:12px; }
  .cpvh-topo__nav{ gap:14px; font-size:12px; }
  .cpvh-topo__nav .cpvh-topo__oculta{ display:none; }
  .cpvh-topo .cpvh-botao--pequeno{ font-size:10px; max-width:190px; }
  .cpvh-topo .cpvh-botao__visual{ padding:10px 13px; }
  .cpvh-heroi::after{ background:linear-gradient(180deg,rgba(10,10,10,.28) 0%,rgba(10,10,10,.72) 26%,rgba(10,10,10,.9) 46%,var(--cpvh-fundo) 96%),linear-gradient(90deg,rgba(10,10,10,.55),rgba(10,10,10,.1)); }
  .cpvh-heroi__fundo img{ object-position:72% top; }
  .cpvh-heroi__prova{ font-size:12px; gap:8px 22px; }
  .cpvh-heroi__linha{ font-size:16px; }
  .cpvh-botao{ font-size:12px; }
  .cpvh-botao__visual{ padding:15px 18px; }
  .cpvh-mercados{ gap:22px; }
  .cpvh-mercados>div{ font-size:60px; }
  .cpvh-passo{ grid-template-columns:42px 1fr; gap:18px; padding:26px 0; }
  .cpvh-passo__numero{ font-size:32px; }
  .cpvh-passo h3{ font-size:19px; }
  .cpvh-passo p{ font-size:13px; }
  .cpvh-curriculo{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px 14px; margin-bottom:40px; }
  .cpvh-curriculo figure:nth-child(even){ padding-top:20px; }
  .cpvh-curriculo figcaption{ font-size:10px; }
  .cpvh-produto{ grid-template-columns:1fr; }
  .cpvh-produto__resumo{ font-size:15px; }
  .cpvh-preco{ padding:30px 0 0; border-left:0; border-top:1px solid var(--cpvh-borda-forte); }
  .cpvh-preco__valor{ font-size:36px; }
  .cpvh-sobre__assinatura{ font-size:42px; padding-bottom:24px; margin-bottom:32px; }
  .cpvh-sobre__assinatura span{ display:none; }
  .cpvh-autor{ grid-template-columns:1fr; gap:36px; }
  .cpvh-autor__foto{ aspect-ratio:4/5; object-position:center 30%; }
  .cpvh-autor__numeros{ grid-template-columns:repeat(3,1fr); gap:12px; }
  .cpvh-autor__numero{ display:block; }
  .cpvh-autor__numero strong{ font-size:22px; }
  .cpvh-autor__numero span{ margin-top:8px; }
  .cpvh-faq summary{ font-size:13px; padding:24px 0; }
  .cpvh-guia{ grid-template-columns:94px 1fr; column-gap:18px; }
  .cpvh-guia__capa{ width:94px; }
  .cpvh-guia h3{ font-size:15px; }
  .cpvh-guia p:not(.cpvh-guia__categoria){ grid-column:1 / -1; margin-top:8px; }
  .cpvh-guia__ler{ grid-column:2; }
  .cpvh-guia:first-child h3{ font-size:25px; }
  .cpvh-final{ padding:260px 0 64px; min-height:0; }
  .cpvh-final__foto{ object-position:78% top; height:390px; }
  .cpvh-final::after{ background:linear-gradient(180deg,rgba(5,5,5,.1) 0%,rgba(5,5,5,.15) 18%,#050505 51%); }
  .cpvh-final .cpvh-botao{ width:100%; }
  .cpvh-rodape__coluna a{ min-height:44px; }
}
@media (max-width:360px){
  .cpvh-topo__interno{ padding-inline:12px; gap:8px; }
  .cpvh-topo__nav{ gap:9px; }
  .cpvh-topo .cpvh-botao--pequeno{ max-width:159px; }
  .cpvh-topo .cpvh-botao__visual{ padding-inline:9px; }
  .cpvh-mercados{ flex-wrap:wrap; gap:0; }
  .cpvh-preco__valor{ font-size:31px; }
  .cpvh-autor__numero strong{ font-size:19px; }
  .cpvh-produto__resumo span{ margin-inline:10px; }
}
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation:none!important; transition:none!important; }
  .cpvh-faixa__grupo[aria-hidden="true"]{ display:none; }
  .cpvh-curriculo figure:hover img, .cpvh-guia:hover .cpvh-guia__capa, .cpvh-textlink:hover span{ transform:none; }
}
