/* ==========================================================================
   Banner de consentimiento de cookies (lector) + página política.
   Paleta NotiBae: oscuro con acento. Additive, no toca estilos existentes.
   ========================================================================== */
.nb-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  background: #0f172a;
  color: #e2e8f0;
  border-top: 3px solid var(--nb-accent, #d4af37);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .35);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}
.nb-cookie-banner[hidden] { display: none; }

.nb-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.nb-cookie-text { flex: 1 1 420px; min-width: 280px; }
.nb-cookie-text p { margin: 0 0 6px; font-size: 13px; line-height: 1.5; }
.nb-cookie-text strong { color: #fff; }
.nb-cookie-sub { color: #94a3b8; font-size: 12px !important; }

.nb-cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nb-cookie-link {
  color: #93c5fd;
  text-decoration: underline;
  font-size: 13px;
  white-space: nowrap;
}
.nb-cookie-form { display: flex; gap: 10px; }
.nb-cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.nb-cookie-btn--ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid #475569;
}
.nb-cookie-btn--ghost:hover { background: rgba(255, 255, 255, .06); }
.nb-cookie-btn--accept {
  background: var(--nb-accent, #d4af37);
  color: #0f172a;
}
.nb-cookie-btn--accept:hover { filter: brightness(1.06); }

@media (max-width: 720px) {
  .nb-cookie-inner { padding: 14px 16px; }
  .nb-cookie-actions { width: 100%; justify-content: space-between; }
  .nb-cookie-form { flex: 1; justify-content: flex-end; }
}

/* --------- Página política de cookies --------- */
.nb-legal-page { max-width: 820px; margin: 0 auto; padding: 32px 20px 64px; }
.nb-legal-header h1 { margin: 8px 0 4px; }
.nb-legal-meta { color: #64748b; font-size: 13px; }
.nb-legal-body h2 { margin-top: 28px; font-size: 18px; }
.nb-legal-body p { line-height: 1.6; }
.nb-legal-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.nb-legal-table th, .nb-legal-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}
.nb-legal-table thead th { background: #f8fafc; }
.nb-legal-consent { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
