/* Página de exclusão de conta — Lumin Run (autocontida) */
:root {
  --bg: #060a10;
  --surface: #111823;
  --surface-2: #161f2b;
  --surface-3: #1c2634;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f8fa;
  --muted: #a6afb8;
  --soft: #7d8793;
  --volt: #dfff00;
  --cyan: #00e5cc;
  --danger: #ff5c5c;
  --danger-soft: rgba(255, 92, 92, 0.12);
  --success: #5dffb0;
  --warn: #ffd166;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1080px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 255, 0, 0.12), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(0, 229, 204, 0.08), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(255, 92, 92, 0.06), transparent 40rem),
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #fff; font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 16, 0.88);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(223, 255, 0, 0.25);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: 0.02em; }
.brand-text small { color: var(--muted); font-size: 12px; font-weight: 500; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover {
  color: var(--volt);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.site-nav a.active {
  color: var(--danger);
  background: var(--danger-soft);
}

/* Layout */
.page-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section-block {
  margin-bottom: 28px;
}
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.section-desc {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 15px;
  max-width: 720px;
}

/* Hero */
.hero {
  padding: clamp(40px, 7vw, 72px) 0 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--danger-soft);
  border: 1px solid rgba(255, 92, 92, 0.28);
  color: #ffb4b4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 820px;
}
.hero h1 em {
  font-style: normal;
  color: var(--volt);
}
.hero-lead {
  font-size: clamp(16px, 2vw, 18px);
  color: #d6dee6;
  max-width: 760px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, #ff5c5c, #e83a6b);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 92, 92, 0.35);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}
.btn-secondary:hover { color: var(--volt); }

/* Compliance strip */
.compliance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.compliance-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.compliance-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(223, 255, 0, 0.12);
  border: 1px solid rgba(223, 255, 0, 0.3);
  color: var(--volt);
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 14px;
}
.compliance-card h2 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 800;
}
.compliance-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Panel */
.panel {
  background: linear-gradient(180deg, rgba(22, 31, 43, 0.95), rgba(14, 19, 27, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.steps-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--volt), #b8e600);
  color: #061008;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.step-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.step-body p {
  margin: 0 0 8px;
  color: #d0d8e0;
  font-size: 15px;
}
.step-body p:last-child { margin-bottom: 0; }
.step-path {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 229, 204, 0.08);
  border: 1px solid rgba(0, 229, 204, 0.2);
  color: #b8fff5;
  font-size: 13px;
  font-weight: 600;
}

/* Data grid */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.data-card {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}
.data-card.deleted {
  background: linear-gradient(180deg, rgba(255, 92, 92, 0.08), rgba(255, 92, 92, 0.03));
  border-color: rgba(255, 92, 92, 0.22);
}
.data-card.retained {
  background: linear-gradient(180deg, rgba(0, 229, 204, 0.07), rgba(0, 229, 204, 0.02));
  border-color: rgba(0, 229, 204, 0.2);
}
.data-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
}
.data-card.deleted h3 { color: #ff9b9b; }
.data-card.retained h3 { color: #7dffe8; }
.data-card .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}
.data-card.deleted .tag {
  background: rgba(255, 92, 92, 0.18);
  color: #ffb4b4;
}
.data-card.retained .tag {
  background: rgba(0, 229, 204, 0.15);
  color: #9dfff0;
}
.data-card > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
}
.data-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.data-card li {
  position: relative;
  padding-left: 22px;
  color: #d4dce4;
  font-size: 14px;
  line-height: 1.45;
}
.data-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.data-card.deleted li::before { background: var(--danger); }
.data-card.retained li::before { background: var(--cyan); }

/* Retention table */
.retention-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.retention-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.retention-table th,
.retention-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.retention-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.retention-table td:first-child { font-weight: 700; color: #fff; min-width: 180px; }
.retention-table tr:last-child td { border-bottom: 0; }

.callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(223, 255, 0, 0.07);
  border: 1px solid rgba(223, 255, 0, 0.22);
  color: #e8edf2;
  font-size: 14px;
}

/* Form */
.form-grid {
  display: grid;
  gap: 16px;
}
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.field label .req { color: var(--danger); }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(223, 255, 0, 0.35);
  border-color: transparent;
}
.consent-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 12px;
  background: var(--danger-soft);
  border: 1px solid rgba(255, 92, 92, 0.22);
  cursor: pointer;
  font-size: 14px;
  color: #d8e0e7;
}
.consent-box input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--danger);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-status {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.form-status.ok { color: var(--success); }
.form-status.err { color: var(--danger); }

/* FAQ */
.faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
.faq details:first-child { border-top: 0; padding-top: 0; }
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  list-style: none;
  font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--volt);
  font-weight: 900;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding: 28px clamp(16px, 4vw, 40px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.site-footer strong { display: block; color: #fff; margin-bottom: 2px; }
.site-footer a {
  color: var(--volt);
  font-weight: 800;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .compliance-strip,
  .data-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav { width: 100%; }
  .steps-list li { grid-template-columns: 1fr; }
  .step-num { width: 36px; height: 36px; font-size: 14px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
