/* ============================================================
   NaveNET — Internet Gamer · Hero Section
   Paleta: azul-marinho #050810 · azul #2f7bff · ciano #37d6ff
   ============================================================ */

:root {
  --bg: #050810;
  --bg-glow: #0a1730;
  --blue: #2f7bff;
  --cyan: #37d6ff;
  --accent: #5aa2ff;
  --text: #eef3ff;
  --text-2: #9db1d6;
  --line: rgba(90, 162, 255, 0.28);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(1100px 720px at 68% 42%, var(--bg-glow) 0%, rgba(10, 23, 48, 0) 62%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ NAVBAR ============ */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(5, 8, 16, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 162, 255, 0.14);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  flex-shrink: 0;
}

.brand img { height: 36px; width: auto; display: block; }

.menu {
  display: flex;
  gap: 26px;
  margin-left: 8px;
}

.menu a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.menu a:hover { color: var(--text); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ BOTÕES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #1e5fd6 55%, var(--cyan) 160%);
  box-shadow: 0 0 22px rgba(47, 123, 255, 0.45), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(55, 214, 255, 0.55), 0 6px 18px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  color: var(--text);
  background: rgba(47, 123, 255, 0.06);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: rgba(47, 123, 255, 0.14);
  border-color: rgba(90, 162, 255, 0.55);
}

.btn-lg { padding: 14px 28px; font-size: 1.05rem; border-radius: 14px; }

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 28px) 6vw 40px;
  overflow: hidden;
  /* overlay DIRECIONAL: forte na esquerda (texto), leve na direita (neons),
     + glow ambiente dos neons banhando o cenário */
  background-image:
    radial-gradient(600px 300px at 85% 35%, rgba(47, 123, 255, 0.18), transparent 70%),
    radial-gradient(500px 400px at 75% 75%, rgba(55, 214, 255, 0.12), transparent 70%),
    radial-gradient(380px 220px at 90% 28%, rgba(55, 214, 255, 0.14), transparent 70%), /* amplia o neon real da foto */
    linear-gradient(90deg, rgba(5, 8, 16, 0.92) 0%, rgba(5, 8, 16, 0.75) 40%, rgba(5, 8, 16, 0.35) 70%, rgba(5, 8, 16, 0.25) 100%),
    url("../assets/background-gamer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 1.85fr;
  gap: 40px;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-h) - 68px);
}

/* --- Coluna esquerda --- */

.hero-left {
  position: relative;
  z-index: 2; /* texto acima do canvas 3D */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6vh;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--accent); }

.hero-lead {
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 380px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* --- Cards de features --- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* como no mockup: a fileira de cards avança além da coluna de texto */
  width: 52vw;
  min-width: 100%;
  margin-top: auto; /* cards na base da coluna esquerda */
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 22, 48, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Camada visual do card: glow azul que vira vermelho no hover (hue-rotate) */
.card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(120% 90% at 20% 0%, rgba(47, 123, 255, 0.28) 0%, rgba(47, 123, 255, 0) 60%);
  box-shadow: inset 0 0 26px rgba(47, 123, 255, 0.22), inset 0 1px 0 rgba(90, 162, 255, 0.35);
  filter: hue-rotate(0deg) saturate(1);
  transition: filter 0.5s ease;
  will-change: filter;
}

.feature-card:hover .card-glow,
.feature-card:focus-within .card-glow {
  filter: hue-rotate(140deg) saturate(1.35);
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- Card ExitLag: selo premium claro no tema escuro --- */

.feature-exitlag {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 104, 188, 0.35);
  box-shadow: 0 8px 30px rgba(29, 104, 188, 0.25);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-exitlag .card-body {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.exitlag-logo {
  height: 28px;
  width: auto;
}

.feature-exitlag h3 {
  color: #0d1d2e;
  font-size: 14px;
}

.feature-exitlag p {
  color: #44506b;
  font-size: 12px;
}

.exitlag-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: #1d68bc;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
}

/* hover próprio: sem hue-rotate — borda e glow avermelhados, fundo continua claro */
.feature-exitlag:hover,
.feature-exitlag:focus-within {
  border-color: #e8342a;
  box-shadow: 0 8px 30px rgba(232, 52, 42, 0.3);
}

.card-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: rgba(47, 123, 255, 0.14);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.card-icon svg { width: 20px; height: 20px; }

.card-body h3 { font-size: 1rem; font-weight: 700; }

.card-body p { color: var(--text-2); font-size: 0.86rem; line-height: 1.45; }

/* --- Palco 3D --- */

.hero-right {
  position: relative;
  display: flex;
}

/* Palco 3D sem moldura CSS: o card holográfico diagonal vive dentro do canvas
   (Three.js), com o vídeo assets/holograma-alpha.webm como único holograma */
.stage {
  position: relative;
  flex: 1;
  /* estende o canvas para a esquerda para o painel 3D não ser cortado */
  margin-left: -110px;
  min-height: 520px;
}

/* Scanlines horizontais animadas sobre o palco (com máscara suave nas bordas) */
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8; /* scanlines por cima do canvas (vídeo → controle → scanlines) */
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(29, 104, 188, 0.06) 0px,
    rgba(29, 104, 188, 0.06) 1px,
    transparent 1px,
    transparent 5px
  );
  -webkit-mask-image: radial-gradient(ellipse 62% 60% at 50% 48%, #000 35%, transparent 75%);
  mask-image: radial-gradient(ellipse 62% 60% at 50% 48%, #000 35%, transparent 75%);
  animation: scanlines 9s linear infinite;
}

@keyframes scanlines {
  from { background-position: 0 0; }
  to   { background-position: 0 120px; }
}

#scene {
  position: absolute;
  inset: 0;
  z-index: 7; /* controle + holograma à frente dos chips */
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* --- Chips de stats (fora do card, ancorados na borda esquerda dele) --- */

.stats {
  position: absolute;
  left: 0;  /* posição exata calculada em JS (projeção da borda do card 3D) */
  top: 50%;
  transform: translateY(-50%); /* ancorado pela esquerda; JS resolve o X */
  z-index: 9; /* acima do card/canvas (7) e das scanlines (8) */
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
}

/* linha de conexão HUD: "pluga" cada chip na borda do card */
.chip-link {
  position: absolute;
  left: 100%;
  top: 50%;
  width: var(--link-w, 52px);
  height: 1px;
  background: rgba(29, 104, 188, 0.5);
}

.chip-link::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(37, 109, 193, 0.7);
}

/* sem corredor livre (~1280-1440px): chips voltam a montar na borda do card
   (layout do mockup) e a linha de conexão some */
.stats.overlap .chip-link { display: none; }

.stat-chip {
  position: relative;
  min-width: 136px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(29, 104, 188, 0.65);
  background: rgba(13, 29, 46, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(29, 104, 188, 0.35), 0 0 40px rgba(29, 104, 188, 0.18);
  will-change: transform;
}

/* cantoneiras HUD */
.stat-chip::before,
.stat-chip::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #256dc1;
  border-style: solid;
}

.stat-chip::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.stat-chip::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

/* pulso ao "travar" o contador de entrada */
.stat-chip.lock {
  animation: chipPulse 0.45s ease;
}

@keyframes chipPulse {
  0% { box-shadow: 0 0 16px rgba(29, 104, 188, 0.35); }
  40% { box-shadow: 0 0 30px rgba(37, 109, 193, 0.75); }
  100% { box-shadow: 0 0 16px rgba(29, 104, 188, 0.35); }
}

.stat-label {
  display: block;
  color: #dfe9ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.stat-value {
  color: #7db3f8;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 14px rgba(37, 109, 193, 0.65);
}

.stat-value small {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9db1d6;
  text-shadow: none;
}

/* --- Personagem --- */

.hero-person {
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% - 90px); /* cabeça quase encostando no topo, logo abaixo da navbar */
  z-index: 5; /* abaixo do canvas (7): controle + holograma sempre à frente */
  pointer-events: none;
  line-height: 0;
}

/* penumbra no pé do personagem: afunda ele E o cenário atrás no escuro,
   senão o degradê deixa as luzes da mesa aparecendo através do corpo */
.hero-person::after {
  content: "";
  position: absolute;
  /* não pode passar de ~-90px: além disso invade o card do ExitLag e o escurece */
  left: -90px;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(
    to top,
    #050810 0%,
    rgba(5, 8, 16, 0.92) 28%,
    rgba(5, 8, 16, 0.58) 58%,
    rgba(5, 8, 16, 0) 100%
  );
  pointer-events: none;
}

.person-glow {
  position: absolute;
  right: -10%;
  bottom: -6%;
  width: 70vh;
  height: 70vh;
  background: radial-gradient(circle, rgba(47, 123, 255, 0.30) 0%, rgba(47, 123, 255, 0) 65%);
  filter: blur(6px);
}

.hero-person img {
  position: relative;
  height: 100%;
  width: auto;
  max-width: none;
  /* rim light: a luz dos neons banhando a borda esquerda do personagem */
  filter: drop-shadow(-8px 0 24px rgba(47, 123, 255, 0.35));
  /* o PNG é recortado na cintura: sem isso a borda reta bate no limite da seção
     e o corpo parece fatiado. O degradê apaga a base dele na penumbra. */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 calc(100% - 130px),
    rgba(0, 0, 0, 0.6) calc(100% - 62px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 calc(100% - 130px),
    rgba(0, 0, 0, 0.6) calc(100% - 62px),
    transparent 100%
  );
}

/* ============ PLANOS ============ */

/* linha de separação entre a página 1 e 2: degradê azul ↔ preto */
.section-divider {
  height: 3px;
  /* mesmo azul dos neons do background (amostrado da foto) */
  background: linear-gradient(90deg, #000 0%, #123f96 26%, #2f9bff 44%, #b3edfe 50%, #2f9bff 56%, #123f96 74%, #000 100%);
  box-shadow: 0 0 18px rgba(47, 155, 255, 0.7), 0 0 46px rgba(18, 63, 150, 0.45);
}

.plans {
  position: relative;
  min-height: 100vh;
  padding: 96px 6vw 72px;
  overflow: hidden;
  background-color: #020614;
  /* corredor neon: salve a foto como assets/bg-planos.png que ela entra aqui;
     os gradientes por cima são o clima (e o fallback se a foto faltar) */
  background-image:
    linear-gradient(180deg, rgba(2, 4, 10, 0.3) 0%, rgba(2, 4, 10, 0.08) 35%, rgba(2, 4, 10, 0.25) 100%),
    url("../assets/bg-planos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* luz "saber" tremulando por cima dos neons da foto de fundo
   (mesma posição/dimensão dos feixes da arte, com flicker de vida) */
.neon-live-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.neon-live {
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, #2f9bff 25%, #b3edfe 50%, #2f9bff 75%, transparent);
  box-shadow: 0 0 12px rgba(47, 155, 255, 0.85), 0 0 34px rgba(47, 155, 255, 0.45);
  filter: blur(0.6px);
  animation: neonFlicker 3.4s linear infinite;
}

/* feixes superiores das paredes */
.nl-1 { left: -1%; top: 24%; width: 8%; height: 4px; transform: rotate(3deg); }
.nl-2 { right: -1%; top: 24%; width: 8%; height: 4px; transform: rotate(-3deg); animation-delay: -1.2s; }
/* linhas do piso */
.nl-3 { left: -1%; top: 63%; width: 15%; height: 3px; transform: rotate(4deg); animation-delay: -2.1s; }
.nl-4 { right: -1%; top: 63%; width: 15%; height: 3px; transform: rotate(-4deg); animation-delay: -0.5s; }

/* flicker irregular de neon (tremido, com "falhas") */
@keyframes neonFlicker {
  0%, 100% { opacity: 0.55; }
  3% { opacity: 0.9; }
  5% { opacity: 0.45; }
  8% { opacity: 0.95; filter: blur(0.6px) brightness(1.35); }
  11% { opacity: 0.6; }
  14% { opacity: 0.85; }
  22% { opacity: 0.7; filter: blur(0.6px) brightness(1); }
  30% { opacity: 0.92; }
  33% { opacity: 0.5; }
  35% { opacity: 0.88; filter: blur(0.6px) brightness(1.3); }
  48% { opacity: 0.65; }
  60% { opacity: 0.9; }
  63% { opacity: 0.55; }
  65% { opacity: 0.85; }
  80% { opacity: 0.75; filter: blur(0.6px) brightness(1.15); }
  92% { opacity: 0.6; }
}

/* 1GB (Mais escolhido) fica no MEIO da fileira */
.plans-grid .plan-card:nth-child(1) { order: 1; }
.plans-grid .plan-card:nth-child(2) { order: 3; } /* 700MB vai p/ direita */
.plans-grid .plan-featured { order: 2; }

.plans-head {
  text-align: center;
  margin-bottom: 56px;
}

.plans-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plans-head h2 .accent { color: #2f7bff; }

.plans-head p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 1.1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@property --plan-ang {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.plan-card {
  position: relative;
  text-align: center;
  padding: 46px 40px 40px;
  border-radius: 20px;
  border: 1px solid rgba(47, 123, 255, 0.38);
  background: linear-gradient(180deg, rgba(8, 16, 34, 0.85), rgba(4, 9, 20, 0.9));
  box-shadow: 0 0 26px rgba(29, 104, 188, 0.18), inset 0 0 30px rgba(29, 104, 188, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* efeito "saber": lâmina de luz percorrendo a borda do card */
.plan-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--plan-ang),
    transparent 0% 78%,
    rgba(37, 109, 193, 0) 80%,
    rgba(37, 109, 193, 0.65) 90%,
    #37d6ff 96%,
    rgba(37, 109, 193, 0.65) 97.5%,
    transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: planSaber 7s linear infinite;
}

.plans-grid .plan-card:nth-child(1)::before { animation-delay: 0s; }
.plans-grid .plan-card:nth-child(2)::before { animation-delay: -2.3s; animation-duration: 5.5s; }
.plans-grid .plan-card:nth-child(3)::before { animation-delay: -4.6s; }

@keyframes planSaber {
  to { --plan-ang: 360deg; }
}

/* hover: o card vem para a frente (zoom) */
.plan-card:hover {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 14px 54px rgba(47, 123, 255, 0.38), inset 0 0 30px rgba(29, 104, 188, 0.1);
  z-index: 3;
}

/* card do meio em destaque */
.plan-featured {
  padding-top: 58px;
  padding-bottom: 50px;
  transform: scale(1.05);
  border-color: rgba(90, 160, 255, 0.75);
  box-shadow: 0 0 40px rgba(47, 123, 255, 0.4), inset 0 0 36px rgba(47, 123, 255, 0.12);
  z-index: 2;
}

.plan-featured:hover {
  transform: translateY(-8px) scale(1.095);
  box-shadow: 0 16px 60px rgba(47, 123, 255, 0.5), inset 0 0 36px rgba(47, 123, 255, 0.14);
}

.plan-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(90, 160, 255, 0.7);
  background: linear-gradient(180deg, #0c1c3a, #071224);
  box-shadow: 0 0 18px rgba(47, 123, 255, 0.5);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-badge svg {
  width: 15px;
  height: 15px;
  color: #37d6ff;
}

.plan-crown {
  position: absolute;
  top: -74px;
  right: -60px;
  width: 172px;
  height: 156px;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(55, 214, 255, 0.7)) drop-shadow(0 0 26px rgba(47, 123, 255, 0.45));
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
}

.plan-name span { color: #2f7bff; }

/* logos dos serviços inclusos (ExitLag / Deezer / Max) */
.plan-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.svc-chip {
  padding: 8px 16px;
  border-radius: 10px;
  background: #eef3ff;
  color: #0b1020;
  font-size: 1.05rem;
  font-weight: 800;
}

/* lista de benefícios com check */
.plan-checks {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 26px auto 6px;
  max-width: 330px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.4;
}

.plan-checks li {
  position: relative;
  padding-left: 28px;
}

.plan-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #37d6ff;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(55, 214, 255, 0.6);
}

.plan-price .mensal {
  font-size: 0.38em;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-divider {
  width: 62%;
  height: 2px;
  margin: 12px auto 20px;
  background: linear-gradient(90deg, transparent, #2f7bff 30%, #37d6ff 65%, transparent 82%);
  position: relative;
}

.plan-divider::after {
  content: "";
  position: absolute;
  right: 6%;
  top: -2px;
  width: 14px;
  height: 6px;
  background: linear-gradient(90deg, #37d6ff, transparent);
  transform: skewX(-30deg);
}

.plan-speed {
  font-size: clamp(58px, 5.4vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-speed small {
  font-size: 0.38em;
  font-weight: 700;
  color: #2f7bff;
}

.plan-rule {
  border: none;
  height: 1px;
  margin: 20px 8% 18px;
  background: rgba(90, 160, 255, 0.3);
}

.plan-price {
  font-size: 2.9rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.plan-price .cur {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: 0.35em;
}

.plan-price sup {
  font-size: 0.5em;
  top: -0.55em;
  position: relative;
}

.plan-feats {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0 auto 32px;
  max-width: 300px;
  color: var(--text);
  font-size: 1.08rem;
}

.plan-feats li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.plan-feats svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #2f7bff;
}

.feat-exitlag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 10px;
  background: #eef3ff;
}

.feat-exitlag img {
  height: 30px;
  width: auto;
  display: block;
}

.plan-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  border-radius: 12px;
  font-size: 1.1rem;
}

/* barra inferior de infos */
.plans-footer {
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 22px 28px;
  border-radius: 18px;
  border: 1px solid rgba(47, 123, 255, 0.25);
  background: rgba(6, 12, 26, 0.55);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.pf-item + .pf-item { border-left: 1px solid rgba(90, 160, 255, 0.18); }

.pf-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(47, 123, 255, 0.4));
}

.pf-icon svg { width: 100%; height: 100%; }

.pf-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.pf-item span {
  color: var(--text-2);
  font-size: 0.85rem;
}

/* ============ RODAPÉ ============ */

.footer {
  border-top: 1px solid rgba(90, 162, 255, 0.14);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  color: var(--text-2);
  font-size: 0.84rem;
}

.footer a { color: var(--accent); }

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

@media (max-width: 1300px) {
  .hero-person { height: 80%; }
}

@media (max-width: 1200px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .menu { gap: 18px; }
  .hero-grid { gap: 32px; }
  .stage { margin-left: -60px; }
  .hero-person { height: 58%; }
}

@media (max-width: 900px) {
  .menu { display: none; }

  .hero { padding-top: calc(var(--nav-h) + 20px); }

  /* primeira tela: a foto mobile (personagem no cenário) com fade p/ o site */
  .hero {
    background-image: none;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100svh;
    background-image:
      linear-gradient(180deg, rgba(5, 8, 16, 0.75) 0%, rgba(5, 8, 16, 0.12) 28%, rgba(5, 8, 16, 0.18) 52%, rgba(5, 8, 16, 0.92) 86%, #050810 100%),
      url("../assets/personagem-celular.jpg");
    background-size: cover;
    background-position: center top;
    pointer-events: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  /* texto primeiro (sobre a foto), palco 3D na sequência */
  .hero-right { display: block; }

  .stage { height: 52vh; min-height: 0; margin-left: 0; margin-top: 26px; }

  .hero-left {
    padding-top: 0;
    min-height: calc(100svh - 150px);
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  /* texto começa abaixo do rosto do personagem na foto */
  .hero-left .eyebrow { margin-top: 24svh; }

  .features { grid-template-columns: repeat(2, 1fr); width: 100%; }

  .hero-person { display: none; }

  /* planos: coluna única, destaque sem escala */
  .plans-grid { grid-template-columns: 1fr; gap: 40px; max-width: 460px; }
  .plan-featured { transform: none; }
  .plan-crown { right: 4px; }
  .plans-footer { grid-template-columns: 1fr; gap: 18px; }
  .pf-item { justify-content: flex-start; }
  .pf-item + .pf-item { border-left: none; padding-top: 16px; border-top: 1px solid rgba(90, 160, 255, 0.18); }

  /* planos no mobile: sem faixas de luz (o corte da foto desalinha) */
  .neon-live-wrap { display: none; }

  /* coroa dentro da tela no mobile */
  .plan-crown { right: -6px; top: -70px; }

  .plans { padding: 64px 5vw 56px; }

  .plans-head { margin-bottom: 40px; }

  /* chips em linha, abaixo do card */
  .stats {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 12px;
    margin-top: 14px;
    width: 100%;
  }

  .stat-chip { flex: 1; min-width: 0; }

  .chip-link { display: none; }
}

@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .stat-value { font-size: 1.4rem; }
}

