/* ============================================================
   VR7 — Landing pública (FR-208)
   Deriva integralmente de vr7-tokens.css. Zero script essencial
   (FR-203a). Sem origem externa (FR-199). Classes vr7-* estáveis.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--fonte-corpo);
  font-size: var(--texto-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.vr7-container { width: min(var(--largura-conteudo), 92%); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--fonte-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.vr7-rotulo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--texto-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  /* `--cor-dourado-texto`, não `--cor-dourado`: este rótulo é texto de 12px, e
     o dourado de acento dava 3,60:1 no tema claro (medido pela régua de
     navegador). O traço decorativo abaixo continua no dourado — ele não é
     texto, e o requisito de contraste não se aplica a ele. */
  color: var(--cor-dourado-texto);
  font-weight: 600;
}
.vr7-rotulo::before { content: ""; width: 26px; height: 1px; background: var(--cor-dourado); }
.vr7-rotulo--centro { justify-content: center; }

/* ---------- botões (alvo mínimo 44px — FR-201) ---------- */
.vr7-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--alvo-toque);
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--raio-pill);
  border: 0;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.vr7-botao--primario { background: var(--grad-botao); color: var(--cor-contraste-escuro); }
.vr7-botao--primario:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--cor-dourado-tenue); }
.vr7-botao--contorno { border: 1px solid var(--cor-borda-contorno); color: var(--cor-texto); background: transparent; }
.vr7-botao--contorno:hover { border-color: var(--cor-dourado); color: var(--cor-dourado); }

/* ---------- cabeçalho ---------- */
.vr7-cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: var(--cor-cabecalho-fundo);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cor-borda);
}
.vr7-cabecalho-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--esp-4);
  height: var(--altura-cabecalho);
}
.vr7-logo { color: var(--cor-texto); display: inline-flex; align-items: center; min-height: var(--alvo-toque); }
.vr7-logo svg { height: 26px; width: auto; }
.vr7-nav-links { display: flex; gap: 2.2rem; font-size: var(--texto-sm); font-weight: 500; color: var(--cor-texto-2); }
.vr7-nav-links a { position: relative; display: inline-flex; align-items: center; min-height: var(--alvo-toque); transition: color 0.25s; }
.vr7-nav-links a:hover { color: var(--cor-texto); }
.vr7-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px;
  background: var(--cor-dourado);
  transition: width 0.3s;
}
.vr7-nav-links a:hover::after { width: 100%; }

/* menu móvel sem script: <details> (FR-203a) */
.vr7-menu-movel { display: none; position: relative; }
.vr7-menu-movel > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--alvo-toque);
  height: var(--alvo-toque);
  color: var(--cor-texto);
}
.vr7-menu-movel > summary::-webkit-details-marker { display: none; }
.vr7-menu-movel[open] > summary .vr7-icone-menu { display: none; }
.vr7-menu-movel:not([open]) > summary .vr7-icone-fechar { display: none; }
.vr7-menu-movel-lista {
  position: fixed;
  top: var(--altura-cabecalho);
  left: 0;
  right: 0;
  background: var(--cor-menu-fundo);
  border-bottom: 1px solid var(--cor-borda);
  display: flex;
  flex-direction: column;
  padding: var(--esp-6) 4%;
  gap: var(--esp-2);
}
.vr7-menu-movel-lista a {
  display: flex;
  align-items: center;
  min-height: var(--alvo-toque);
  font-size: var(--texto-base);
}

/* ---------- herói ---------- */
.vr7-heroi {
  position: relative;
  overflow: hidden;
  padding: calc(var(--altura-cabecalho) + var(--esp-secao)) 0 var(--esp-secao);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.vr7-heroi-chevrons {
  position: absolute;
  top: -4%;
  right: -12%;
  width: 78%;
  max-width: 980px;
  height: auto;
  pointer-events: none;
}
.vr7-heroi-chevrons path {
  fill: none;
  stroke: var(--cor-dourado);
  stroke-width: 1.1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: vr7-tracar 2.6s cubic-bezier(0.6, 0, 0.2, 1) forwards;
}
@keyframes vr7-tracar { to { stroke-dashoffset: 0; } }
.vr7-heroi-conteudo { position: relative; z-index: 2; max-width: 640px; }
.vr7-heroi h1 { font-size: var(--texto-hero); margin: 1.4rem 0 1.5rem; }
.vr7-heroi h1 em { font-style: normal; color: var(--cor-dourado); }
.vr7-heroi-descricao { font-size: var(--texto-md); color: var(--cor-texto-2); max-width: 33rem; }
.vr7-heroi-acoes { display: flex; flex-wrap: wrap; gap: var(--esp-4); margin-top: var(--esp-8); }
.vr7-heroi-numeros {
  display: flex;
  gap: 3rem;
  margin-top: 3.6rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--cor-borda);
  padding-top: var(--esp-6);
}
.vr7-heroi-numeros strong {
  font-family: var(--fonte-display);
  font-feature-settings: var(--num-tabular);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cor-dourado);
  display: block;
}
.vr7-heroi-numeros span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cor-texto-2);
}

/* ---------- empresas que confiam (marquee CSS, sem script) ---------- */
.vr7-clientes { padding: var(--esp-8) 0; border-top: 1px solid var(--cor-borda); }
.vr7-clientes-titulo {
  font-size: var(--texto-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cor-texto-2);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--esp-6);
}
.vr7-clientes-faixa {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.vr7-clientes-lista {
  display: flex;
  align-items: center;
  gap: var(--esp-16);
  padding-right: var(--esp-16);
  list-style: none;
  flex: none;
  animation: vr7-desfile 32s linear infinite;
}
.vr7-clientes-lista li {
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: var(--texto-lg);
  /* `opacity: 0.55` derrubava o contraste real a **2,38:1** no tema claro — e a
     régua reportava 3,60:1, porque a sonda lê a cor declarada e ignora a
     opacidade do elemento (o número era otimista, não pessimista). O ar de
     "marca discreta" vem do peso e do tamanho, não de apagar o texto. */
  color: var(--cor-texto-2);
  white-space: nowrap;
  transition: opacity 0.3s, color 0.3s;
}
.vr7-clientes-lista li:hover { color: var(--cor-dourado-texto); }
@keyframes vr7-desfile { to { transform: translateX(-100%); } }

/* ---------- depoimentos (rolagem com snap, sem script) ---------- */
.vr7-depoimentos {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--esp-4);
  scrollbar-color: var(--cor-marca-bronze) transparent;
  scrollbar-width: thin;
}
.vr7-depoimento {
  flex: 0 0 min(560px, 88%);
  scroll-snap-align: center;
  background: linear-gradient(160deg, var(--cor-superficie-vitrine), var(--cor-fundo));
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  padding: var(--esp-8);
}
.vr7-depoimento blockquote {
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: var(--texto-md);
  line-height: 1.5;
}
.vr7-depoimento blockquote::before {
  content: "\201C";
  display: block;
  color: var(--cor-dourado);
  font-size: 2.6rem;
  line-height: 0.5;
  margin-bottom: var(--esp-4);
}
.vr7-depoimento figcaption { margin-top: var(--esp-6); font-size: var(--texto-sm); color: var(--cor-texto-2); }
.vr7-depoimento figcaption strong { display: block; color: var(--cor-texto); font-size: var(--texto-base); }

/* ---------- faixa de pilares (creme, do manual) ---------- */
.vr7-pilares { background: var(--cor-texto); color: var(--cor-superficie-vitrine); padding: var(--esp-secao) 0; }
.vr7-pilares-titulo { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.vr7-pilares-titulo .vr7-rotulo { color: var(--cor-dourado-texto-invertido); }
.vr7-pilares-titulo .vr7-rotulo::before { background: var(--cor-dourado-texto-invertido); }
.vr7-pilares-titulo h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: var(--esp-4); }
.vr7-pilares-grade { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.vr7-pilar {
  background: var(--cor-superficie-vitrine);
  color: var(--cor-texto);
  border-radius: var(--raio);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.3s;
}
.vr7-pilar:hover { transform: translateY(-4px); }
.vr7-pilar svg { width: 34px; height: 34px; stroke: var(--cor-dourado); margin: 0 auto var(--esp-4); }
.vr7-pilar h3 { font-size: var(--texto-base); letter-spacing: 0.04em; }
.vr7-pilar p { font-size: 0.85rem; color: var(--cor-texto-2); margin-top: 0.5rem; }

/* ---------- seções ---------- */
section { scroll-margin-top: calc(var(--altura-cabecalho) + 14px); }
.vr7-secao { padding: var(--esp-secao) 0; }
.vr7-secao--alterna { background: var(--cor-superficie-2); }
.vr7-secao-titulo { max-width: 640px; margin-bottom: 3.5rem; }
.vr7-secao-titulo--centro { text-align: center; margin-inline: auto; }
.vr7-secao-titulo h2 { font-size: var(--texto-xl); margin-top: var(--esp-4); }
.vr7-secao-titulo p { color: var(--cor-texto-2); margin-top: var(--esp-4); }

/* ---------- soluções ---------- */
.vr7-solucoes-grade { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.vr7-cartao {
  background: linear-gradient(160deg, var(--cor-superficie-vitrine), var(--cor-fundo));
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  padding: var(--esp-8);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.vr7-cartao:hover { border-color: var(--cor-borda-dourada); transform: translateY(-4px); }
.vr7-cartao-chevron {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 120px;
  height: 120px;
  opacity: 0.28;
  pointer-events: none;
}
.vr7-cartao-chevron path { fill: none; stroke: var(--cor-dourado); stroke-width: 1.2; }
.vr7-cartao > svg:first-child { width: 30px; height: 30px; stroke: var(--cor-dourado); margin-bottom: 1.2rem; }
.vr7-cartao h3 { font-size: var(--texto-lg); margin-bottom: 0.7rem; }
.vr7-cartao p { color: var(--cor-texto-2); font-size: 0.95rem; }
.vr7-etiquetas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }
.vr7-etiquetas span {
  font-size: var(--texto-xs);
  letter-spacing: 0.06em;
  color: var(--cor-dourado-texto);
  border: 1px solid var(--cor-borda-dourada);
  border-radius: var(--raio-pill);
  padding: 0.3rem 0.8rem;
}

/* ---------- diferenciais ---------- */
.vr7-diferenciais-grade {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  overflow: hidden;
}
.vr7-diferencial {
  padding: var(--esp-8);
  border-bottom: 1px solid var(--cor-borda);
  border-right: 1px solid var(--cor-borda);
  background: var(--cor-fundo);
  transition: background 0.3s;
}
.vr7-diferencial:nth-child(even) { border-right: 0; }
.vr7-diferencial:nth-last-child(-n+2) { border-bottom: 0; }
.vr7-diferencial:hover { background: var(--cor-superficie-vitrine); }
.vr7-diferencial h3 { font-size: var(--texto-md); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.7rem; }
.vr7-diferencial h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--grad-chevron);
  transform: rotate(45deg);
  flex: none;
}
.vr7-diferencial p { font-size: 0.93rem; color: var(--cor-texto-2); }

/* ---------- FAQ (sem script: details/summary) ---------- */
.vr7-faq { max-width: 780px; margin: 0 auto; }
.vr7-faq details { border-bottom: 1px solid var(--cor-borda); padding: 1.4rem 0; }
.vr7-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--esp-6);
  min-height: var(--alvo-toque);
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.vr7-faq summary::-webkit-details-marker { display: none; }
.vr7-faq summary::after {
  content: "+";
  color: var(--cor-dourado);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s;
  flex: none;
}
.vr7-faq details[open] summary::after { transform: rotate(45deg); }
.vr7-faq details p { color: var(--cor-texto-2); margin-top: var(--esp-4); font-size: 0.95rem; max-width: 60ch; }

/* ---------- chamada final + contato ---------- */
.vr7-chamada { text-align: center; max-width: 640px; margin: 0 auto; }
.vr7-chamada h2 { font-size: var(--texto-xl); }
.vr7-chamada p { color: var(--cor-texto-2); margin-top: var(--esp-4); }
.vr7-chamada .vr7-heroi-acoes { justify-content: center; }
.vr7-contatos {
  display: flex;
  justify-content: center;
  gap: var(--esp-8);
  flex-wrap: wrap;
  margin-top: var(--esp-8);
  padding-top: var(--esp-6);
  border-top: 1px solid var(--cor-borda);
}
.vr7-contato-item { text-align: left; }
.vr7-contato-item span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cor-texto-2);
  display: block;
}
.vr7-contato-item strong { font-weight: 600; }
.vr7-contato-item a:hover { color: var(--cor-dourado); }

/* ---------- rodapé ---------- */
/* O respiro de baixo RESERVA a faixa do botão flutuante "Reportar um problema".
   Ele é `position: fixed` no canto inferior direito (20px da borda, ~44px de
   alto), então no fim da rolagem ele fica **por cima** do último item do rodapé
   — que é justamente o crédito da desenvolvedora. Sem esta reserva, a logo
   simplesmente não é alcançável: o clique cai no FAB.

   `--alvo-toque` + `--esp-8` cobre a altura do botão e o afastamento dele da
   borda, e acompanha o token se algum dos dois mudar. */
.vr7-rodape {
  border-top: 1px solid var(--cor-borda);
  padding: 3.5rem 0 calc(var(--alvo-toque) + var(--esp-8));
}
.vr7-rodape-topo { display: flex; justify-content: space-between; gap: var(--esp-6); flex-wrap: wrap; align-items: flex-start; }
.vr7-rodape .vr7-logo svg { height: 24px; margin-bottom: var(--esp-4); }
.vr7-rodape-topo p { font-size: 0.85rem; color: var(--cor-texto-2); max-width: 34ch; }
.vr7-rodape-nav { display: flex; gap: 1.8rem; font-size: var(--texto-sm); color: var(--cor-texto-2); flex-wrap: wrap; }
.vr7-rodape-nav a { display: inline-flex; align-items: center; min-height: var(--alvo-toque); }
.vr7-rodape-nav a:hover { color: var(--cor-dourado); }
.vr7-rodape-base {
  margin-top: var(--esp-8);
  padding-top: var(--esp-6);
  border-top: 1px solid var(--cor-borda);
  font-size: 0.78rem;
  color: var(--cor-texto-2);
  display: flex;
  /* `center`, e não o `stretch` padrão: a linha tem itens de alturas diferentes
     (texto de 0,78rem e o logotipo da desenvolvedora), e sem isto cada um se
     alinha a uma base própria. */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--esp-2);
}

/* ---------- movimento reduzido (FR-201) ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .vr7-heroi-chevrons path { stroke-dashoffset: 0; }
  .vr7-clientes-lista { animation: none !important; }
  .vr7-clientes-faixa { flex-wrap: wrap; justify-content: center; -webkit-mask-image: none; mask-image: none; }
  .vr7-clientes-faixa > ul[aria-hidden="true"] { display: none; }
}

/* ---------- responsividade (FR-202) ---------- */
@media (max-width: 960px) {
  .vr7-solucoes-grade, .vr7-pilares-grade { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .vr7-nav-links, .vr7-cabecalho-nav > .vr7-botao--contorno { display: none; }
  .vr7-menu-movel { display: block; }
  .vr7-pilares-grade, .vr7-solucoes-grade, .vr7-diferenciais-grade { grid-template-columns: 1fr; }
  .vr7-diferencial { border-right: 0; }
  .vr7-diferencial:nth-last-child(2) { border-bottom: 1px solid var(--cor-borda); }
  .vr7-heroi { padding-top: calc(var(--altura-cabecalho) + 4.5rem); min-height: auto; }
  .vr7-heroi-chevrons { width: 130%; right: -45%; top: -2%; opacity: 0.5; }
}

/* Alternância de tema no cabeçalho da landing (canto superior direito) —
   botão circular discreto; ícone sol/lua do sprite (currentColor). */
.vr7-tema-toggle-form { margin: 0; display: inline-flex; }
.vr7-tema-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  /* `--alvo-toque`, não 2.5rem: media 40px e o mínimo é 44 (FR-201).
     É o controle que troca o tema — quem precisa dele é justamente quem
     tem dificuldade de enxergar a tela como ela está. */
  width: var(--alvo-toque); height: var(--alvo-toque); padding: 0;
  border: 1px solid var(--cor-borda); border-radius: 50%;
  background: transparent; color: var(--cor-texto);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.vr7-tema-toggle:hover { color: var(--cor-dourado); border-color: var(--cor-borda-dourada); }
.vr7-tema-icone { display: block; fill: currentColor; }

/* As sobreposições de tema claro do cabeçalho e do menu SUMIRAM daqui (069.1 ·
   FR-114). Elas existiam para desfazer o fundo escuro cravado
   (`rgba(10,9,8,...)`): quatro regras só para reverter dois valores literais.
   Com `--cor-cabecalho-fundo` e `--cor-menu-fundo` no conjunto único, o tema
   claro inverte na origem e não há o que reverter. A borda do botão de contorno
   segue o mesmo caminho, por `--cor-borda-contorno`. */

/* O FAB "Reportar um problema" (spec 017) NÃO mora mais aqui: a base vive em
   `vr7-tokens.css`, a folha que os dois shells carregam (FR-115). Ele existia
   duas vezes, com cores diferentes, e a correção de contraste da 069.0 chegou a
   só uma delas. */
