/* ============================================================
   NOSSANET — Design System (idêntico ao site de referência)
   Fontes: Manrope (texto) + Space Grotesk (títulos)
   ============================================================ */
:root {
  --primary: #57ff95;
  --primary-fg: #04150d;
  --background: #060d09;
  --surface-deep: #040906;
  --surface-raised: #12241a;
  --card: #0d1c13;
  --border: #2a4a38;
  --border-soft: rgba(255, 255, 255, 0.10);
  --foreground: #f2f7f4;
  --muted: #163023;
  --muted-fg: #93b3a2;
  --shadow-neon: 0 0 24px rgba(87, 255, 149, 0.28);
  --radius: 10px;
  --radius-lg: 14px;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary); color: var(--primary-fg); }
img { max-width: 100%; }

/* ---------- Fundos ---------- */
.bg-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .30;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 90%);
  mask-image: linear-gradient(180deg, black 0%, transparent 90%);
}
.glow-circle {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(87, 255, 149, 0.10); filter: blur(90px); pointer-events: none;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Topbar + Header ---------- */
.topbar {
  background: var(--surface-deep); border-bottom: 1px solid var(--border);
  text-align: center; padding: 8px 14px;
  font-size: .75rem; font-weight: 600; color: var(--muted-fg);
  letter-spacing: .02em;
}
.topbar b { color: var(--primary); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 13, 9, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-in {
  max-width: 1180px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--foreground); }
.logo-badge {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), #1f8f4e);
  box-shadow: var(--shadow-neon);
}
.logo-badge img { width: 26px; height: 26px; border-radius: 6px; }
.logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.logo-name .net { color: var(--primary); }
.logo-sub { display: block; font-family: var(--font-body); font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--muted-fg); margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  color: var(--muted-fg); text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: color .15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 14px; cursor: pointer;
  color: var(--primary); font-family: var(--font-body); font-weight: 700; font-size: .85rem;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 800; font-size: .85rem;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-neon); }
.btn-outline { background: var(--card); color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .78rem; }
.btn-lg { padding: 16px 30px; font-size: .9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--surface-deep); }
.hero .glow-circle { right: -80px; top: 40px; }
.hero-in {
  position: relative; display: grid; gap: 30px; align-items: center;
  grid-template-columns: 1.05fr .95fr;
  max-width: 1180px; margin: 0 auto; padding: 56px 20px 64px;
  min-height: calc(100vh - 9.5rem);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  border: 1px solid rgba(87, 255, 149, 0.30); background: rgba(87, 255, 149, 0.10);
  color: var(--primary); border-radius: 999px; padding: 7px 14px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem); line-height: 1.06; letter-spacing: -.02em;
}
.hero h1 .hl { color: var(--primary); }
.hero .sub { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.65; margin: 18px 0 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; color: var(--muted-fg); font-size: .85rem; font-weight: 600; }
.chip::before { content: "✓"; color: var(--primary); font-weight: 800; }
.hero-mascot { position: relative; display: flex; justify-content: center; }
.hero-mascot img {
  max-height: 560px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(87, 255, 149, 0.30));
  animation: float-mascot 5s ease-in-out infinite;
}
@keyframes float-mascot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes signal-pulse { 0%, 100% { opacity: .3; transform: scale(.96); } 50% { opacity: .8; transform: scale(1.03); } }

/* ---------- Mascote falando ---------- */
.mascot-speech {
  max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.mascot-speech img { width: 130px; flex-shrink: 0; animation: float-mascot 5s ease-in-out infinite; }
.speech-bubble h3 { font-family: var(--font-display); font-size: 1.15rem; }
.speech-bubble h3 .hl { color: var(--primary); }
.speech-bubble p { color: var(--muted-fg); font-size: .95rem; margin-top: 4px; }

/* ---------- Seções ---------- */
section { padding: 76px 20px; }
.sec-tag { color: var(--primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; display: block; margin-bottom: 10px; }
.sec-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem); letter-spacing: -.01em; line-height: 1.12;
}
.sec-sub { color: var(--muted-fg); max-width: 640px; margin: 14px auto 0; line-height: 1.65; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ---------- Planos ---------- */
.plans-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.plans-head .link-compare { color: var(--primary); font-weight: 700; font-size: .9rem; text-decoration: none; }
.plans-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); max-width: 1180px; margin: 0 auto; }
.plan-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plan-card:hover { transform: translateY(-4px); border-color: rgba(87, 255, 149, 0.5); }
.plan-card.featured { border: 1.5px solid var(--primary); background: rgba(87, 255, 149, 0.10); box-shadow: var(--shadow-neon); }
.plan-kick { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-fg); margin-bottom: 12px; }
.plan-card.featured .plan-kick { color: var(--primary); }
.plan-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.plan-speed { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 2px; }
.plan-speed .num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.plan-speed .unit { font-size: 1rem; font-weight: 800; text-transform: uppercase; color: var(--primary); letter-spacing: .1em; }
.plan-up { color: var(--muted-fg); font-size: .85rem; margin-bottom: 18px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 18px; }
.plan-price .cur { font-size: 1rem; font-weight: 700; color: var(--muted-fg); }
.plan-price .int { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; letter-spacing: -.02em; }
.plan-price .cents { color: var(--muted-fg); font-weight: 600; font-size: .95rem; }
.plan-feats { list-style: none; display: grid; gap: 10px; margin: 6px 0 24px; }
.plan-feats li { display: flex; gap: 10px; align-items: center; font-size: .92rem; color: var(--foreground); }
.plan-feats li::before {
  content: "✓"; width: 20px; height: 20px; flex-shrink: 0; border-radius: 6px;
  background: rgba(87, 255, 149, 0.12); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800;
}
.plan-cta { margin-top: auto; width: 100%; }
.plan-flag {
  position: absolute; top: -13px; left: 24px;
  background: var(--primary); color: var(--primary-fg);
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-neon);
}

/* ---------- Por que escolher (gap-px grid) ---------- */
.why-flex { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; max-width: 1180px; margin: 0 auto; }
.why-img { display: flex; justify-content: center; }
.why-img img { max-height: 420px; object-fit: contain; animation: signal-pulse 3s ease-in-out infinite; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.why-card { background: var(--card); padding: 26px 24px; }
.why-ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  background: rgba(87, 255, 149, 0.10); border: 1px solid rgba(87, 255, 149, 0.30);
}
.why-card h3 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 6px; }
.why-card p { color: var(--muted-fg); font-size: .9rem; line-height: 1.55; }

/* ---------- Painel CTA (cobertura home) ---------- */
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-raised); padding: 70px 24px;
}
.cta-panel .bg-grid { opacity: .18; }
.cta-panel .glow-circle { left: 50%; top: -120px; transform: translateX(-50%); }
.cta-panel > * { position: relative; }
.cta-panel .btn { margin-top: 28px; }

/* ---------- Formulário ---------- */
.form-card {
  max-width: 780px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px clamp(20px, 4vw, 40px);
}
.form-card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.form-card-head h3 { font-family: var(--font-display); font-size: 1.15rem; }
.form-card-head .mini-tag {
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--primary); border: 1px solid rgba(87,255,149,.3); border-radius: 999px; padding: 5px 12px;
  background: rgba(87,255,149,.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-fg); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
  color: var(--foreground); font-family: var(--font-body); font-size: .95rem; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(87,255,149,.15); }
.field select option { background: var(--surface-deep); }
.coverage-result {
  display: none; margin-top: 20px; padding: 18px 20px; border-radius: var(--radius);
  font-weight: 600; line-height: 1.5; align-items: center; gap: 14px;
}
.coverage-result.show { display: flex; animation: popIn .35s ease; }
.coverage-result.ok { background: rgba(87,255,149,.1); border: 1px solid rgba(87,255,149,.45); color: #c9ffe0; }
.coverage-result.no { background: rgba(255,170,60,.07); border: 1px solid rgba(255,170,60,.35); color: #ffe3b8; }
@keyframes popIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }

/* ---------- Suporte ---------- */
.help-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.help-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; max-width: 980px; margin: 44px auto 0;
}
.help-card { background: var(--card); padding: 28px 24px; }
.help-ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: rgba(87,255,149,.10); border: 1px solid rgba(87,255,149,.30);
}
.help-card h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.help-card a { color: var(--primary); font-size: .85rem; font-weight: 700; text-decoration: none; }
.help-card a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item[open] { border-color: rgba(87, 255, 149, 0.45); }
.faq-item summary {
  cursor: pointer; padding: 17px 20px; font-weight: 700; font-size: .95rem;
  list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.35rem; font-weight: 400; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; color: var(--muted-fg); line-height: 1.6; font-size: .92rem; }

/* ---------- Ajuda CTA final ---------- */
.help-cta {
  max-width: 780px; margin: 60px auto 0; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-raised); padding: 44px 26px;
}
.help-cta h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.help-cta p { color: var(--muted-fg); margin-bottom: 22px; }

/* ---------- Instagram ---------- */
.insta-box {
  max-width: 620px; margin: 44px auto 0; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 42px 28px;
}
.insta-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), #1f8f4e);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--primary-fg);
  box-shadow: var(--shadow-neon);
}
.insta-handle { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.insta-box p { color: var(--muted-fg); font-size: .93rem; margin-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface-deep); padding: 56px 20px 28px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto; display: grid; gap: 36px;
  grid-template-columns: 1.3fr 1fr 1.3fr; padding-bottom: 34px; border-bottom: 1px solid var(--border-soft);
}
.footer-tagline { font-family: var(--font-display); font-size: 1.05rem; margin: 16px 0 0; }
.footer-tagline b { color: var(--primary); }
.footer-col h4 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--foreground); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted-fg); text-decoration: none; font-size: .92rem; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { color: var(--muted-fg); font-size: .92rem; line-height: 1.6; margin-bottom: 18px; }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  color: var(--muted-fg); font-size: .82rem;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-neon); transition: transform .15s; text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: var(--primary-fg); }

/* ---------- Área do cliente ---------- */
.auth-wrap {
  min-height: calc(100vh - 8rem); display: grid; place-items: center;
  padding: 60px 20px; position: relative; overflow: hidden;
}
.auth-in {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: 1060px; width: 100%;
}
.auth-left h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1; }
.auth-left h1 .hl { color: var(--primary); }
.auth-left p { color: var(--muted-fg); margin-top: 16px; line-height: 1.65; max-width: 420px; }
.demo-pill {
  display: inline-flex; margin-top: 22px; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted-fg);
  border: 1px dashed var(--border); border-radius: 999px; padding: 6px 14px;
}
.auth-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.auth-card .mascot-mini { width: 90px; margin: 0 auto 10px; display: block; }
.auth-card h2 { font-family: var(--font-display); text-align: center; font-size: 1.3rem; }
.auth-card .hint { text-align: center; color: var(--muted-fg); font-size: .88rem; margin: 6px 0 24px; }
.auth-card .field { margin-bottom: 14px; }
.auth-links { display: flex; justify-content: space-between; margin-top: 16px; font-size: .84rem; }
.auth-links a { color: var(--primary); text-decoration: none; }
.auth-out { text-align: center; margin-top: 20px; color: var(--muted-fg); font-size: .88rem; }
.auth-out a { color: var(--primary); font-weight: 700; text-decoration: none; }

/* ---------- 404 ---------- */
.notfound {
  min-height: calc(100vh - 8rem); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px 20px;
}
.notfound img { width: min(260px, 60vw); animation: float-mascot 5s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(87,255,149,.25)); }
.notfound h1 { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 5rem); letter-spacing: -.02em; color: var(--primary); line-height: 1; margin-top: 10px; }
.notfound h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 10px 0 8px; }
.notfound p { color: var(--muted-fg); max-width: 420px; margin-bottom: 26px; }

/* ---------- Admin ---------- */
.admin-layout { display: flex; min-height: calc(100vh - 4.5rem); }
.admin-sidebar { width: 240px; flex-shrink: 0; background: var(--surface-deep); border-right: 1px solid var(--border); padding: 22px 14px; }
.admin-sidebar h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-fg); margin: 16px 10px 8px; }
.admin-sidebar a { display: flex; align-items: center; gap: 10px; color: var(--muted-fg); text-decoration: none; padding: 10px 12px; border-radius: var(--radius); font-size: .88rem; transition: background .15s, color .15s; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(87,255,149,.08); color: var(--primary); }
.admin-main { flex: 1; padding: 30px clamp(16px, 3.5vw, 40px); }
.admin-main h1 { font-family: var(--font-display); font-size: 1.5rem; }
.admin-main .page-sub { color: var(--muted-fg); margin-bottom: 26px; font-size: .92rem; }
.kpis { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); margin-bottom: 28px; }
.kpi { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.kpi .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-fg); font-weight: 800; }
.kpi .val { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; margin-top: 6px; }
.kpi .trend { font-size: .76rem; color: var(--primary); margin-top: 4px; font-weight: 700; }
.kpi .trend.neg { color: #ff7a7a; }
.panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 20px; }
.panel h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 160px; padding-top: 10px; }
.bars span { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--primary), rgba(87,255,149,.25)); min-height: 8%; animation: growBar .8s ease both; }
@keyframes growBar { from { transform: scaleY(0); transform-origin: bottom; } }
.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.tbl th { text-align: left; color: var(--primary); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.tbl td { padding: 12px; border-bottom: 1px solid var(--border-soft); color: var(--muted-fg); }
.tbl tr:hover td { background: rgba(87,255,149,.03); }
.tag { display: inline-flex; padding: 4px 12px; border-radius: 999px; font-size: .7rem; font-weight: 800; }
.tag.ok { background: rgba(87,255,149,.12); color: var(--primary); }
.tag.warn { background: rgba(255,180,60,.12); color: #ffc97a; }
.tag.err { background: rgba(255,90,90,.12); color: #ff9a9a; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mascot img, .mascot-speech img, .why-img img, .notfound img { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; min-height: 0; padding-top: 44px; }
  .hero-mascot img { max-height: 380px; }
  .why-flex { grid-template-columns: 1fr; }
  .why-img img { max-height: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .auth-in { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6, 13, 9, 0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 10px 20px 18px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 6px; border-bottom: 1px solid var(--border-soft); font-size: 1rem; }
  .main-nav .btn { margin-top: 14px; }
  .admin-sidebar {
    position: fixed; z-index: 60; top: 0; bottom: 0; left: -260px;
    transition: left .25s; box-shadow: 20px 0 60px rgba(0,0,0,.55);
  }
  .admin-sidebar.open { left: 0; }
  .mascot-speech { flex-direction: column; text-align: center; }
  .plans-head { flex-direction: column; align-items: flex-start; }
}
