/* ============================================================
   VISUAL DO SITE — você não precisa mexer aqui.
   Se quiser mudar as cores principais, altere só as linhas abaixo.
   ============================================================ */
:root {
  --roxo: #a855f7;              /* roxo principal (brilho/detalhes) */
  --roxo-claro: #c084fc;        /* roxo claro */
  --azul: #3b82f6;              /* azul principal */
  --azul-claro: #60a5fa;        /* azul claro */
  --azul-telegram: #2f6bff;     /* começo do degradê dos botões (azul) */
  --azul-telegram-2: #a855f7;   /* fim do degradê dos botões (roxo) */
  --fundo: #080a16;             /* fundo do site (azul bem escuro puxado pro roxo) */
  --fundo-card: #101427;        /* fundo dos cartões */
  --borda: #23294a;             /* bordas */
  --texto: #f2f4fb;             /* textos */
  --texto-suave: #9aa0c0;       /* textos secundários */
  --laranja: #f97316;           /* laranja da logo (topo e destaque da VSL) */
  --laranja-claro: #ffb066;     /* laranja claro */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--fundo);
  color: var(--texto);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo, .botao-cta {
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

/* ---------- BARRA DO TOPO ---------- */
/* topo com a cor da logo (laranja) + cronômetro — TUDO EM UMA LINHA SÓ */
.barra-topo {
  background: linear-gradient(90deg, #d95f0e, var(--laranja), #d95f0e);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
  overflow: hidden;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: #fff;
}

.barra-topo > span {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.cronometro-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* o cronômetro nunca some nem quebra de linha */
}

/* o relógio contando */
.cronometro {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 3px 12px;
  font-family: 'Sora', monospace;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  animation: piscar-urgencia 1s ease-in-out infinite;
}

@keyframes piscar-urgencia {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 14px rgba(255, 255, 255, 0.45); }
}

/* ---------- MENU ---------- */
.menu {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
}

/* logo na ESQUERDA (imagem + descrição embaixo) */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

/* a imagem da sua logo */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(249, 115, 22, 0.35));
}

/* descrição pequena, em uma linha só, embaixo da logo */
.logo-desc {
  font-size: 0.72rem;
  color: var(--texto-suave);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.logo-desc:empty { display: none; }

/* logo de um lado, botão do Telegram do outro */
.menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.menu .botao-menu { flex-shrink: 0; }

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff, var(--laranja-claro));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* botão do menu na cor da logo (laranja) */
.botao-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--laranja), #ff9838);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.botao-menu:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

/* ============================================================
   FAIXA DE LOGOS DE EMPRESAS (carrossel infinito)
   ============================================================ */
.faixa-logos {
  overflow: hidden;
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 0;
  position: relative;
}

/* esfumado nas pontas */
.faixa-logos::before,
.faixa-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.faixa-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--fundo), transparent);
}

.faixa-logos::after {
  right: 0;
  background: linear-gradient(-90deg, var(--fundo), transparent);
}

.logos-trilho {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: deslizar-logos 26s linear infinite;
}

.faixa-logos:hover .logos-trilho { animation-play-state: paused; }

@keyframes deslizar-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-empresa {
  height: 34px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(35%);
  transition: opacity 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.logo-empresa:hover {
  opacity: 1;
  filter: none;
}

.logo-empresa-faltando {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5d6180;
  font-size: 0.75rem;
  border: 1px dashed var(--borda);
  border-radius: 8px;
  padding: 7px 14px;
  white-space: nowrap;
}

/* ---------- BANNER GRANDE (sua imagem de um lado + descrição ao lado) ---------- */
.banner {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

/* brilho suave atrás do banner */
.banner-brilho {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 30% 30%, rgba(168, 85, 247, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 70%, rgba(59, 130, 246, 0.1), transparent 70%);
  pointer-events: none;
}

/* imagem de um lado, descrição do outro */
.banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}

/* AQUI entra a sua imagem do banner (imagens/banner.jpg) */
.banner-imagem {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--borda);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse 70% 60% at 50% 35%, rgba(168, 85, 247, 0.22), transparent 70%),
    #0c0c16;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(168, 85, 247, 0.15);
}

.banner-imagem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* carrossel do banner: cada slide aparece com fade */
.banner-imagem .banner-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.banner-imagem .banner-slide.ativo {
  opacity: 1;
  z-index: 2;
}

/* bolinhas do carrossel do banner */
.banner-pontos {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.banner-ponto {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-ponto.ativo {
  background: #fff;
  transform: scale(1.3);
}

.banner-imagem .banner-faltando {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8a8aa5;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  border: 2px dashed rgba(168, 85, 247, 0.4);
  border-radius: 20px;
}

.banner-imagem .banner-faltando span { font-size: 2.4rem; }

/* a descrição, ao lado da imagem */
.banner-conteudo {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-chamada {
  display: inline-block;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #cbb8ff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.banner h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-subtitulo {
  font-size: 1.12rem;
  color: #d6d6e6;
  margin-bottom: 34px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* ---------- BOTÃO PRINCIPAL (TELEGRAM) ---------- */
.botao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--azul-telegram), var(--azul-telegram-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 46px;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(59, 130, 246, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: pulsar 2s infinite;
}

.botao-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 48px rgba(59, 130, 246, 0.55);
}

.botao-grande {
  font-size: 1.25rem;
  padding: 20px 54px;
}

@keyframes pulsar {
  0%, 100% { box-shadow: 0 10px 36px rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 10px 52px rgba(59, 130, 246, 0.7); }
}

.texto-seguranca {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #c2c2d6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* ---------- SEÇÕES ---------- */
section { padding: 76px 0; position: relative; }

section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.secao-subtitulo {
  text-align: center;
  color: var(--texto-suave);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ============================================================
   VITRINE DAS MODELOS
   (vídeos verticais rodando no fundo + modelo PNG na frente)
   ============================================================ */
.secao-modelos {
  padding-top: 60px;
  overflow: hidden;
}

.vitrine-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 54px;
}

.vitrine {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--borda);
  cursor: grab;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.vitrine:active { cursor: grabbing; }

.vitrine-trilho {
  display: flex;
  will-change: transform;
}

.slide-modelo {
  position: relative;
  flex: 0 0 100%;
  height: clamp(440px, 56vw, 620px);
  overflow: hidden;
  background: #0a0a11;
  user-select: none;
}

/* ----- vídeos em formato de celular rodando no fundo ----- */
.slide-videos {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.telefone {
  position: relative;
  height: 86%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(168, 85, 247, 0.1), transparent),
    #0e0e16;
  flex-shrink: 1;
  min-width: 0;
}

.telefone video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-faltando {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #55556a;
  font-size: 0.72rem;
  text-align: center;
  padding: 10px;
}

.video-faltando span { font-size: 1.6rem; }

/* escurece os vídeos para a modelo se destacar na frente */
.slide-sombra {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(6, 6, 12, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 6, 12, 0.35) 0%, transparent 25%, transparent 55%, rgba(6, 6, 12, 0.9) 100%);
  z-index: 2;
}

/* ----- a modelo (PNG sem fundo) na frente, grande ----- */
.modelo-png {
  position: absolute;
  bottom: 4%;              /* um pouco mais para cima */
  left: 9%;
  height: 98%;            /* tamanho equilibrado */
  max-width: 48%;
  object-fit: contain;
  object-position: bottom;
  z-index: 3;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.25));
  pointer-events: none;
}

.modelo-faltando {
  position: absolute;
  bottom: 6%;
  left: 10%;
  z-index: 3;
  width: min(34%, 280px);
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  border: 2px dashed rgba(168, 85, 247, 0.5);
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8a8aa5;
  font-size: 0.78rem;
  text-align: center;
  padding: 14px;
}

.modelo-faltando span { font-size: 2rem; }

/* ----- nome e descrição ao lado da modelo ----- */
.slide-info {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 4;
  max-width: 260px;
  background: rgba(10, 10, 18, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 16px;
  padding: 16px 18px;
}

.slide-info .tag-exclusivo {
  display: inline-block;
  background: linear-gradient(90deg, var(--roxo), #7c3aed);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.slide-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.slide-info .botao-cta {
  font-size: 0.88rem;
  padding: 11px 22px;
  animation: none;
}

/* ----- setas ----- */
.vitrine-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: rgba(16, 16, 24, 0.9);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vitrine-seta:hover {
  background: var(--roxo);
  border-color: var(--roxo);
  transform: translateY(-50%) scale(1.08);
}

.seta-esq { left: 4px; }
.seta-dir { right: 4px; }

/* ----- bolinhas embaixo ----- */
.vitrine-pontos {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.ponto {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #2a2a3c;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.ponto.ativo {
  background: var(--roxo);
  transform: scale(1.25);
}

/* ---------- GRADE DE VÍDEOS (THUMBNAILS EM RETRATO) ---------- */
.secao-videos {
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.04), transparent);
}

/* vídeos em formato RETRATO (vertical), um do lado do outro */
.grade-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.card-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--borda);
  background: var(--fundo-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-video:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 16px 44px rgba(168, 85, 247, 0.22);
}

/* área do vídeo (formato retrato) */
.card-video .video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #05060f;
  overflow: hidden;
}

.card-video .video-player video,
.card-video .video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #05060f;
}

/* botão grande de PLAY no meio */
.card-video .botao-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.92);
  color: #fff;
  font-size: 1.3rem;
  padding-left: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.75);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.card-video .botao-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--roxo);
}

/* some com o play quando o vídeo está tocando */
.card-video.tocando .botao-play { display: none; }

/* botão de TELA CHEIA no canto */
.card-video .botao-expandir {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease;
}

.card-video .botao-expandir:hover { background: var(--roxo); }

/* aviso quando o arquivo do vídeo não existe */
.card-video .video-faltando {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #55556a;
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}

.card-video .video-faltando span { font-size: 1.9rem; }
.card-video .video-player.sem-video ~ .botao-play,
.card-video .video-player.sem-video .botao-play,
.card-video .video-player.sem-video .botao-expandir { display: none; }

/* título e descrição embaixo do vídeo */
.card-video-info {
  padding: 14px 16px 16px;
}

.card-video-info h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.card-video-info p {
  font-size: 0.8rem;
  color: var(--texto-suave);
}

/* ---------- SEÇÃO DA VSL ---------- */
.secao-vsl { overflow: hidden; }

/* título da VSL bem DESTACADO */
#vsl-titulo {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ff6b6b, #ff2e2e, #d1091a, #ff6b6b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(224, 20, 33, 0.4);
  animation: brilho-vsl 3s linear infinite;
  margin-bottom: 16px;
}

/* faixinha de urgência acima do título */
#vsl-titulo::before {
  content: "🔥 ATENÇÃO";
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff8080;
  background: rgba(224, 20, 33, 0.16);
  border: 1px solid rgba(224, 20, 33, 0.55);
  border-radius: 999px;
  padding: 6px 18px;
  -webkit-text-fill-color: #ff8080; /* mantém a cor mesmo com o clip do título */
  text-shadow: none;
  animation: piscar-vsl 1.4s ease-in-out infinite;
}

@keyframes brilho-vsl {
  to { background-position: 200% center; }
}

@keyframes piscar-vsl {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* brilho da VSL em vermelho (chama mais atenção) */
.vsl-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 55%, rgba(224, 20, 33, 0.18), transparent 70%);
  pointer-events: none;
}

.vsl-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

/* moldura (bordas) da VSL em vermelho */
.vsl-moldura {
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d1091a, #ff4d4d, #d1091a);
  box-shadow:
    0 0 80px rgba(224, 20, 33, 0.45),
    0 0 24px rgba(255, 77, 77, 0.3);
}

.vsl {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
}

/* carrossel de texto embaixo da VSL */
.vsl-marquee {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(224, 20, 33, 0.4);
  background: rgba(224, 20, 33, 0.1);
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.vsl-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: rolar-marquee 26s linear infinite;
}

.vsl-marquee:hover .vsl-marquee-track {
  animation-play-state: paused;
}

.vsl-marquee-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffc9c9;
  padding: 0 4px;
}

.vsl-marquee-sep {
  color: #ff2e2e;
  margin: 0 18px;
  font-size: 0.6rem;
}

@keyframes rolar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* botão de play grande da VSL */
.vsl-botao-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1091a, #ff4d4d);
  color: #fff;
  font-size: 1.9rem;
  padding-left: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 0 44px rgba(224, 20, 33, 0.75);
  animation: pulsar-play-vsl 1.8s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.vsl-botao-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* some com o play quando o vídeo está tocando */
.vsl.tocando .vsl-botao-play { display: none; }

/* botão de áudio (ligar/desligar som) — só aparece quando está tocando */
.vsl-audio {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  backdrop-filter: blur(4px);
  transition: transform 0.15s ease, background 0.15s ease;
}

.vsl-audio:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.75);
}

.vsl.tocando .vsl-audio { display: flex; }

@keyframes pulsar-play-vsl {
  0%, 100% { box-shadow: 0 0 44px rgba(224, 20, 33, 0.6); }
  50% { box-shadow: 0 0 64px rgba(224, 20, 33, 0.95); }
}

.vsl iframe,
.vsl video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(168, 85, 247, 0.12), transparent),
    #0b0b12;
  color: #7d7d96;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
}

.vsl-placeholder small {
  font-weight: 400;
  letter-spacing: 0;
  color: #55556e;
}

.vsl-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), #ffa53d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  padding-left: 6px;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
}

/* ---------- BENEFÍCIOS ---------- */
.grade-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.card-beneficio {
  background: var(--fundo-card);
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card-beneficio:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
}

.card-beneficio .icone { font-size: 2.1rem; margin-bottom: 12px; }
/* quando você usa uma imagem no lugar do emoji (maior e redonda) */
.card-beneficio .icone-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.5);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.card-beneficio h3 { font-size: 1rem; margin-bottom: 8px; }
.card-beneficio p { font-size: 0.88rem; color: var(--texto-suave); }

/* ---------- BOTÃO DE TESTE (embaixo da VSL) ---------- */
.vsl-botao {
  text-align: center;
  margin-top: 32px;
}

/* Estado INICIAL do botão da VSL: VERMELHO ("ENTRE NO GRUPO VIP") */
#cta-teste {
  background: linear-gradient(90deg, #d1091a, #ff2e2e);
  color: #fff;
  box-shadow: 0 10px 36px rgba(224, 20, 33, 0.5);
  animation: pulsar-vermelho-cta 2s infinite;
}

#cta-teste:hover {
  box-shadow: 0 14px 48px rgba(224, 20, 33, 0.7);
}

#cta-teste svg { fill: #fff; }

@keyframes pulsar-vermelho-cta {
  0%, 100% { box-shadow: 0 10px 36px rgba(224, 20, 33, 0.5); }
  50% { box-shadow: 0 10px 52px rgba(224, 20, 33, 0.8); }
}

/* Depois que ESTOURA vira VERDE BRILHANTE ("FAÇA SEU TESTE GRÁTIS").
   Verde no botão + vermelho nas bordas = contraste que destaca o botão. */
#cta-teste.estourou {
  background: linear-gradient(90deg, #06b64a, #2bff7a);
  color: #033d1c;
  box-shadow: 0 10px 36px rgba(16, 200, 90, 0.55);
  /* primeiro o estouro, depois entra o pulso contínuo */
  animation: estourar-botao 0.75s cubic-bezier(0.22, 1.4, 0.4, 1),
             pulsar-verde 2s infinite 0.75s;
}

#cta-teste.estourou:hover {
  box-shadow: 0 14px 48px rgba(16, 200, 90, 0.8);
}

#cta-teste.estourou svg { fill: #033d1c; }

/* o "estouro" do botão */
@keyframes estourar-botao {
  0%   { transform: scale(0.55); opacity: 0.25; }
  45%  { transform: scale(1.28); opacity: 1; box-shadow: 0 0 70px rgba(43, 255, 122, 0.95); }
  70%  { transform: scale(0.93); }
  85%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes pulsar-verde {
  0%, 100% { box-shadow: 0 10px 36px rgba(16, 200, 90, 0.55); }
  50% { box-shadow: 0 10px 52px rgba(16, 200, 90, 0.85); }
}

/* ============================================================
   CATEGORIAS (quadradinhos que abrem o vídeo ao clicar)
   ============================================================ */
.secao-categorias { overflow: hidden; }

.categorias-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 30%, rgba(47, 107, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.grade-categorias {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.card-categoria {
  position: relative;
  border: 1px solid var(--borda);
  border-radius: 16px;
  background: var(--fundo-card);
  padding: 16px 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.card-categoria::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(47, 107, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-categoria:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 107, 255, 0.55);
  box-shadow: 0 14px 40px rgba(47, 107, 255, 0.2);
}

.card-categoria:hover::before { opacity: 1; }

.card-categoria.ativa {
  border-color: var(--roxo);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.14), var(--fundo-card));
  box-shadow: 0 14px 44px rgba(168, 85, 247, 0.3);
}

/* thumbnail opcional no quadradinho da categoria */
.card-categoria .cat-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #0a0d1c;
  border: 1px solid var(--borda);
}

.card-categoria .cat-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-categoria .cat-thumb .thumb-vazia {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.5;
}

.card-categoria .cat-icone {
  font-size: 2.1rem;
  margin-bottom: 10px;
  position: relative;
}

.card-categoria .cat-nome {
  font-size: 0.98rem;
  font-weight: 700;
  position: relative;
}

/* descrição curta no quadradinho */
.card-categoria .cat-desc {
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin-top: 6px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-categoria .cat-toque {
  display: block;
  font-size: 0.72rem;
  color: var(--texto-suave);
  margin-top: 4px;
  position: relative;
}

/* área que abre com o vídeo + descrição da categoria */
.categoria-aberta {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease, margin-top 0.45s ease;
  margin-top: 0;
}

.categoria-aberta.mostrar {
  max-height: 900px;
  opacity: 1;
  margin-top: 26px;
}

.painel-categoria {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  background: var(--fundo-card);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.painel-categoria .painel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #05060f;
  border: 1px solid var(--borda);
}

.painel-categoria .painel-video iframe,
.painel-categoria .painel-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.painel-categoria .painel-video .video-faltando {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #6a6a86;
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}

.painel-categoria .painel-video .video-faltando span { font-size: 1.8rem; }

.painel-categoria .painel-texto h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.painel-categoria .painel-texto .painel-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--azul), var(--roxo));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.painel-categoria .painel-texto p {
  color: var(--texto-suave);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.painel-categoria .painel-texto .botao-cta {
  font-size: 0.95rem;
  padding: 14px 30px;
  animation: none;
}

/* ============================================================
   PROVAS SOCIAIS
   ============================================================ */
.secao-provas {
  background: linear-gradient(180deg, transparent, rgba(47, 107, 255, 0.04), transparent);
}

.grade-provas {
  columns: 3;
  column-gap: 18px;
}

.prova {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--borda);
  background: var(--fundo-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.prova:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 107, 255, 0.5);
  box-shadow: 0 14px 40px rgba(47, 107, 255, 0.2);
}

.prova img {
  width: 100%;
  display: block;
}

.prova .prova-faltando {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6a6a86;
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

.prova .prova-faltando span { font-size: 1.8rem; }

.prova .selo-verificado {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(47, 107, 255, 0.9);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- CHAMADA FINAL ---------- */
.secao-final {
  text-align: center;
  padding: 96px 0;
}

.final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(168, 85, 247, 0.22), transparent 70%);
  pointer-events: none;
}

.secao-final .secao-subtitulo { margin-bottom: 34px; }

/* ---------- RODAPÉ ---------- */
footer {
  border-top: 1px solid var(--borda);
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #70708a;
}

.rodape-aviso {
  margin-top: 8px;
  font-size: 0.74rem;
  color: #4e4e66;
}

/* ---------- TELAS MÉDIAS ---------- */
@media (max-width: 860px) {
  .slide-info {
    right: 4%;
    bottom: 6%;
    max-width: 300px;
    padding: 18px 20px;
  }
  .slide-info h3 { font-size: 1.2rem; }
  .modelo-png { left: 4%; max-width: 52%; }
  .modelo-faltando { left: 4%; }
}

/* ---------- CELULAR ---------- */
@media (max-width: 860px) {
  /* no celular a imagem fica em cima e a descrição embaixo */
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .banner-imagem { aspect-ratio: 16 / 10; }
  .banner-conteudo { text-align: center; }

  .painel-categoria { grid-template-columns: 1fr; }
  .painel-categoria .painel-texto { text-align: center; }
}

@media (max-width: 560px) {
  .banner { padding: 36px 0 48px; }
  .botao-cta { width: 100%; padding: 17px 20px; font-size: 1rem; }
  .botao-menu span { display: none; }
  .botao-menu { padding: 9px 12px; }
  .logo-img { height: 40px; }
  .logo-desc { font-size: 0.66rem; max-width: 200px; }
  .barra-topo { font-size: 0.72rem; gap: 8px; }
  /* no celular esconde o aviso longo e deixa só o cronômetro (1 linha) */
  #barra-topo-texto { display: none; }
  section { padding: 56px 0; }
  .secao-final { padding: 72px 0; }

  .vitrine-wrapper { padding: 0 12px; }
  .vitrine-seta { display: none; }
  .slide-modelo { height: 560px; }
  .slide-videos { gap: 10px; padding: 14px; align-items: flex-start; padding-top: 20px; }
  .telefone { height: 62%; }
  .telefone:nth-child(3) { display: none; }  /* mostra 2 celulares no celular */
  /* a modelo aparece grande e inteira no celular */
  .modelo-png {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    height: 84%;
    bottom: 12%;
  }
  .modelo-faltando {
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    bottom: 20%;
  }
  /* nome numa barrinha compacta embaixo, sem cobrir a modelo */
  .slide-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    text-align: center;
  }
  .slide-info .tag-exclusivo { margin-bottom: 0; }
  .slide-info h3 { font-size: 1.1rem; margin-bottom: 0; width: 100%; }
  .slide-info .botao-cta { padding: 10px 22px; font-size: 0.85rem; }

  .grade-videos { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .grade-categorias { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .painel-categoria { grid-template-columns: 1fr; }
  .painel-categoria .painel-texto { text-align: center; }
  .grade-provas { columns: 2; column-gap: 12px; }
  .prova { margin-bottom: 12px; }
}

/* ============================================================
   DESEMPENHO — deixa o site mais leve
   ============================================================ */
/* quando a aba não está em foco, congela as animações (economiza CPU) */
body.aba-oculta *,
body.aba-oculta *::before,
body.aba-oculta *::after {
  animation-play-state: paused !important;
}

/* Obs: NÃO desligamos as animações no "reduzir movimento" do sistema, porque
   os carrosséis e brilhos fazem parte do visual do site (são de propósito). */

/* ============================================================
   TELA DE VERIFICAÇÃO DE IDADE (+18)
   ============================================================ */
.aviso-idade {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(168, 85, 247, 0.18), transparent 70%),
    #08080d;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.aviso-idade[hidden] { display: none; }

.aviso-idade-caixa {
  max-width: 440px;
  width: 100%;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 28px 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.aviso-idade-selo {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #d1091a, #ff4d4d);
  box-shadow: 0 0 40px rgba(224, 20, 33, 0.6);
}

.aviso-idade-caixa h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
}

.aviso-idade-texto,
#aviso-idade-texto {
  font-size: 0.92rem;
  color: #b9b9c6;
  line-height: 1.5;
  margin-bottom: 18px;
}

.aviso-idade-pergunta {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

.aviso-idade-botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aviso-idade-sim {
  border: 0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #033d1c;
  background: linear-gradient(90deg, #06b64a, #2bff7a);
  box-shadow: 0 10px 30px rgba(16, 200, 90, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.aviso-idade-sim:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(16, 200, 90, 0.65);
}

.aviso-idade-nao {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #9a9aa6;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.aviso-idade-nao:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #cfcfd8;
}

.aviso-idade-rodape {
  font-size: 0.72rem;
  color: #6f6f7c;
  line-height: 1.5;
  margin-top: 20px;
}
