:root {
  --bg: #0b1020;
  --bg-alt: #141a33;
  --card: #1c2440;
  --accent: #4fd1c5;
  --accent-soft: rgba(79, 209, 197, 0.12);
  --text: #f7fafc;
  --muted: #a0aec0;
  --border: #2d3748;
  --danger: #f56565;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 14px;
  --radius-pill: 999px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a2540 0, #050814 55%, #020308 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
}

.shell {
  width: 100%;
  max-width: 960px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px 32px;
  position: relative;
  overflow: hidden;
}

.shell::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 209, 197, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.75));
}

.brand-text h1 {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.badge-lgpd {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(129, 230, 217, 0.5);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(56, 189, 248, 0.06));
  color: #e6fffa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.card {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(30, 64, 175, 0.18), transparent 55%),
    var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(148, 163, 184, 0.18);
  pointer-events: none;
  mix-blend-mode: screen;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.card-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.section-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 10px;
  margin-bottom: 10px;
}

.info-block {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 10px 11px;
}

.info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 13px;
  line-height: 1.4;
}

.info-value strong {
  font-weight: 600;
}

.highlight {
  background: var(--accent-soft);
  border-radius: 10px;
  border: 1px solid rgba(45, 212, 191, 0.5);
  padding: 9px 11px;
  font-size: 12px;
  color: #e6fffa;
  margin-bottom: 8px;
}

.highlight span {
  font-weight: 600;
  color: var(--accent);
}

.list {
  margin: 6px 0 4px;
  padding-left: 16px;
  font-size: 12px;
  color: var(--muted);
}

.list li {
  margin-bottom: 3px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.8);
}

.tag.accent {
  border-color: rgba(45, 212, 191, 0.8);
  color: #e6fffa;
  background: rgba(15, 118, 110, 0.35);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.6), transparent);
  margin: 10px 0 8px;
}

.small-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.danger-note {
  font-size: 11px;
  color: var(--danger);
  margin-top: 4px;
}

footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
  font-size: 11px;
  color: var(--muted);
  align-items: start;
}

.footer-left span,
.footer-right span {
  display: block;
}

.footer-right {
  text-align: left;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 150px;
  text-align: right;
}

.link-muted {
  color: var(--muted);
  text-decoration: none;
}

.link-muted:hover {
  color: var(--accent);
}

.footer-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: right;
}

.footer-button:hover {
  color: var(--accent);
}

.copy-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
}

.copy-btn {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 10px;
  padding: 3px 8px;
  cursor: pointer;
}

.copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.copy-status {
  min-width: 70px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: none;
  width: min(420px, calc(100vw - 36px));
  padding: 18px;
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cookie-button {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
}

.cookie-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #04111f;
  font-weight: 700;
}

.cookie-preferences {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.cookie-preferences.is-visible {
  display: block;
}

.cookie-option {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.cookie-option input {
  margin-top: 3px;
}

.cookie-option strong {
  color: var(--text);
}

.mt-8 {
  margin-top: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-right,
  .footer-actions {
    text-align: left;
  }

  .footer-actions {
    align-items: flex-start;
  }
}

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

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}
