/* ============================================================
   ClickService — Revenda SPI Evolution
   Estilo premium  •  claro/escuro  •  responsivo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --blue-500: #2b8fff;
  --blue-600: #1e6ff0;
  --blue-700: #0d47c9;
  --orange:   #f7941d;
  --orange-2: #ff7a18;

  --primary:   var(--blue-600);
  --secondary: var(--orange);

  --grad: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 45%, var(--orange) 120%);
  --grad-soft: linear-gradient(135deg, rgba(30,111,240,.18), rgba(247,148,29,.14));

  /* dark (default) */
  --bg:        #0a1428;
  --bg-2:      #0c1830;
  --panel:     #0f1d38;
  --panel-2:   #12233f;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.14);
  --text:      #e9eefb;
  --muted:     #96a4c8;
  --muted-2:   #6b7aa0;
  --shadow:    0 20px 60px -20px rgba(0,0,0,.6);
  --ring:      rgba(43,143,255,.45);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
}

[data-theme="light"] {
  --bg:        #eef2fb;
  --bg-2:      #e6ecf8;
  --panel:     #ffffff;
  --panel-2:   #f5f8ff;
  --border:    rgba(13,30,60,.10);
  --border-2:  rgba(13,30,60,.16);
  --text:      #0e1b34;
  --muted:     #556488;
  --muted-2:   #8492b4;
  --shadow:    0 20px 50px -24px rgba(30,60,120,.35);
  --ring:      rgba(30,111,240,.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s ease, color .3s ease;
}

h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Ambient background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.bg-fx .glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.bg-fx .g1 { width: 480px; height: 480px; background: var(--blue-600); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.bg-fx .g2 { width: 420px; height: 420px; background: var(--orange); bottom: -140px; right: -60px; opacity: .35; animation: float2 18s ease-in-out infinite; }
[data-theme="light"] .bg-fx .glow { opacity: .22; }

@keyframes float1 { 50% { transform: translate(60px, 40px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-50px, -30px) scale(1.15); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-family: 'Space Grotesk'; font-size: 20px; }
.brand .logo-mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 18px;
  box-shadow: 0 8px 24px -6px var(--ring);
}
.brand b { color: var(--secondary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--panel); color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: .25s; font-size: 17px;
}
.theme-toggle:hover { border-color: var(--border-2); transform: translateY(-2px); }

.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: .25s; font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px var(--ring); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--ring); }
.btn-ghost { background: var(--panel); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-2); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 15px; }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 90px 0 70px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
  background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--text);
  letter-spacing: .3px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 10px var(--secondary); }
.hero h1 {
  font-size: clamp(38px, 6vw, 68px); font-weight: 700; margin: 22px 0 0; letter-spacing: -1px;
}
.hero h1 .accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); max-width: 620px; margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: 'Space Grotesk'; font-size: 26px; display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--muted-2); }

/* pixel-dissolve motif (assinatura visual, ecoa a logo) */
.pixels { position: absolute; top: 80px; right: 40px; width: 260px; height: 260px; pointer-events: none; }
.pixels i {
  position: absolute; width: 14px; height: 14px; border-radius: 3px; background: var(--blue-500);
  opacity: 0; animation: pixdrift 4s ease-in-out infinite;
}
@keyframes pixdrift {
  0%   { opacity: 0; transform: translate(0,0) scale(.4); }
  40%  { opacity: .9; }
  100% { opacity: 0; transform: translate(-40px,-24px) scale(1); }
}
@media (max-width: 900px) { .pixels { display: none; } }

/* ---------- Section base ---------- */
.section { padding: 72px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--secondary);
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 12px 0 14px; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- Features grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: .3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: .3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft);
  border: 1px solid var(--border-2); display: grid; place-items: center; margin-bottom: 18px;
  color: var(--secondary); font-size: 22px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Plans ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: .3s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-2); }
.plan.highlight {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 24px 70px -30px var(--ring);
}
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .5px;
  padding: 6px 16px; border-radius: 100px; box-shadow: 0 8px 20px -6px var(--ring);
}
.plan h3 { font-size: 22px; }
.plan .plan-desc { color: var(--muted); font-size: 14px; margin: 6px 0 20px; min-height: 40px; }
.plan .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan .price .cur { font-size: 18px; color: var(--muted); font-family: 'Space Grotesk'; }
.plan .price .val { font-size: 46px; font-weight: 700; font-family: 'Space Grotesk'; letter-spacing: -1px; }
.plan .price-old { color: var(--muted-2); text-decoration: line-through; font-size: 15px; margin-bottom: 4px; }
.plan .once { font-size: 13px; color: var(--secondary); font-weight: 600; margin-bottom: 24px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.plan ul li .ck {
  flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--grad-soft);
  color: var(--secondary); display: grid; place-items: center; font-size: 12px; margin-top: 1px;
}

/* ---------- Docs ---------- */
.docs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.doc-card {
  display: flex; align-items: center; gap: 16px; background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 22px; transition: .25s;
}
.doc-card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.doc-ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-2);
  display: grid; place-items: center; color: var(--secondary); font-size: 20px; flex: none;
}
.doc-meta { flex: 1; min-width: 0; }
.doc-meta h4 { font-size: 15.5px; }
.doc-meta p { color: var(--muted); font-size: 13px; margin: 3px 0 0; }
.doc-meta .tags { display: flex; gap: 8px; margin-top: 6px; }
.doc-meta .tag { font-size: 11px; color: var(--muted-2); background: var(--panel-2); padding: 2px 8px; border-radius: 6px; }
.doc-dl {
  flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 18px; transition: .25s;
}
.doc-dl:hover { transform: translateY(-2px); }
.docs-empty { text-align: center; color: var(--muted); padding: 40px; }

/* lock badge for purchase-required docs */
.doc-lock { color: var(--muted-2); font-size: 18px; width: 44px; height: 44px; display: grid; place-items: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  padding: 20px 24px; font-size: 16px; font-weight: 600; font-family: 'Space Grotesk'; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: .3s; color: var(--secondary); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 60px 0; }
.cta-inner {
  background: var(--grad); border-radius: 26px; padding: 56px 32px; position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -30px var(--ring);
}
.cta-inner::after {
  content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 55%);
}
.cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); position: relative; }
.cta-inner p { color: rgba(255,255,255,.9); font-size: 17px; margin: 12px 0 26px; position: relative; }
.cta-inner .btn { position: relative; background: #fff; color: var(--blue-700); }
.cta-inner .btn:hover { transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-grid p { color: var(--muted-2); font-size: 13.5px; margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 13.5px; }
.footer-links a:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-wrap { padding: 48px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
}
.card h2 { font-size: 22px; margin-bottom: 6px; }
.card .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: 11px; border: 1px solid var(--border);
  background: var(--bg-2); color: var(--text); font-family: inherit; font-size: 15px; transition: .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--ring); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pay-tabs { display: flex; gap: 10px; margin-bottom: 22px; }
.pay-tab {
  flex: 1; padding: 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-2);
  cursor: pointer; text-align: center; font-weight: 600; font-size: 14px; transition: .2s; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pay-tab.active { border-color: var(--primary); color: var(--text); background: var(--grad-soft); }

/* MP secure fields containers */
.mp-field {
  width: 100%; height: 48px; padding: 0 14px; border-radius: 11px; border: 1px solid var(--border);
  background: var(--bg-2); display: flex; align-items: center;
}

/* order summary */
.summary { position: sticky; top: 96px; }
.summary .plan-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.summary .plan-line .p-name { font-family: 'Space Grotesk'; font-weight: 600; font-size: 17px; }
.summary hr { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.summary .total { display: flex; justify-content: space-between; align-items: baseline; }
.summary .total .v { font-family: 'Space Grotesk'; font-size: 32px; font-weight: 700; }
.summary .feat { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.summary .feat li { font-size: 13.5px; color: var(--muted); display: flex; gap: 8px; }
.summary .feat li .ck { color: var(--secondary); }
.secure-note { display: flex; gap: 8px; align-items: center; color: var(--muted-2); font-size: 12.5px; margin-top: 20px; }

/* pix result */
.pix-box { text-align: center; }
.pix-box img { width: 220px; height: 220px; border-radius: 14px; background: #fff; padding: 10px; }
.pix-copy {
  display: flex; gap: 8px; margin-top: 18px;
}
.pix-copy input {
  flex: 1; font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.pix-status {
  margin-top: 20px; padding: 12px; border-radius: 11px; background: var(--grad-soft);
  border: 1px solid var(--border-2); font-size: 14px; display: flex; gap: 10px; align-items: center; justify-content: center;
}
.spinner {
  width: 16px; height: 16px; border: 2px solid var(--border-2); border-top-color: var(--secondary);
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* alerts */
.alert { padding: 13px 16px; border-radius: 11px; font-size: 14px; margin-bottom: 18px; }
.alert-error { background: rgba(255,80,80,.12); border: 1px solid rgba(255,80,80,.3); color: #ff9b9b; }
.alert-ok { background: rgba(46,204,113,.12); border: 1px solid rgba(46,204,113,.3); color: #7ee2a8; }

/* success page */
.success-hero { text-align: center; padding: 70px 0; max-width: 620px; margin: 0 auto; }
.success-hero .check {
  width: 88px; height: 88px; border-radius: 50%; background: var(--grad); margin: 0 auto 26px;
  display: grid; place-items: center; color: #fff; font-size: 44px; box-shadow: 0 20px 50px -14px var(--ring);
  animation: pop .5s cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop { 0% { transform: scale(0); } }
.license-key-box {
  background: var(--panel); border: 1px dashed var(--secondary); border-radius: 16px; padding: 26px; margin: 30px 0;
}
.license-key-box .lk {
  font-family: 'JetBrains Mono', monospace; font-size: clamp(20px, 4vw, 30px); font-weight: 700; letter-spacing: 2px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features-grid, .plans-grid { grid-template-columns: 1fr; }
  .plan.highlight { order: -1; }
  .docs-list { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--panel); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 18px;
  }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PREMIUM ENHANCEMENT PACK  (aditivo — sobrescreve via cascata)
   Ajustes: logo real, botões laranja animados, accent colorido,
   cards de plano com hover premium, badge "Mais vendido" laranja.
   ============================================================ */

/* ---- Logo real no nav (corrige o "CS" quebrado) ---- */
.brand .logo-mark {
  width: 42px; height: 42px; border-radius: 12px; object-fit: cover;
  background: transparent; box-shadow: 0 8px 22px -6px rgba(30,111,240,.5);
  flex: none; display: block; padding: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.brand:hover .logo-mark { transform: rotate(-5deg) scale(1.08); box-shadow: 0 12px 28px -6px rgba(247,148,29,.55); }

/* ---- Base do botão: permite o efeito de brilho ---- */
.btn { position: relative; overflow: hidden; isolation: isolate;
  transition: transform .28s cubic-bezier(.34,1.5,.5,1), box-shadow .3s, border-color .3s, background .3s; }

/* ---- Botão primário: LARANJA + brilho deslizante + elevação ---- */
.btn-primary {
  background: linear-gradient(135deg, #ff9d33 0%, #f7941d 46%, #ef6c0a 100%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(247,148,29,.6), inset 0 1px 0 rgba(255,255,255,.28);
  text-shadow: 0 1px 2px rgba(120,55,0,.35);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,.5) 50%, transparent 78%);
  transform: translateX(-130%); transition: transform .65s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 20px 46px -12px rgba(247,148,29,.78), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn-primary:hover::before { transform: translateX(130%); }
.btn-primary:active { transform: translateY(-1px) scale(.99); }

/* pulso suave de destaque no CTA do topo */
.nav-right .btn-primary { animation: ctaGlow 3.6s ease-in-out infinite; }
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 12px 30px -10px rgba(247,148,29,.55), inset 0 1px 0 rgba(255,255,255,.28); }
  50%     { box-shadow: 0 16px 40px -10px rgba(247,148,29,.85), inset 0 1px 0 rgba(255,255,255,.32); }
}

/* ---- Botão fantasma: hover com toque laranja ---- */
.btn-ghost:hover { border-color: rgba(247,148,29,.55); color: var(--text); transform: translateY(-2px); }

/* ---- Accent do hero: gradiente vivo e animado (WhatsApp ganha cor) ---- */
.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue-500) 0%, #5aa6ff 36%, var(--orange) 92%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: accentFlow 7s linear infinite;
}
@keyframes accentFlow { to { background-position: 220% center; } }

/* ---- Pixels do hero: alternância azul/laranja (mais cor) ---- */
.pixels i:nth-child(3n)   { background: var(--orange); }
.pixels i:nth-child(3n+2) { background: var(--blue-500); }

/* ---- Feature cards: ícone reage no hover ---- */
.feature-icon { transition: transform .35s cubic-bezier(.34,1.56,.64,1), color .3s, border-color .3s; }
.feature-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.1) rotate(-4deg);
  color: var(--orange); border-color: rgba(247,148,29,.45);
}

/* ---- Cards de plano: hover premium (elevação, escala, aura) ---- */
.plan {
  transition: transform .4s cubic-bezier(.34,1.4,.5,1), box-shadow .4s, border-color .4s;
  will-change: transform;
}
.plan::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 90% at 50% 0%, rgba(247,148,29,.12), transparent 62%);
  opacity: 0; transition: opacity .4s;
}
.plan:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 34px 74px -30px rgba(0,0,0,.62);
  border-color: rgba(247,148,29,.45);
}
.plan:hover::after { opacity: 1; }
.plan ul li .ck { transition: transform .25s; }
.plan:hover ul li .ck { transform: scale(1.12); }

/* entrada escalonada dos cards */
.plans-grid .plan:nth-child(1) { transition-delay: .04s; }
.plans-grid .plan:nth-child(2) { transition-delay: .14s; }
.plans-grid .plan:nth-child(3) { transition-delay: .24s; }
.features-grid .feature-card:nth-child(2) { transition-delay: .08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: .16s; }
.features-grid .feature-card:nth-child(5) { transition-delay: .08s; }
.features-grid .feature-card:nth-child(6) { transition-delay: .16s; }

/* ---- Plano em destaque: borda laranja + halo pulsante ---- */
.plan.highlight {
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, var(--orange) 0%, #ffb457 45%, var(--blue-500) 120%) border-box;
  border: 1.5px solid transparent;
  animation: haloPulse 3.6s ease-in-out infinite;
}
.plan.highlight:hover { transform: translateY(-14px) scale(1.03); }
@keyframes haloPulse {
  0%,100% { box-shadow: 0 24px 66px -30px rgba(247,148,29,.5); }
  50%     { box-shadow: 0 30px 82px -26px rgba(247,148,29,.78); }
}

/* ---- Badge "Mais vendido": LARANJA + flutuação ---- */
.plan .badge {
  background: linear-gradient(135deg, #ff9d33 0%, #f7941d 55%, #ef6c0a 100%);
  color: #fff; box-shadow: 0 10px 24px -6px rgba(247,148,29,.7);
  text-shadow: 0 1px 2px rgba(120,55,0,.3);
}
.plan.highlight .badge { animation: badgeFloat 2.8s ease-in-out infinite; }
@keyframes badgeFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-3px); }
}

/* ---- Preço do plano em destaque com leve gradiente ---- */
.plan.highlight .price .val {
  background: linear-gradient(120deg, var(--text), #ffd9a8);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}

/* ---- Doc download vira laranja no hover ---- */
.doc-dl:hover { background: linear-gradient(135deg, #ff9d33, #ef6c0a); box-shadow: 0 12px 26px -8px rgba(247,148,29,.6); }

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .plan.highlight, .plan.highlight .badge, .hero h1 .accent, .nav-right .btn-primary { animation: none !important; }
}

/* ============================================================
   FIX CTA + DRAG (aditivo)
   ============================================================ */

/* CTA band: o overlay ::after estava por cima do botão e bloqueava o clique */
.cta-inner::after { pointer-events: none; }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner .btn {
  position: relative; z-index: 2; font-weight: 700;
  box-shadow: 0 16px 34px -12px rgba(0,0,0,.45); overflow: hidden;
}
.cta-inner .btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(247,148,29,.35) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .6s ease;
}
.cta-inner .btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 44px -14px rgba(0,0,0,.55); }
.cta-inner .btn:hover::before { transform: translateX(130%); }

/* ---- Voltar para conta no menu mobile + barra de rolagem invisível nas navegações ---- */
.nav-acc-only { display: none; }
.nav-links { scrollbar-width: none; -ms-overflow-style: none; }
.nav-links::-webkit-scrollbar { display: none; width: 0; height: 0; }
@media (max-width: 720px) {
  .nav-acc-only { display: block; color: #f7941d; font-weight: 700; border-top: 1px solid var(--border); padding-top: 16px; }
  .nav-acc-only + .nav-acc-only { border-top: 0; padding-top: 0; }
}
