/* ===================================================
   New Hits Records - Magenta Brand Hotsite + System
   =================================================== */

:root {
  --magenta-1: #d91c5c;
  --magenta-2: #a8104a;
  --magenta-3: #76032a;
  --magenta-glow: rgba(217, 28, 92, 0.4);
  --cyan: #26a9e1;

  --bg-0: #0a0a0c;
  --bg-1: #111114;
  --bg-2: #18181d;
  --bg-3: #22222a;

  --text-0: #ffffff;
  --text-1: #e8e8ee;
  --text-2: #b0b0bc;
  --text-3: #6b6b78;

  --border-1: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --font-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--magenta-glow);

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* =================== HEADER =================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-spacer {
  display: block;
  width: 1px;
  height: 1px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 auto var(--space-16);
  position: relative;
  z-index: 2;
  animation: heroLogoFadeIn 0.9s ease-out both;
}

@media (max-width: 720px) {
  .hero-logo-wrap { margin-bottom: var(--space-10); }
}

.hero-logo {
  display: block;
  height: clamp(80px, 12vw, 130px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(217, 28, 92, 0.35));
}

.hero-logo-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--magenta-1);
  margin-top: -32px;
  padding-right: 50px;
  text-shadow: 0 0 12px rgba(217, 28, 92, 0.4);
}

@media (max-width: 720px) {
  .hero-logo-sub { margin-top: -20px; padding-right: 32px; }
}

@keyframes heroLogoFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .hero-logo { height: 70px; }
  .hero-logo-wrap { margin-bottom: var(--space-4); }
  .hero-logo-sub { font-size: 10px; letter-spacing: 0.36em; }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 10px;
  margin-left: 4px;
}

.brand-sub {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--magenta-1);
}

@media (max-width: 720px) {
  .brand-logo { height: 32px; }
  .brand-text { display: none; }
}

.nav {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s ease;
}

.nav a:not(.btn):hover {
  color: var(--text-0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta-1), var(--magenta-3));
  color: var(--text-0);
  box-shadow: 0 4px 20px var(--magenta-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--magenta-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-0);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-2);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--header-h) - var(--space-8)) 0 var(--space-20);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(217, 28, 92, 0.35), transparent 70%);
  filter: blur(60px);
  animation: float 12s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(118, 3, 42, 0.4), transparent 70%);
  filter: blur(80px);
  animation: float 14s ease-in-out infinite reverse;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero-inner > .hero-eyebrow,
.hero-inner > .hero-title,
.hero-inner > .hero-lead,
.hero-inner > .hero-cta {
  text-align: left;
}

.hero-inner > .hero-eyebrow,
.hero-inner > .hero-title,
.hero-inner > .hero-lead,
.hero-inner > .hero-cta {
  display: block;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--magenta-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: var(--space-6);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--magenta-1), #ff5b8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* =================== SECTIONS =================== */

.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-1);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-16);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta-1);
  margin-bottom: var(--space-3);
}

.eyebrow-light { color: rgba(255, 255, 255, 0.7); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 640px;
  margin: var(--space-4) auto 0;
  line-height: 1.55;
}

/* =================== MANIFESTO =================== */

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-text p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.manifesto-text strong {
  color: var(--magenta-1);
  font-weight: 700;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.stat {
  padding: var(--space-6);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}

.stat:hover {
  border-color: var(--magenta-1);
  transform: translateY(-2px);
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--magenta-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =================== PILLARS =================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.pillar {
  padding: var(--space-8);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.pillar:hover {
  border-color: rgba(217, 28, 92, 0.4);
  transform: translateY(-4px);
  background: var(--bg-3);
}

.pillar-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--magenta-1);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* =================== FOUNDERS =================== */

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.founder {
  padding: var(--space-10);
  background: linear-gradient(160deg, rgba(217, 28, 92, 0.08), transparent 60%);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-0);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* =================== CTA =================== */

.section-cta {
  padding: var(--space-16) 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--magenta-1), var(--magenta-3));
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-0);
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 520px;
}

.cta-actions { position: relative; z-index: 1; }

.cta-card .btn-primary {
  background: var(--text-0);
  color: var(--magenta-3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-card .btn-primary:hover {
  background: var(--text-0);
  transform: translateY(-2px);
}

/* =================== CONTATO =================== */

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.contato-card {
  display: block;
  padding: var(--space-8);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}

.contato-card:hover {
  border-color: var(--magenta-1);
  transform: translateY(-2px);
}

.contato-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.contato-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-0);
}

/* =================== FOOTER =================== */

.footer {
  border-top: 1px solid var(--border-1);
  padding: var(--space-10) 0;
  background: var(--bg-1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--text-1);
}

.footer-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.footer-logo-sub {
  display: block;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--magenta-1);
  margin-top: -14px;
  padding-right: 22px;
  text-shadow: 0 0 6px rgba(217, 28, 92, 0.35);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* =================== AUTH PAGES =================== */

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.auth-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(217, 28, 92, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(118, 3, 42, 0.25), transparent 50%);
  z-index: 0;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: var(--space-12);
  background: rgba(17, 17, 20, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.auth-logo img {
  height: 44px;
  width: 44px;
  border-radius: 8px;
}

.auth-logo .name { font-weight: 800; letter-spacing: 0.06em; font-size: 16px; }
.auth-logo .sub  { font-size: 10px; color: var(--magenta-1); letter-spacing: 0.2em; font-weight: 600; }

.auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: var(--space-2);
}

.auth-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: var(--space-2);
}

.form-hint {
  display: block;
  font-size: 11px;
  color: var(--text-3, #8a8a93);
  margin-top: 6px;
  line-height: 1.4;
}

.about-block {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-bio {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--text-1);
  text-align: center;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  color: var(--text-0);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--magenta-1);
  background: var(--bg-3);
}

.form-textarea { resize: vertical; min-height: 80px; }

.btn-block {
  width: 100%;
}

.alert {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
  font-size: 14px;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.alert-warning {
  background: rgba(217, 28, 92, 0.1);
  border: 1px solid rgba(217, 28, 92, 0.4);
  color: #f7a8c4;
}

.auth-foot {
  margin-top: var(--space-6);
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}

.auth-foot a { color: var(--magenta-1); font-weight: 600; }

/* =================== APP / PAINEL =================== */

.app-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--bg-1);
  border-right: 1px solid var(--border-1);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-1);
  margin-bottom: var(--space-4);
}

.sidebar-brand img { height: 36px; width: 36px; border-radius: 8px; }
.sidebar-brand .name { font-weight: 800; letter-spacing: 0.06em; font-size: 14px; }
.sidebar-brand .sub  { font-size: 9px; color: var(--magenta-1); letter-spacing: 0.2em; font-weight: 600; }

.nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}

.nav-item:hover { background: var(--bg-2); color: var(--text-0); }
.nav-item.active {
  background: linear-gradient(135deg, rgba(217, 28, 92, 0.18), rgba(118, 3, 42, 0.1));
  color: var(--text-0);
  border-left: 2px solid var(--magenta-1);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-1);
}

.sidebar-user {
  font-size: 13px;
  color: var(--text-3);
  padding: var(--space-3);
}

.sidebar-user strong { color: var(--text-1); display: block; margin-bottom: 2px; }

.main-content {
  padding: var(--space-10);
  background: var(--bg-0);
  min-width: 0;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.page-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
}

.page-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 4px;
}

/* =================== KPI CARDS =================== */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.kpi {
  padding: var(--space-6);
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
}

.kpi-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.kpi-value {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
  line-height: 1.1;
}

.kpi-value.magenta { color: var(--magenta-1); }
.kpi-value.cyan { color: var(--cyan); }

.kpi-extra {
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--text-3);
}

/* =================== TABLES =================== */

.table-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-head {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.table-title { font-size: 1rem; font-weight: 700; color: var(--text-0); }

.table-scroll { overflow-x: auto; }

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table.data th,
table.data td {
  padding: 14px var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--border-1);
}

table.data th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-2);
}

table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--bg-2); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-magenta {
  background: rgba(217, 28, 92, 0.15);
  color: var(--magenta-1);
  border: 1px solid rgba(217, 28, 92, 0.3);
}

.badge-cyan {
  background: rgba(38, 169, 225, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(38, 169, 225, 0.3);
}

.badge-mute {
  background: var(--bg-3);
  color: var(--text-2);
}

.empty-state {
  padding: var(--space-16);
  text-align: center;
  color: var(--text-3);
}

.empty-state h3 { color: var(--text-1); font-size: 1.1rem; margin-bottom: var(--space-2); }

/* =================== FORMS / MODAL CARDS =================== */

.card {
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: var(--space-5);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.calc-preview {
  margin-top: var(--space-4);
  padding: var(--space-5);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  font-size: 13px;
}

.calc-preview .row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.calc-preview .row strong { color: var(--magenta-1); }

/* =================== RESPONSIVE =================== */

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-5);
    border-bottom: 1px solid var(--border-1);
  }
  .manifesto-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .cta-card { grid-template-columns: 1fr; padding: var(--space-10); }
  .app-wrap { grid-template-columns: 1fr; }
  .sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-1);
  }
  .main-content { padding: var(--space-6); }
  .row-2, .row-3 { grid-template-columns: 1fr; }
  .section { padding: var(--space-16) 0; }
}

/* =================== CANDIDATURA FORM =================== */

.cand-form {
  max-width: 920px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5) var(--space-6);
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: var(--space-8);
  text-align: center;
}

.form-note {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--text-3);
}

.cand-msg {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.cand-msg.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.cand-msg.err {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.3);
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* =================== SECTION FX (Pra quem é a New Hits) =================== */

.section-fx {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #06060a;
}

.section-fx > .container {
  position: relative;
  z-index: 3;
}

.section-fx-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Grid neon de fundo */
.fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 169, 225, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 169, 225, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 80%);
  animation: gridPan 30s linear infinite;
}

@keyframes gridPan {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

/* Glows neon */
.fx-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.fx-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d91c5c 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: glowFloat1 12s ease-in-out infinite;
}

.fx-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #26a9e1 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
  animation: glowFloat2 14s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(50px, 30px) scale(1.1); opacity: 0.7; }
}

@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(-40px, -20px) scale(1.15); opacity: 0.6; }
}

/* Equalizer (barras) */
.fx-equalizer {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  width: 90%;
  max-width: 700px;
  opacity: 0.55;
}

.fx-equalizer span {
  flex: 1;
  background: linear-gradient(to top, #d91c5c, #26a9e1);
  border-radius: 2px;
  height: var(--h, 50%);
  animation: eqBounce 1.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  box-shadow: 0 0 12px rgba(217, 28, 92, 0.5);
}

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.fx-equalizer span {
  transform-origin: bottom;
}

/* Linha de waveform horizontal */
.fx-wave-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.fx-wave-path {
  animation: waveMove 4s ease-in-out infinite;
}

.fx-wave-path-2 {
  animation: waveMove 6s ease-in-out infinite reverse;
}

@keyframes waveMove {
  0%, 100% { d: path('M0,100 Q150,40 300,100 T600,100 T900,100 T1200,100'); }
  50% { d: path('M0,100 Q150,160 300,100 T600,100 T900,100 T1200,100'); }
}

/* Partículas */
.fx-particles {
  position: absolute;
  inset: 0;
}

.fx-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #26a9e1;
  border-radius: 50%;
  box-shadow: 0 0 12px #26a9e1;
  opacity: 0;
  animation: particleFloat 6s linear infinite;
}

.fx-particles span:nth-child(1)  { left: 10%; top: 80%; animation-delay: 0s; background: #d91c5c; box-shadow: 0 0 12px #d91c5c; }
.fx-particles span:nth-child(2)  { left: 25%; top: 90%; animation-delay: 1s; }
.fx-particles span:nth-child(3)  { left: 40%; top: 85%; animation-delay: 2s; background: #d91c5c; box-shadow: 0 0 12px #d91c5c; }
.fx-particles span:nth-child(4)  { left: 55%; top: 95%; animation-delay: 0.5s; }
.fx-particles span:nth-child(5)  { left: 70%; top: 80%; animation-delay: 3s; }
.fx-particles span:nth-child(6)  { left: 85%; top: 90%; animation-delay: 1.5s; background: #d91c5c; box-shadow: 0 0 12px #d91c5c; }
.fx-particles span:nth-child(7)  { left: 15%; top: 75%; animation-delay: 4s; }
.fx-particles span:nth-child(8)  { left: 35%; top: 88%; animation-delay: 2.5s; }
.fx-particles span:nth-child(9)  { left: 60%; top: 78%; animation-delay: 0.8s; background: #d91c5c; box-shadow: 0 0 12px #d91c5c; }
.fx-particles span:nth-child(10) { left: 80%; top: 82%; animation-delay: 3.5s; }
.fx-particles span:nth-child(11) { left: 5%;  top: 85%; animation-delay: 5s; }
.fx-particles span:nth-child(12) { left: 50%; top: 92%; animation-delay: 1.2s; }
.fx-particles span:nth-child(13) { left: 90%; top: 88%; animation-delay: 4.5s; background: #d91c5c; box-shadow: 0 0 12px #d91c5c; }
.fx-particles span:nth-child(14) { left: 30%; top: 95%; animation-delay: 2.2s; }
.fx-particles span:nth-child(15) { left: 65%; top: 85%; animation-delay: 3.8s; }

@keyframes particleFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { transform: translateY(-400px) scale(0.5); opacity: 0; }
}

@media (max-width: 720px) {
  .fx-equalizer { height: 50px; }
  .fx-glow { filter: blur(50px); }
}

@media (prefers-reduced-motion: reduce) {
  .fx-grid, .fx-glow, .fx-equalizer span, .fx-wave-path, .fx-particles span {
    animation: none;
  }
}

/* =================== HERO FX (Futurista) =================== */

.hero-fx {
  position: relative;
  overflow: hidden;
}

.hero-fx .hero-inner {
  position: relative;
  z-index: 5;
}

.hero-fx-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Chão grid em perspectiva (retro-futurista) */
.hero-grid-floor {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 120%;
  height: 65%;
  background-image:
    linear-gradient(rgba(38, 169, 225, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 28, 92, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(60deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
  animation: floorScroll 8s linear infinite;
}

@keyframes floorScroll {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}

/* Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d91c5c 0%, transparent 65%);
  top: -150px;
  left: -200px;
  opacity: 0.55;
  animation: heroGlow1 14s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #26a9e1 0%, transparent 65%);
  top: 10%;
  right: -150px;
  opacity: 0.45;
  animation: heroGlow2 16s ease-in-out infinite;
}

.hero-glow-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #76032a 0%, transparent 65%);
  bottom: -200px;
  left: 30%;
  opacity: 0.6;
  animation: heroGlow3 18s ease-in-out infinite;
}

@keyframes heroGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 50px) scale(1.15); }
}

@keyframes heroGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 80px) scale(1.1); }
}

@keyframes heroGlow3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.2); }
}

/* Waveform atrás do título */
.hero-wave {
  position: absolute;
  top: 35%;
  left: -5%;
  width: 110%;
  height: 280px;
  opacity: 0.45;
  z-index: 2;
}

.hero-wave-path-1 {
  animation: heroWave 5s ease-in-out infinite;
}
.hero-wave-path-2 {
  animation: heroWave 7s ease-in-out infinite reverse;
}
.hero-wave-path-3 {
  animation: heroWave 9s ease-in-out infinite;
}

@keyframes heroWave {
  0%, 100% { d: path('M0,150 Q175,50 350,150 T700,150 T1050,150 T1400,150'); }
  50% { d: path('M0,150 Q175,250 350,150 T700,150 T1050,150 T1400,150'); }
}

/* Partículas subindo */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  animation: heroParticle 8s linear infinite;
}

.hero-particles span:nth-child(odd)  { background: #26a9e1; box-shadow: 0 0 10px #26a9e1; }
.hero-particles span:nth-child(even) { background: #d91c5c; box-shadow: 0 0 10px #d91c5c; }

.hero-particles span:nth-child(1)  { left: 5%;  animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 12%; animation-delay: 1s; }
.hero-particles span:nth-child(3)  { left: 20%; animation-delay: 2.5s; }
.hero-particles span:nth-child(4)  { left: 28%; animation-delay: 4s; }
.hero-particles span:nth-child(5)  { left: 35%; animation-delay: 0.6s; }
.hero-particles span:nth-child(6)  { left: 42%; animation-delay: 3s; }
.hero-particles span:nth-child(7)  { left: 50%; animation-delay: 5s; }
.hero-particles span:nth-child(8)  { left: 58%; animation-delay: 1.8s; }
.hero-particles span:nth-child(9)  { left: 65%; animation-delay: 6s; }
.hero-particles span:nth-child(10) { left: 72%; animation-delay: 2.2s; }
.hero-particles span:nth-child(11) { left: 80%; animation-delay: 4.5s; }
.hero-particles span:nth-child(12) { left: 88%; animation-delay: 0.4s; }
.hero-particles span:nth-child(13) { left: 95%; animation-delay: 3.5s; }
.hero-particles span:nth-child(14) { left: 8%;  animation-delay: 5.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(15) { left: 25%; animation-delay: 6.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(16) { left: 45%; animation-delay: 7s;   width: 4px; height: 4px; }
.hero-particles span:nth-child(17) { left: 60%; animation-delay: 0.9s; width: 4px; height: 4px; }
.hero-particles span:nth-child(18) { left: 75%; animation-delay: 2.8s; width: 4px; height: 4px; }
.hero-particles span:nth-child(19) { left: 90%; animation-delay: 4.2s; width: 4px; height: 4px; }
.hero-particles span:nth-child(20) { left: 17%; animation-delay: 6.8s; width: 4px; height: 4px; }

@keyframes heroParticle {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 1; transform: translateY(95vh) scale(1); }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(0.6); opacity: 0; }
}

/* Scanline sutil pra dar cara de tela */
.hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 3px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 720px) {
  .hero-glow { filter: blur(60px); }
  .hero-grid-floor { background-size: 50px 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-floor, .hero-glow, .hero-wave-path, .hero-particles span {
    animation: none;
  }
}
