/* ============================================================
   Grupo Viraller — camada 2026
   Paleta dourada extraída da logo + seções novas (liderança,
   mercado, live commerce, parcerias, criadores, trabalhos).
   Carregada DEPOIS do CSS do Webflow: só sobrescreve o necessário.
   ============================================================ */

:root {
  /* Dourados da logo */
  --gold: #D9A13F;        /* dourado principal */
  --gold-light: #F5C85B;  /* botões e títulos em destaque */
  --gold-dark: #9C6C30;   /* rótulos de seção */
  --gold-soft: #F7EBD4;   /* fundos e filetes */

  /* Destaque secundário — só para "novo" / "ao vivo" */
  --coral: #FF4D6D;

  /* Neutros */
  --ink: #17171C;
  --ink-2: #26262E;
  --muted: #6F6F7A;
  --paper: #FBF8F2;

  /* Remapeia as variáveis herdadas do Webflow para a nova paleta */
  --color1: var(--gold);
  --color2: var(--gold-light);
}

/* ---------- Varredura do azul legado ---------- */

h4 { color: var(--gold-dark); }

/* Contato: no dourado o texto branco ficava ilegível — vai para o ink quente */
.section.gradient,
.section.gradient.overflow {
  background-image: linear-gradient(135deg, #17171C 0%, #2A2012 55%, #4A3317 100%);
}
.section.gradient .circle.second { border-color: #f5c85b1f; }

/* Cartão dourado da primeira dobra: texto escuro lê melhor que branco.
   Os três ícones são PNGs brancos — sobre o dourado ficavam invisíveis, então
   são achatados para o ink junto com o texto. */
.top-wrapper { color: var(--ink); }
.top-wrapper .heading-smaller,
.top-wrapper .services-top-text { color: var(--ink); }
.top-wrapper .small-services-wrapper img { filter: brightness(0) saturate(100%); opacity: .82; }

.left-part { background-color: var(--ink-2); }
.left-part.smaller { background-image: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #35251180 100%); }

.button.blue { background-color: var(--gold); }
.circle { border-color: #d9a13f26; }
.square { background-color: var(--gold-dark); }

/* Texto escuro sobre o dourado: contraste real nos botões */
.button.w-button,
.button.w-button:hover,
.button.w-button:visited {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .2px;
}
.button.normal.w-button { color: var(--muted); font-weight: 500; }
.button.normal.w-button:hover { color: var(--gold-dark); }
.link-2 { color: #fff; }

/* Fundo um pouco mais quente nas seções cinza */
.section.gray { background-color: var(--paper); }

/* Botão de menu do mobile: era azul da identidade antiga, e o glifo herdava
   --color2 (dourado claro) sobre o header branco — 1,6:1, sumia na tela. */
.menu-button { color: var(--ink); }
.menu-button.w--open { color: var(--ink); background-color: var(--gold); }
.icon-3 { color: var(--ink); }
@media screen and (max-width: 991px) { .icon-3 { color: var(--ink); } }
@media screen and (max-width: 767px) { .icon-3 { color: var(--ink); } }

/* Títulos dos diferenciais: #D9A13F sobre branco dá 2,3:1 */
.project-title { color: var(--gold-dark); }

/* Números 01–04 dos serviços quase sumiam no painel escuro */
.number-features { color: #f5c85b5c; }

/* O nome do serviço virou <h3> (era <div>): zera a margem de topo do heading */
h3.services-top-text.big { margin-top: 0; font-weight: 600; }

.footer { background-color: var(--ink); }
.copyright { color: #cfc6b4; }

/* ---------- Cabeçalho ---------- */

.vr-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.vr-brand-mark { width: 56px; height: 56px; display: block; }
.vr-brand-name {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1;
  white-space: nowrap;
}
.nav-link { color: var(--ink-2); }
.nav-link:hover { color: var(--gold-dark); }

/* ---------- Tipografia compartilhada das seções novas ---------- */

/* Acessível também sobre o fundo papel (--paper), não só sobre branco */
.vr-eyebrow {
  color: #8A5F2A;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 10px;
}
.vr-eyebrow.light { color: var(--gold-light); }

.vr-h1 {
  color: var(--ink);
  font-size: 44px;
  font-weight: 600;
  line-height: 52px;
  margin: 0 0 10px;
}

.vr-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.vr-head-sub { color: var(--muted); font-size: 16px; line-height: 27px; margin: 14px 0 0; }

.vr-section { overflow: hidden; }

/* Título de seção que existe para o leitor de tela e para o outline da página,
   sem entrar na composição visual. */
.vr-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* O .w-container do Webflow injeta ::before/::after de clearfix. Dentro de um
   grid eles viram itens e empurram o conteúdo real para fora das colunas. */
.vr-hero-inner::before, .vr-hero-inner::after,
.vr-market-inner::before, .vr-market-inner::after { display: none; }

/* Reveal ao rolar */
.vr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.vr-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .vr-reveal { opacity: 1; transform: none; transition: none; }
}

/* Ponto pulsante */
.vr-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 #ff4d6d99;
  flex: none;
  display: inline-block;
  animation: vr-pulse 2s infinite;
}
@keyframes vr-pulse {
  0%   { box-shadow: 0 0 0 0 #ff4d6d99; }
  70%  { box-shadow: 0 0 0 10px #ff4d6d00; }
  100% { box-shadow: 0 0 0 0 #ff4d6d00; }
}
@media (prefers-reduced-motion: reduce) { .vr-pulse { animation: none; } }

/* ============================================================
   HERO
   ============================================================ */

.vr-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 110px 10px 210px;
}
.vr-hero-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 78% 18%, #d9a13f38, #d9a13f00 70%),
    radial-gradient(620px 380px at 8% 88%, #9c6c3033, #9c6c3000 72%),
    linear-gradient(160deg, #17171C 0%, #1D1A17 55%, #221B12 100%);
}
.vr-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 100%);
}

.vr-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
}

.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F3E7D2;
  background: #ffffff0f;
  border: 1px solid #d9a13f4d;
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 26px;
}

.vr-hero-title {
  color: #fff;
  font-size: 64px;
  line-height: 70px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0 0 22px;
}
.vr-hero-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
}

.vr-hero-sub {
  color: #D9D4CB;
  font-size: 17px;
  line-height: 30px;
  max-width: 600px;
  margin: 0 0 34px;
}

.vr-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

.vr-btn-ghost {
  display: inline-block;
  color: var(--gold-light);
  border: 1px solid #f5c85b66;
  border-radius: 3px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}
.vr-btn-ghost:hover {
  background: #f5c85b1a;
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.vr-stats { display: grid; gap: 14px; }
.vr-stat {
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(4px);
}
.vr-stat-value {
  display: block;
  color: var(--gold-light);
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
}
.vr-stat-label {
  display: block;
  color: #BDB7AD;
  font-size: 14px;
  line-height: 21px;
  margin-top: 4px;
}

/* ============================================================
   QUEM SOMOS — frase de destaque
   ============================================================ */

.vr-pullquote {
  color: var(--ink);
  font-size: 18px;
  font-style: italic;
  line-height: 30px;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 30px 0 0;
}

/* ============================================================
   MISSÃO, VISÃO E VALORES
   ============================================================ */

.vr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.vr-card {
  position: relative;
  background: #fff;
  border: 1px solid #ECE4D6;
  border-radius: 20px;
  padding: 38px 32px 34px;
  box-shadow: 0 18px 50px -32px #17171c40;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.vr-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 26px 60px -30px #9c6c3059;
}
.vr-card-index {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.vr-card-title { color: var(--ink); font-size: 24px; font-weight: 600; margin: 0 0 12px; }
.vr-card-text { color: var(--muted); font-size: 15px; line-height: 27px; margin: 0; }

/* ============================================================
   NOSSA LIDERANÇA
   ============================================================ */

.vr-leaders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.vr-leader { text-align: center; }
.vr-leader-photo {
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--gold), 0 24px 50px -26px #9c6c3080;
}
.vr-leader-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vr-leader-name { color: var(--ink); font-size: 24px; font-weight: 600; margin: 0 0 4px; }
.vr-leader-role {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 14px;
}
.vr-leader-text { color: var(--muted); font-size: 15px; line-height: 27px; max-width: 380px; margin: 0 auto; }

/* ============================================================
   MERCADO
   ============================================================ */

.vr-market {
  position: relative;
  z-index: 30;
  overflow: hidden;
  background: var(--ink);
  padding: 96px 10px;
}
.vr-market-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 12% 50%, #d9a13f33, #d9a13f00 70%),
    linear-gradient(120deg, #17171C, #221B12);
}
.vr-market-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 50px;
  align-items: center;
}
.vr-market-figure { border-left: 3px solid var(--gold); padding-left: 26px; }
.vr-market-figure strong {
  display: block;
  color: var(--gold-light);
  font-size: 92px;
  line-height: 92px;
  font-weight: 700;
  letter-spacing: -2px;
}
.vr-market-figure span {
  display: block;
  color: #E6DFD2;
  font-size: 17px;
  line-height: 27px;
  margin-top: 10px;
}
.vr-market-text { color: #CFC8BC; font-size: 17px; line-height: 31px; margin: 0; }

/* ============================================================
   SERVIÇO 04 — painel "LIVE"
   ============================================================ */

.left-part._4 {
  height: 500px;
  background: var(--ink);
  background-image:
    radial-gradient(420px 300px at 70% 30%, #d9a13f33, #d9a13f00 70%),
    linear-gradient(150deg, #17171C, #241C11);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vr-live-panel {
  position: relative;
  text-align: center;
  padding: 46px 40px;
  border: 1px solid #d9a13f40;
  border-radius: 22px;
  background: #ffffff08;
}
.vr-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #ff4d6d24;
  border: 1px solid #ff4d6d80;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}
.vr-live-word {
  display: block;
  color: var(--gold-light);
  font-size: 84px;
  line-height: 90px;
  font-weight: 700;
  letter-spacing: 6px;
  margin: 14px 0 6px;
}
.vr-live-caption {
  display: block;
  color: #C9C2B6;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.vr-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #ff4d6d29;
  border: 1px solid #ff4d6d99;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

/* ============================================================
   CANAL DE VENDAS ESTRUTURADO
   ============================================================ */

.vr-cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

.vr-panel {
  background: #fff;
  border: 1px solid #ECE4D6;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 18px 50px -32px #17171c40;
}
.vr-panel.dark {
  background: linear-gradient(150deg, var(--ink), #241C11);
  border-color: #d9a13f3d;
}
.vr-panel-title {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ECE4D6;
}
.vr-panel.dark .vr-panel-title { color: var(--gold-light); border-bottom-color: #ffffff1a; }

.vr-list { list-style: none; margin: 0; padding: 0; }
.vr-list li {
  position: relative;
  padding: 0 0 20px 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F1EAE0;
}
.vr-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.vr-panel.dark .vr-list li { border-bottom-color: #ffffff12; }
.vr-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.vr-list strong { display: block; color: var(--ink); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.vr-list span { display: block; color: var(--muted); font-size: 14px; line-height: 24px; }
.vr-panel.dark .vr-list strong { color: #fff; }
.vr-panel.dark .vr-list span { color: #B6AFA3; }

/* ============================================================
   PARCERIAS — carrossel automático
   ============================================================ */

.vr-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.vr-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: vr-marquee 52s linear infinite;
}
.vr-marquee:hover .vr-marquee-track { animation-play-state: paused; }
@keyframes vr-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .vr-marquee-track { animation: none; }
  .vr-marquee { overflow-x: auto; }
}

/* Cada marca entregou o logo com o próprio fundo (alguns pretos, outros brancos
   ou coloridos). Em vez de forçar um cartão branco — que deixaria os pretos com
   cara de erro — cada logo vira um bloco quadrado com a cor da própria marca. */
.vr-logo {
  flex: none;
  width: 136px;
  height: 136px;
  background: #fff;
  border: 1px solid #ECE4D6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -26px #17171c66;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.vr-logo:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px #9c6c3099;
}
.vr-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Logos largos (não quadrados) não podem ser cortados */
.vr-logo.contain { padding: 20px; background: #fff; }
.vr-logo.contain img { object-fit: contain; }

/* Marca sem arquivo de logo limpo: bloco com o nome, no fundo escuro da marca */
.vr-logo.dark { background: #17171C; border-color: #2E2E36; }
.vr-logo-text {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.4px;
}

/* ============================================================
   NOSSOS CRIADORES
   ============================================================ */

.vr-creators {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 26px;
  max-width: 980px;
  margin: 0 auto;
}
.vr-creator {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #d9a13f66, 0 18px 36px -24px #9c6c3080;
  transition: transform .35s, box-shadow .35s;
}
.vr-creator:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--gold), 0 24px 44px -22px #9c6c3099;
}
.vr-creator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

/* ============================================================
   TRABALHOS REALIZADOS
   ============================================================ */

.vr-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vr-work {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gold-soft);
  box-shadow: 0 18px 44px -28px #17171c80;
  transition: transform .35s, box-shadow .35s;
}
.vr-work:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -26px #17171c99; }
.vr-work img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 991px) {
  .vr-hero { padding: 80px 10px 190px; }
  .vr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .vr-hero-title { font-size: 48px; line-height: 56px; }
  .vr-h1 { font-size: 36px; line-height: 44px; }
  .vr-grid-3 { grid-template-columns: 1fr; }
  .vr-cols-2 { grid-template-columns: 1fr; }
  .vr-market-inner { grid-template-columns: 1fr; gap: 32px; }
  .vr-market-figure strong { font-size: 74px; line-height: 74px; }
  .vr-creators { grid-template-columns: repeat(4, 1fr); }
  .vr-works { grid-template-columns: repeat(3, 1fr); }

  /* Menu colapsado do Webflow: a marca precisa caber ao lado do botão */
  .vr-brand-name { font-size: 18px; }
  .nav-menu.w-nav-menu { background: #fff; }
  .nav-link { text-align: left; }
}

@media (max-width: 767px) {
  .vr-hero { padding: 64px 10px 170px; }
  .vr-hero-title { font-size: 38px; line-height: 46px; }
  .vr-hero-sub { font-size: 16px; line-height: 28px; }
  .vr-h1 { font-size: 30px; line-height: 38px; }
  .vr-head { margin-bottom: 44px; }
  .vr-leaders { grid-template-columns: 1fr; gap: 48px; }
  .vr-creators { grid-template-columns: repeat(3, 1fr); gap: 22px 18px; }
  .vr-works { grid-template-columns: repeat(2, 1fr); }
  .vr-card, .vr-panel { padding: 30px 24px; }
  .left-part._4 { height: 340px; }
  .vr-live-word { font-size: 60px; line-height: 64px; }
}

@media (max-width: 479px) {
  .vr-brand-mark { width: 44px; height: 44px; }
  .vr-brand-name { font-size: 16px; }
  .vr-hero-title { font-size: 32px; line-height: 40px; }
  .vr-badge { font-size: 12px; padding: 8px 14px 8px 12px; }
  .vr-hero-actions { flex-direction: column; align-items: stretch; }
  .vr-hero-actions .button.w-button,
  .vr-hero-actions .vr-btn-ghost { text-align: center; }
  .vr-market-figure strong { font-size: 58px; line-height: 60px; }
  .vr-creators { grid-template-columns: repeat(2, 1fr); }
  .vr-logo { width: 150px; height: 92px; }
  .vr-pullquote { font-size: 16px; line-height: 28px; padding-left: 16px; }
}
