@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@700;800;900&family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --bg: #0b0f14;
  --surface: rgba(18, 24, 31, 0.86);
  --surface-solid: #12181f;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f7fb;
  --muted: #a9b7c7;
  --teal: #26d7b5;
  --amber: #ffb545;
  --red: #ff6b6b;
  --blue: #7cb8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --logo-pulse-speed: 6.2s;
  --green: #39ff14;
  --green-dim: rgba(57, 255, 20, 0.70);
  --green-glow: rgba(57, 255, 20, 0.28);
  --green-faint: rgba(57, 255, 20, 0.10);
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(57,255,20,0.30), 0 0 24px rgba(57,255,20,0.14), inset 0 1px 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 0 22px rgba(57,255,20,0.55), 0 0 48px rgba(57,255,20,0.22), inset 0 1px 0 rgba(255,255,255,0.06); }
}
@keyframes neon-pulse-red {
  0%, 100% { box-shadow: 0 0 10px rgba(255,45,45,0.32), 0 0 24px rgba(255,45,45,0.14), inset 0 1px 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 0 22px rgba(255,45,45,0.58), 0 0 50px rgba(255,45,45,0.22), inset 0 1px 0 rgba(255,255,255,0.06); }
}
@keyframes neon-pulse-orange {
  0%, 100% { box-shadow: 0 0 10px rgba(255,130,0,0.32), 0 0 24px rgba(255,130,0,0.14), inset 0 1px 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 0 22px rgba(255,130,0,0.58), 0 0 50px rgba(255,130,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06); }
}
@keyframes neon-pulse-blue {
  0%, 100% { box-shadow: 0 0 10px rgba(60,140,255,0.32), 0 0 24px rgba(60,140,255,0.14), inset 0 1px 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 0 22px rgba(60,140,255,0.58), 0 0 50px rgba(60,140,255,0.22), inset 0 1px 0 rgba(255,255,255,0.06); }
}
@keyframes btn-shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

button,
input,
select {
  font: inherit;
}

#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #0b0f14;
}

/* ── Home fullscreen ─────────────────────────────────────── */
html:has(body.home-fullscreen) {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100%;
}

.home-fullscreen {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100dvh;
  max-height: 100svh;
}

.bg-video {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

@media (max-width: 768px) {
  .bg-video {
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    object-fit: cover;
    transform: none;
  }
}


/* ── Account button top-right ───────────────────────────── */
.account-btn {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 10px;
  background: rgba(8, 12, 18, 0.72);
  color: var(--green-dim);
  backdrop-filter: blur(18px);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.account-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.10), transparent);
  transition: left 500ms ease;
}

.account-btn:hover::before { left: 160%; }

.account-btn {
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.account-btn:hover {
  background: rgba(57, 255, 20, 0.08);
  border-color: rgba(57, 255, 20, 0.65);
  box-shadow: 0 0 22px rgba(57,255,20,0.50), 0 0 55px rgba(57,255,20,0.14);
  color: #ff4444;
  animation: none;
}

/* ── Right floating nav ──────────────────────────────────── */
.float-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 148px;
}

.float-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 200ms ease;
}

.float-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.12), transparent);
  transition: left 480ms ease;
  pointer-events: none;
}

.float-nav-link:hover {
  transform: translateX(-4px);
}

.float-nav-link:hover::before { left: 160%; }

/* Planos — destaque primário com pulse neon */
.float-nav-primary {
  background: rgba(8, 12, 18, 0.68);
  border: 1px solid rgba(57,255,20,0.70);
  color: var(--green);
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.float-nav-primary:hover {
  background: linear-gradient(135deg, rgba(57,255,20,0.32), rgba(57,255,20,0.12));
  border-color: var(--green);
  box-shadow:
    0 0 22px rgba(57,255,20,0.55),
    0 0 60px rgba(57,255,20,0.18),
    0 8px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.10);
  color: #fff;
  animation: none;
}

/* Cadastrar — laranja */
.float-nav-secondary {
  background: rgba(8, 12, 18, 0.68);
  border: 1px solid rgba(57,255,20,0.35);
  color: rgba(255,150,30,0.85);
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.float-nav-secondary:hover {
  background: rgba(57,255,20,0.07);
  border-color: rgba(57,255,20,0.65);
  box-shadow:
    0 0 24px rgba(57,255,20,0.50),
    0 0 56px rgba(57,255,20,0.14),
    0 8px 24px rgba(0,0,0,0.40);
  color: #ff9420;
  animation: none;
}

/* Como Usar / FAQ — azul */
.float-nav-link:not(.float-nav-primary):not(.float-nav-secondary) {
  background: rgba(8, 12, 18, 0.65);
  border: 1px solid rgba(57,255,20,0.20);
  color: rgba(130,180,255,0.85);
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.float-nav-link:not(.float-nav-primary):not(.float-nav-secondary):hover {
  background: rgba(57,255,20,0.07);
  border-color: rgba(57,255,20,0.55);
  box-shadow: 0 0 20px rgba(57,255,20,0.45), 0 0 50px rgba(57,255,20,0.12);
  color: #6ab4ff;
  animation: none;
}

@media (max-width: 620px) {
  .account-btn {
    top: 14px;
    right: 12px;
    font-size: 0.70rem;
    padding: 8px 14px;
  }

  .float-nav {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 90px;
    transform: translateX(-50%);
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100vw - 48px);
    max-width: 310px;
    min-width: unset;
    gap: 8px;
    justify-content: center;
  }

  .float-nav-link {
    flex: 1 1 calc(50% - 4px);
    font-size: 0.72rem;
    padding: 11px 10px;
    letter-spacing: 0.07em;
  }

  /* Garante glow verde visível no mobile (sem :hover) */
  .float-nav-primary,
  .float-nav-secondary,
  .float-nav-link:not(.float-nav-primary):not(.float-nav-secondary) {
    box-shadow: 0 0 16px rgba(57,255,20,0.38), 0 0 40px rgba(57,255,20,0.13);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 10%, rgba(57, 255, 20, 0.07), transparent 30%),
    radial-gradient(circle at 20% 35%, rgba(255, 181, 69, 0.06), transparent 28%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel Decorative", "Cinzel", Georgia, serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(57, 255, 20, 0.50))
    drop-shadow(0 0 20px rgba(57, 255, 20, 0.24));
  animation: brandLogoPulse var(--logo-pulse-speed) ease-in-out infinite;
  transform-origin: center;
}

@keyframes brandLogoPulse {
  0%,
  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 8px rgba(57, 255, 20, 0.40))
      drop-shadow(0 0 14px rgba(57, 255, 20, 0.18));
  }

  50% {
    transform: scale(1.08);
    filter:
      drop-shadow(0 0 18px rgba(57, 255, 20, 0.80))
      drop-shadow(0 0 32px rgba(57, 255, 20, 0.40));
  }
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a:hover,
.top-nav .active {
  color: var(--green);
  text-shadow: 0 0 12px rgba(57,255,20,0.40);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(57,255,20,0.35);
  border-radius: 8px;
  color: var(--green-dim);
  transition: border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  border-color: rgba(57,255,20,0.70);
  box-shadow: 0 0 14px rgba(57,255,20,0.28);
  color: var(--green);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding-top: 70px;
}

.page-hero {
  min-height: 30vh;
  display: flex;
  align-items: end;
  padding-top: 58px;
  padding-bottom: 28px;
}

.compact-hero h1,
.standalone-auth h1,
.standalone-dashboard h1 {
  font-size: clamp(2.5rem, 5.8vw, 5.2rem);
  line-height: 0.96;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(57,255,20,0.35);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-family: "Cinzel Decorative", "Cinzel", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.14rem;
}

.hero-title {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: clamp(16px, 2vw, 30px);
  white-space: nowrap;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: rgba(8, 12, 18, 0.80);
  border-color: rgba(57,255,20,0.65);
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.button.primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.10), transparent);
  transition: left 500ms ease;
  pointer-events: none;
}

.button.primary:hover {
  background: rgba(57,255,20,0.12);
  border-color: var(--green);
  box-shadow: 0 0 22px rgba(57,255,20,0.50), 0 0 60px rgba(57,255,20,0.14);
  color: #fff;
  animation: none;
}

.button.primary:hover::before { left: 160%; }

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.auth-panel,
.purchase-box,
.license-box,
.locked-panel,
.plans article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-logo img {
  display: block;
  width: min(112%, 700px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
  animation: logoPulse var(--logo-pulse-speed) ease-in-out infinite;
  transform-origin: center;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35))
      drop-shadow(0 0 0 rgba(57, 255, 20, 0));
  }

  50% {
    transform: scale(1.035);
    filter:
      drop-shadow(0 32px 58px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 28px rgba(57, 255, 20, 0.40));
  }
}

.content-band {
  background: transparent;
  color: var(--text);
}

.content-band .eyebrow,
.compatible-section .eyebrow,
.plans-section .eyebrow,
.account-section .eyebrow,
.dashboard-section .eyebrow {
  color: var(--green);
}

.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.steps,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.steps p,
.auth-shell p,
.purchase-box p,
.locked-panel p {
  color: #566271;
}

.content-band .steps p {
  color: var(--muted);
}

.compatible-section {
  background: transparent;
  color: var(--text);
}

.compatible-section .section-title p:last-child {
  color: var(--muted);
}

.compatible-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compatible-grid article {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.compatible-grid article::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.55);
}

.plans-section {
  background: rgba(11, 15, 20, 0.92);
}

.plan-page {
  padding-top: 18px;
}

.plan-note {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
}

.plans .plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 24, 31, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plans .plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(38, 215, 181, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.plans .plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 36px rgba(57, 255, 20, 0.18);
}

.plans .plan-card:hover::before {
  opacity: 1;
}

.plans .plan-anual {
  border-color: rgba(57, 255, 20, 0.65);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38), 0 0 44px rgba(57, 255, 20, 0.18);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(57, 255, 20, 0.10);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(57,255,20,0.40);
}

.plan-badge.subtle {
  color: var(--amber);
  border-color: rgba(255, 181, 69, 0.36);
  background: rgba(255, 181, 69, 0.1);
}

.plans .plan-card h3 {
  max-width: 68%;
}

.plan-price {
  margin: 12px 0 2px;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 900;
  letter-spacing: 0;
}

.plan-price span {
  display: inline-block;
  color: var(--text);
  text-shadow: 0 0 24px rgba(38, 215, 181, 0.14);
}

.plan-price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-installment {
  min-height: 18px;
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(57,255,20,0.30);
}

.plan-features {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

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

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.35);
}

.plans article .button {
  margin-top: auto;
}

.plans .plan-card .button {
  position: relative;
  z-index: 1;
  min-height: 46px;
  font-size: 0.96rem;
}

.account-section,
.dashboard-section {
  background: #eef3f1;
  color: #101820;
}

.auth-page {
  min-height: calc(100vh - 75px);
  display: grid;
  place-items: center;
  padding: 54px 18px 82px;
}

.auth-card {
  width: min(100%, 470px);
  padding: 30px;
  border: 1px solid rgba(57, 255, 20, 0.20);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.94), rgba(8, 12, 18, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.10), transparent 42%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 40px rgba(57,255,20,0.06);
  backdrop-filter: blur(18px);
}

.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.auth-brand img {
  width: min(100%, 220px);
  height: auto;
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 24px rgba(57, 255, 20, 0.35));
  animation: logoPulse var(--logo-pulse-speed) ease-in-out infinite;
}

.auth-copy {
  text-align: center;
  margin-bottom: 24px;
}

.auth-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 7vw, 3.35rem);
  line-height: 0.96;
}

.auth-copy p:last-child {
  margin: 0 auto;
  max-width: 360px;
  color: var(--muted);
}

.standalone-auth,
.standalone-dashboard {
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: center;
}

.auth-shell {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.auth-panel,
.purchase-box,
.license-box,
.locked-panel {
  padding: 24px;
  background: #ffffff;
  color: #101820;
  box-shadow: 0 20px 54px rgba(20, 32, 42, 0.12);
}

.auth-card .auth-panel {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  background: #f7faf9;
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  background: #101820;
  color: #ffffff;
}

.auth-card .tab {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.auth-card .tab.active {
  background: rgba(57,255,20,0.14);
  border-color: rgba(57,255,20,0.60);
  color: var(--green);
  box-shadow: 0 0 12px rgba(57,255,20,0.28);
}

.auth-form {
  display: none;
}

.auth-form.active,
.purchase-box {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #3b4652;
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-card label {
  color: var(--muted);
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: #101820;
}

.auth-card input {
  border-color: rgba(57, 255, 20, 0.28);
  background: rgba(6, 12, 8, 0.85);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.auth-card input:focus {
  outline: none;
  border-color: rgba(57,255,20,0.70);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.10), 0 0 14px rgba(57,255,20,0.18);
}

.captcha-box {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 17, 14, 0.78);
}

.captcha-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  width: 100%;
  align-items: center;
  border: 0;
  padding: 4px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.captcha-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(38, 215, 181, 0.55);
  border-radius: 8px;
  background: rgba(38, 215, 181, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.captcha-box.verified {
  border-color: rgba(38, 215, 181, 0.55);
  box-shadow: 0 0 0 4px rgba(38, 215, 181, 0.08);
}

.captcha-box.verified .captcha-mark {
  background: var(--teal);
}

.captcha-box.verified .captcha-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 14px;
  border: solid #06100e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.captcha-text {
  display: grid;
  gap: 1px;
}

.captcha-text strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
}

.captcha-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.captcha-challenge {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.captcha-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.captcha-head strong {
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
}

.captcha-head button {
  min-height: 28px;
  border: 1px solid rgba(38, 215, 181, 0.32);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--teal);
  cursor: pointer;
  font-weight: 800;
}

.captcha-box label {
  gap: 5px;
  font-size: 0.82rem;
}

.captcha-box input {
  min-height: 38px;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #245d52;
  font-size: 0.92rem;
}

.auth-card .form-message {
  color: var(--teal);
  text-align: center;
}

.form-message.error {
  color: #a22b2b;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.locked-panel {
  max-width: 560px;
}

.licenses {
  display: grid;
  gap: 12px;
}

.license-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  background: #f7faf9;
}

.license-key {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  padding: 12px;
  border-radius: 8px;
  background: #101820;
  color: var(--teal);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.95rem;
}

.license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #07120d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  animation: whatsappNudge 4.8s ease-in-out infinite;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  opacity: 0;
  animation: whatsappRing 4.8s ease-in-out infinite;
  pointer-events: none;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ── PIX Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(6, 10, 14, 0.82);
  backdrop-filter: blur(6px);
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-box {
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  background: #12181f;
  border: 1px solid rgba(38, 215, 181, 0.22);
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 14px;
  text-align: center;
}

.modal-box h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.3rem;
  color: var(--teal);
}

.modal-amount {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.modal-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pix-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

.pix-copy-box {
  display: grid;
  gap: 8px;
}

.pix-code {
  display: block;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(38, 215, 181, 0.18);
  border-radius: 8px;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.72rem;
  color: var(--teal);
  overflow-wrap: anywhere;
  word-break: break-all;
  text-align: left;
  max-height: 80px;
  overflow-y: auto;
}

.pix-status {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

@keyframes whatsappNudge {
  0%,
  72%,
  100% {
    transform: translateY(0) scale(1);
  }

  78% {
    transform: translateY(-3px) scale(1.025);
  }

  84% {
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappRing {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: scale(0.96);
  }

  78% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 920px) {
  .top-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101820;
  }

  .top-nav.open { display: flex; }
  .menu-button { display: block; }

  .hero,
  .auth-shell,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps,
  .compatible-grid,
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 18px;
  }

  .hero-logo {
    min-height: 320px;
  }

  .steps,
  .compatible-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
