:root {
  --bg: #070708;
  --bg-soft: #0d0d10;
  --panel: #121216;
  --panel-2: #18181d;
  --line: rgba(255,255,255,.08);
  --text: #f7f7f8;
  --muted: #8e8e98;
  --red: #e3182d;
  --red-2: #ff3347;
  --red-dark: #78000d;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 38%, rgba(227,24,45,.11), transparent 28%),
    linear-gradient(180deg, #08080a 0%, #08080a 44%, #0a0a0d 100%);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

button, input { font: inherit; }
label { display:grid; gap:8px; color:#c8c8cf; font-size:13px; font-weight:600; }
input { width:100%; padding:14px 15px; border:1px solid var(--line); border-radius:12px; outline:none; color:#fff; background:#0d0d11; }
input:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(227,24,45,.12); }

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,8,.88);
  backdrop-filter: blur(18px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  position: relative;
  display: grid;
  place-items: center;
  gap: 4px;
  grid-auto-flow: column;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: linear-gradient(145deg, #23232a, #0d0d10);
  box-shadow: inset 0 0 0 1px rgba(227,24,45,.12), 0 0 22px rgba(227,24,45,.14);
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 18px;
  height: 3px;
  border-radius: 4px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.bot-eye {
  width: 6px;
  height: 6px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 9px var(--red);
}

.brand strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 15px;
  letter-spacing: .4px;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.search-wrap {
  flex: 1;
  max-width: 390px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.search-wrap:focus-within {
  border-color: rgba(227,24,45,.6);
  box-shadow: 0 0 0 3px rgba(227,24,45,.1);
}

.search-wrap svg,
.icon-btn svg,
.cart-btn svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-wrap svg { color: #74747f; }

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
}

.search-wrap input::placeholder { color: #686873; }

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

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #ddd;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.profile {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.avatar {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(227,24,45,.45);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(145deg, #3b3b43, #17171b);
}

.profile-text {
  text-align: left;
  line-height: 1.1;
}

.profile-text strong { display:block; font-size: 12px; }
.profile-text small { color: var(--muted); font-size: 10px; }
.arrow { color: #777; }

.cart-btn {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 12px;
  background: linear-gradient(135deg, var(--red-2), #a80718);
  box-shadow: 0 8px 26px rgba(227,24,45,.2);
  cursor: pointer;
}
.nav-link { color:#bdbdc5; font-size:13px; font-weight:600; }
.btn-mini { padding:10px 15px; border-radius:10px; background:var(--red); font-size:12px; font-weight:800; }
.plan-button { display:flex; align-items:center; justify-content:center; }
.app-page { min-height:calc(100vh - 160px); padding:70px 0; }
.checkout-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:26px; max-width:940px; }
.form-card,.summary-card,.auth-card,.payment-card,.data-card { padding:32px; border:1px solid var(--line); border-radius:22px; background:rgba(18,18,22,.96); box-shadow:var(--shadow); }
.form-card h1,.auth-card h1,.payment-card h1,.dash-head h1 { margin:8px 0 12px; font-family:Orbitron,Inter,sans-serif; }
.form-card form,.auth-card form { display:grid; gap:17px; margin-top:26px; }
.eyebrow { color:var(--red-2); font-size:11px; font-weight:800; letter-spacing:.14em; }
.wide { width:100%; border:0; cursor:pointer; }
.privacy { color:var(--muted); font-size:11px; line-height:1.6; }
.summary-card h2 { margin-top:18px; }.summary-card>p { color:var(--muted); line-height:1.6; }.summary-card ul { padding-left:20px; color:#bbb; font-size:13px; line-height:2; }
.summary-total { display:flex; justify-content:space-between; align-items:center; margin:28px 0; padding:20px 0; border-block:1px solid var(--line); }.summary-total strong { color:var(--red-2); font-size:25px; }
.auth-card,.payment-card { max-width:570px; text-align:left; }.auth-card>p,.payment-card>p { color:var(--muted); line-height:1.65; }.auth-card a { color:var(--red-2); }
.payment-card { text-align:center; }.pix-box { margin:22px 0 14px; padding:16px; overflow-wrap:anywhere; border:1px dashed rgba(255,51,71,.5); border-radius:12px; color:#ddd; background:#08080a; font:11px monospace; text-align:left; }
.pix-qr { width:244px; min-height:244px; display:grid; place-items:center; margin:24px auto 18px; padding:12px; border-radius:16px; background:#fff; box-shadow:0 12px 35px rgba(0,0,0,.35); }
.pix-qr img,.pix-qr canvas { display:block; max-width:100%; height:auto!important; }
.license-delivery { margin:24px 0; padding:22px; border:1px solid rgba(76,235,145,.25); border-radius:16px; background:rgba(30,180,95,.07); }.license-delivery code { display:block; margin:14px 0; padding:15px; overflow-wrap:anywhere; border-radius:10px; color:#7df1ad; background:#070b08; font-size:16px; font-weight:800; letter-spacing:.08em; }.license-delivery p { margin:14px 0 0; color:var(--muted); font-size:11px; }.activation-guide { margin:22px 0; padding:22px; border:1px solid var(--line); border-radius:16px; text-align:left; }.activation-guide h2 { margin-top:0; font-size:18px; }.activation-guide ol { margin:0; padding-left:20px; color:#bdbdc5; font-size:13px; line-height:1.9; }
.order-meta { display:flex; justify-content:space-between; margin-top:24px; padding-top:20px; border-top:1px solid var(--line); color:var(--muted); font-size:12px; }.order-meta strong { display:block; margin-top:5px; color:white; }
.status-pill { display:inline-block; padding:6px 9px; border-radius:99px; color:#ffc26d; background:rgba(255,160,30,.12); font-size:10px; font-weight:800; }.status-pill.paid { color:#6cf0a8; background:rgba(38,200,112,.12); }.status-pill.cancelled { color:#ff7c89; background:rgba(255,50,70,.12); }
.toast,.alert { max-width:700px; margin:18px auto; padding:13px 16px; border-radius:10px; background:#173d29; color:#8af2b5; }.alert.error { background:#42151b; color:#ff9ca6; }
.dashboard { max-width:1100px; }.dash-head { display:flex; align-items:end; justify-content:space-between; margin-bottom:26px; }.data-card h2 { margin-top:0; }.table-wrap { overflow:auto; }table { width:100%; border-collapse:collapse; }th,td { padding:15px 12px; border-bottom:1px solid var(--line); text-align:left; font-size:12px; }th { color:var(--muted); }td small { display:block; margin-top:5px; color:var(--muted); }td code { color:#ff8995; }.stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; margin-bottom:20px; }.stat-grid article { padding:22px; border:1px solid var(--line); border-radius:16px; background:var(--panel); }.stat-grid span { display:block; color:var(--muted); font-size:12px; }.stat-grid strong { display:block; margin-top:9px; font-size:25px; }.inline-actions { display:flex; gap:6px; }.inline-actions button { padding:7px 9px; border:0; border-radius:7px; color:white; background:#217c4a; cursor:pointer; }.inline-actions .danger { background:#81202d; }
@media(max-width:760px){.checkout-grid{grid-template-columns:1fr}.profile-text,.nav-link{display:none}.app-page{padding:35px 0}.form-card,.summary-card,.auth-card,.payment-card,.data-card{padding:22px}.stat-grid{grid-template-columns:1fr}.dash-head{align-items:flex-start;gap:18px;flex-direction:column}.nav{gap:10px}.brand{min-width:0;flex:1}}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0 80px;
}

.hero-copy { position: relative; z-index: 3; }

.badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding: 9px 14px;
  border: 1px solid rgba(227,24,45,.25);
  border-radius: 99px;
  color: #d4d4da;
  font-size: 11px;
  background: rgba(227,24,45,.07);
}

.badge span { color: var(--red-2); }

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(44px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -3px;
}

h1 span {
  display: block;
  margin-top: 9px;
  color: transparent;
  background: linear-gradient(90deg, #ff4a5d, #a10012 72%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 560px;
  margin: 27px 0 0;
  color: #9797a2;
  font-size: 16px;
  line-height: 1.8;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 25px;
  color: #8b8b95;
  font-size: 11px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  color: var(--red-2);
  font-style: normal;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}

.btn {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .5px;
  transition: .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red-2), #a60013);
  box-shadow: 0 12px 34px rgba(227,24,45,.24);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.hero-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,24,45,.22), rgba(227,24,45,.05) 45%, transparent 70%);
  filter: blur(10px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(227,24,45,.15);
  border-radius: 50%;
}

.orbit-1 { width: 480px; height: 480px; }
.orbit-2 { width: 390px; height: 390px; border-style: dashed; animation: spin 28s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.robot-card {
  position: relative;
  z-index: 2;
  width: 350px;
  height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.01)),
    #0d0d10;
  box-shadow: var(--shadow), inset 0 0 55px rgba(227,24,45,.05);
  transform: rotate(-2deg);
}

.robot-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(227,24,45,.13);
  border-radius: 29px;
}

.robot-head {
  width: 180px;
  height: 145px;
  position: relative;
  border: 8px solid #2f2f35;
  border-radius: 46px;
  background: linear-gradient(145deg, #2b2b31, #111116);
  box-shadow: 0 18px 35px rgba(0,0,0,.45), 0 0 40px rgba(227,24,45,.1);
}

.face {
  position: absolute;
  inset: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  border-radius: 30px;
  background: #08080a;
  box-shadow: inset 0 0 26px rgba(227,24,45,.15);
}

.face .eye {
  width: 24px;
  height: 17px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 18px var(--red);
}

.mouth {
  position: absolute;
  bottom: 21px;
  width: 54px;
  height: 8px;
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, var(--red-2) 0 5px, transparent 5px 9px);
  filter: drop-shadow(0 0 5px var(--red));
}

.antenna {
  position: absolute;
  left: 50%;
  top: -43px;
  width: 5px;
  height: 37px;
  border-radius: 5px;
  background: #35353c;
  transform: translateX(-50%);
}

.antenna span {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 16px var(--red);
  transform: translateX(-50%);
}

.ear {
  position: absolute;
  top: 47px;
  width: 17px;
  height: 52px;
  border: 5px solid #303036;
  background: #141419;
}
.ear.left { left: -23px; border-radius: 12px 0 0 12px; }
.ear.right { right: -23px; border-radius: 0 12px 12px 0; }

.logo-word {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 37px;
  font-family: Orbitron, Inter, sans-serif;
  line-height: 1;
}

.logo-word span {
  color: #b4b4bc;
  font-size: 25px;
  font-weight: 700;
}

.logo-word strong {
  color: var(--red-2);
  font-size: 42px;
  text-shadow: 0 0 24px rgba(227,24,45,.4);
}

.robot-card > small {
  margin-top: 6px;
  color: #686873;
  font-size: 8px;
  letter-spacing: 4px;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(18,18,22,.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.float-card b { display: block; font-size: 12px; }
.float-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }

.card-a { left: -5px; bottom: 105px; }
.card-b { right: -3px; top: 105px; display:block; text-align:center; }
.card-b b { color: var(--red-2); font-size: 21px; }

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #20d879;
  box-shadow: 0 0 12px #20d879;
}

.features,
.plans {
  padding: 105px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

.plans { background: #09090b; }

.section-heading {
  max-width: 670px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > span {
  color: var(--red-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.7px;
}

.section-heading h2 {
  margin: 12px 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(29px, 3.5vw, 44px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 235px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  transition: .22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227,24,45,.33);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227,24,45,.25);
  border-radius: 12px;
  color: var(--red-2);
  background: rgba(227,24,45,.08);
}

.feature-card h3 { margin: 24px 0 10px; font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  align-items: center;
}

.plan-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(145deg, #151519, #0e0e11);
}

.plan-card.featured {
  min-height: 460px;
  border-color: rgba(227,24,45,.45);
  box-shadow: 0 0 0 1px rgba(227,24,45,.06), 0 25px 65px rgba(227,24,45,.09);
}

.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 7px 14px;
  border-radius: 30px;
  background: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .9px;
  transform: translateX(-50%);
}

.plan-label {
  color: var(--red-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.plan-card h3 { margin: 13px 0 18px; font-size: 22px; }

.price {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -2px;
}

.price small { margin-right: 4px; color: var(--muted); font-size: 15px; }
.price span { margin-left: 4px; color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: 0; }

.plan-card ul {
  list-style: none;
  margin: 27px 0;
  padding: 0;
}

.plan-card li {
  position: relative;
  margin: 14px 0;
  padding-left: 22px;
  color: #a6a6af;
  font-size: 12px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-2);
  font-weight: 800;
}

.plan-button {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(227,24,45,.25);
  border-radius: 10px;
  color: white;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .5px;
  background: rgba(227,24,45,.08);
  cursor: pointer;
}

.featured .plan-button {
  border: 0;
  background: linear-gradient(135deg, var(--red-2), #a30013);
}

footer {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  background: #070708;
}

.footer-content {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}

.footer-content p { margin: 0; color: #666671; font-size: 11px; }

.particle {
  position: fixed;
  z-index: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(227,24,45,.6);
  box-shadow: 0 0 8px rgba(227,24,45,.35);
  animation: drift linear infinite;
  pointer-events: none;
}

@keyframes drift {
  from { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  15% { opacity: .7; }
  to { transform: translateY(110vh) rotate(520deg); opacity: 0; }
}

@media (max-width: 1000px) {
  .profile-text, .arrow { display:none; }
  .brand { min-width: auto; }
  .search-wrap { max-width: 300px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 25px; }
  .hero-copy > p, .section-heading { margin-left:auto; margin-right:auto; }
  .badge, .hero-buttons, .trust-row { justify-content:center; margin-left:auto; margin-right:auto; }
  .hero-visual { min-height: 480px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { height: auto; padding: 13px 0; }
  .nav { flex-wrap: wrap; gap: 12px; }
  .search-wrap { order: 3; max-width: none; flex-basis:100%; }
  .nav-actions { gap: 7px; }
  .profile, .icon-btn { display:none; }
  .cart-btn { padding: 0 12px; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 55px; }
  h1 { font-size: 43px; letter-spacing: -2px; }
  .hero-copy > p { font-size: 14px; }
  .trust-row { gap: 13px; }
  .hero-buttons { flex-direction: column; max-width: 300px; }
  .robot-card { width: 285px; height: 340px; }
  .glow, .orbit-1 { width: 350px; height: 350px; }
  .orbit-2 { width: 290px; height: 290px; }
  .float-card { transform: scale(.9); }
  .card-a { left: -10px; }
  .card-b { right: -10px; }
  .feature-grid, .plan-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction:column; text-align:center; }
}

@media (max-width: 410px) {
  .brand span { display:none; }
  .brand-mark { width: 39px; height:39px; }
  .cart-btn { font-size: 10px; }
  .hero-visual { transform: scale(.9); margin-inline:-20px; }
}


/* ===== NOVA ÁREA DE PLANOS / VIPS ===== */
.plans {
  position: relative;
  overflow: hidden;
}

.plans::before,
.plans::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.plans::before {
  left: -260px;
  bottom: -250px;
  background: rgba(227, 24, 45, .11);
}

.plans::after {
  right: -250px;
  top: 80px;
  background: rgba(227, 24, 45, .08);
}

.plans-container {
  position: relative;
  z-index: 2;
}

.plans-heading {
  margin-bottom: 38px;
}

.plans-heading h2 em {
  color: var(--red-2);
  font-style: normal;
}

.plan-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.vip-card {
  min-height: 535px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 32%),
    #111115;
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}

.vip-card.featured {
  min-height: 535px;
}

.vip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 51, 71, .42);
  box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 0 28px rgba(227,24,45,.08);
}

.plan-banner {
  position: relative;
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,51,71,.35), transparent 34%),
    linear-gradient(135deg, #2b0b10, #100e12 58%, #27070d);
}

.plan-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  background:
    repeating-linear-gradient(120deg, transparent 0 17px, rgba(255,255,255,.035) 18px 19px),
    radial-gradient(circle at 84% 25%, rgba(255,255,255,.16) 0 2px, transparent 3px);
}

.plan-banner::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -35px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(255,51,71,.18);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(227,24,45,.2);
}

.banner-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: white;
  font-family: Orbitron, sans-serif;
  font-size: 17px;
  font-weight: 800;
  background:
    radial-gradient(circle at 34% 28%, #ff5a6b, #a80014 55%, #45000a);
  box-shadow:
    inset 0 0 0 5px rgba(0,0,0,.28),
    0 0 22px rgba(227,24,45,.35);
}

.banner-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.banner-copy small {
  display: block;
  margin-bottom: 5px;
  color: #b9b9c2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.banner-copy strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 17px;
  line-height: 1.08;
  text-shadow: 0 3px 15px rgba(0,0,0,.7);
}

.banner-renew {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,51,71,.38), transparent 34%),
    linear-gradient(135deg, #21070b, #111014 55%, #39000a);
}

.banner-monthly {
  background:
    radial-gradient(circle at 18% 50%, rgba(255,92,109,.42), transparent 34%),
    linear-gradient(135deg, #3a0710, #121014 52%, #53000d);
}

.banner-lifetime {
  background:
    radial-gradient(circle at 18% 50%, rgba(255,70,88,.42), transparent 34%),
    linear-gradient(135deg, #4b0712, #141014 52%, #67000f);
}

.vip-card h3 {
  margin: 15px 4px 8px;
  text-align: center;
  font-size: 15px;
}

.plan-description {
  min-height: 54px;
  margin: 0 5px 5px;
  color: #898993;
  text-align: center;
  font-size: 10px;
  line-height: 1.65;
}

.plan-description.compact {
  min-height: 27px;
}

.exclusive-note {
  min-height: 31px;
  margin: 2px 4px 3px;
  color: var(--red-2);
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
}

.old-price {
  margin-top: 4px;
  color: #73737d;
  text-align: center;
  font-size: 10px;
  text-decoration: line-through;
}

.vip-price {
  margin-top: 4px;
  color: #ff5265;
  text-align: center;
  font-size: 28px;
  letter-spacing: -1px;
}

.vip-price small {
  color: #ff8391;
  font-size: 16px;
}

.payment-note {
  margin-top: 1px;
  color: #71717b;
  text-align: center;
  font-size: 8px;
}

.vip-card ul {
  margin: 17px 7px 13px;
}

.vip-card li {
  margin: 9px 0;
  color: #c5c5cb;
  font-size: 10px;
  line-height: 1.35;
}

.vip-card li::before {
  color: var(--red-2);
}

.secure-note {
  margin: auto 7px 10px;
  color: #686871;
  font-size: 9px;
}

.vip-card .plan-button {
  height: 40px;
  border: 1px solid rgba(255,51,71,.36);
  background: linear-gradient(135deg, #f02a40, #980012);
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 8px 20px rgba(227,24,45,.16);
}

.vip-card .plan-button span {
  margin-left: 8px;
  font-size: 15px;
}

.vip-card .popular {
  top: -16px;
  padding: 8px 15px;
  background: linear-gradient(135deg, #ff4055, #a60013);
  box-shadow: 0 8px 20px rgba(227,24,45,.25);
}

.vip-card .house-gold {
  background: linear-gradient(135deg, #3e3e46, #17171b);
  border: 1px solid rgba(255,255,255,.12);
  color: #f2f2f4;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

@media (max-width: 1180px) {
  .plan-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 650px) {
  .plan-grid-four {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .vip-card,
  .vip-card.featured {
    min-height: 0;
  }

  .plan-banner {
    min-height: 116px;
  }
}

.table-btn{padding:8px 11px;border:1px solid var(--line);border-radius:8px;color:#fff;background:#24242a;cursor:pointer;font-size:11px}.license-modal{width:min(520px,calc(100% - 32px));padding:30px;border:1px solid var(--line);border-radius:20px;color:#fff;background:#121216;box-shadow:0 30px 100px #000}.license-modal::backdrop{background:rgba(0,0,0,.78);backdrop-filter:blur(5px)}.license-modal>code{display:block;margin:18px 0;padding:15px;border-radius:10px;color:#7df1ad;background:#070b08;overflow-wrap:anywhere}.modal-close{float:right;border:0;color:#aaa;background:none;font-size:26px;cursor:pointer}.modal-meta{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:15px 0}.modal-meta span{padding:12px;border:1px solid var(--line);border-radius:10px;color:var(--muted);font-size:11px}.modal-meta strong{display:block;margin-top:5px;color:#fff}.admin-dashboard{max-width:1250px}.admin-tabs{position:sticky;top:80px;z-index:10;display:flex;gap:8px;margin-bottom:22px;padding:10px;overflow:auto;border:1px solid var(--line);border-radius:14px;background:rgba(12,12,15,.94)}.admin-tabs a{padding:10px 14px;border-radius:9px;color:#bbb;font-size:12px;white-space:nowrap}.admin-tabs a:hover{color:white;background:#24242a}.admin-section{margin-top:28px;scroll-margin-top:150px}.admin-section>h2{margin:0 0 15px}.admin-stats{grid-template-columns:repeat(4,1fr)}.live-dot{color:#63e99c;font-size:12px}.bar-chart{height:210px;display:flex;align-items:end;justify-content:space-around;gap:15px;padding-top:25px}.bar-col{flex:1;display:flex;flex-direction:column;align-items:center;gap:7px}.bar{position:relative;width:min(44px,75%);min-height:4px;border-radius:8px 8px 3px 3px;background:#3a1820;overflow:hidden}.bar i{position:absolute;bottom:0;width:100%;background:linear-gradient(#ff4157,#bf001c)}.bar-value,.bar-col small{color:var(--muted);font-size:10px}.manage-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px}.manage-form,.quick-form{display:grid;gap:13px}.quick-form{grid-template-columns:repeat(3,1fr) auto;align-items:end;margin:18px 0 28px}.check{display:flex;grid-column:auto;align-items:center}.check input{width:auto}.ad-admin{display:flex;justify-content:space-between;gap:15px;padding:15px 0;border-top:1px solid var(--line)}.ad-admin p{margin:5px 0;color:var(--muted)}.site-ad{display:flex;justify-content:center;gap:10px;padding:10px 20px;color:#fff;background:linear-gradient(90deg,#8d0012,#e3182d,#8d0012);font-size:12px}.site-ad span{opacity:.85}.order-meta small{display:block;color:var(--muted);margin-top:4px}
@media(max-width:800px){.admin-stats{grid-template-columns:repeat(2,1fr)}.manage-grid{grid-template-columns:1fr}.quick-form{grid-template-columns:1fr}.site-ad{align-items:center;flex-direction:column}.order-meta{gap:15px;flex-wrap:wrap}}

/* Painel administrativo em abas reais, sem dependência de JavaScript. */
.admin-dashboard section[id]{display:none}.admin-dashboard #overview{display:block}.admin-dashboard section[id]:target{display:block}.admin-dashboard:has(section[id]:target) #overview:not(:target){display:none}.admin-tabs a.active,.admin-tabs a:focus,.admin-tabs a[href="#overview"]{color:#fff;background:linear-gradient(135deg,#e3182d,#950013)}.admin-tabs:has(a[href="#orders"]:focus) a[href="#overview"],.admin-tabs:has(a[href="#products"]:focus) a[href="#overview"],.admin-tabs:has(a[href="#licenses"]:focus) a[href="#overview"],.admin-tabs:has(a[href="#ads"]:focus) a[href="#overview"]{background:transparent}.bar-chart{display:flex!important}.bar{display:block!important}.bar i{display:block!important}
.admin-dashboard:has(#orders:target) .admin-tabs a,.admin-dashboard:has(#products:target) .admin-tabs a,.admin-dashboard:has(#licenses:target) .admin-tabs a,.admin-dashboard:has(#ads:target) .admin-tabs a{background:transparent}.admin-dashboard:has(#orders:target) .admin-tabs a[href="#orders"],.admin-dashboard:has(#products:target) .admin-tabs a[href="#products"],.admin-dashboard:has(#licenses:target) .admin-tabs a[href="#licenses"],.admin-dashboard:has(#ads:target) .admin-tabs a[href="#ads"]{color:#fff;background:linear-gradient(135deg,#e3182d,#950013)}
