@charset "UTF-8";

/* Ligero para iniciar_sesion.php / registrar.php
   Mantiene header público + cards + formularios + footer + cookies. */

:root {
  color-scheme: dark;
  --bg: #071227;
  --bg-soft: #0d1e3a;
  --surface: rgba(16, 32, 64, 0.9);
  --surface-strong: rgba(20, 39, 76, 0.96);
  --border: rgba(220, 234, 255, 0.16);
  --border-strong: rgba(220, 234, 255, 0.24);
  --text: #eaf3ff;
  --muted: rgba(234, 243, 255, 0.74);
  --primary: #198bff;
  --primary-strong: #0d6fdb;
  --shadow-lg: 0 22px 56px rgba(0, 0, 0, 0.4);

  /* Shell */
  --shell-bg: rgba(5, 13, 28, 0.86);
  --shell-bg-strong: rgba(6, 15, 31, 0.94);
  --shell-surface: rgba(10, 21, 41, 0.78);
  --shell-border: rgba(188, 210, 255, 0.14);
  --shell-text: #edf4ff;
  --shell-muted: rgba(237, 244, 255, 0.72);
  --shell-accent: #2d6dff;
  --shell-accent-strong: #1b52ce;
  --shell-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  --shell-radius: 18px;
  --shell-topbar-height: 66px;
  --shell-max-width: min(1280px, calc(100% - 1rem));
}

html[data-tema="claro"] {
  color-scheme: light;
  --bg: #f2f6ff;
  --bg-soft: #e7eefb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(32, 64, 119, 0.14);
  --border-strong: rgba(32, 64, 119, 0.24);
  --text: #10203f;
  --muted: rgba(16, 32, 63, 0.72);
  --primary: #266cff;
  --primary-strong: #174cb8;
  --shadow-lg: 0 18px 44px rgba(35, 65, 118, 0.14);

  --shell-bg: rgba(255, 255, 255, 0.86);
  --shell-bg-strong: rgba(248, 251, 255, 0.94);
  --shell-surface: rgba(255, 255, 255, 0.84);
  --shell-border: rgba(18, 38, 74, 0.1);
  --shell-text: #0d1b34;
  --shell-muted: rgba(13, 27, 52, 0.66);
  --shell-accent: #2d6dff;
  --shell-accent-strong: #1b52ce;
  --shell-shadow: 0 18px 36px rgba(16, 34, 67, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 760px at 10% 0%, rgba(31, 125, 255, 0.24), transparent 56%),
    radial-gradient(920px 620px at 86% 10%, rgba(20, 188, 255, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Shell topbar (public) ── */
.shell-topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid var(--shell-border);
  background: var(--shell-bg);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

/* ───────────────────────────────────────────────────────────
   Header parity (match home landing.css look)
   ─────────────────────────────────────────────────────────── */

.shell-topbar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  min-width: 52px;
  height: 52px;
  padding: 0 0.82rem 0 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--shell-border);
  background: rgba(255, 255, 255, 0.02);
  flex: none;
  color: var(--shell-text);
}

.shell-topbar__brand:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.shell-topbar__brand-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.shell-topbar__brand-name {
  display: block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--shell-text);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.shell-topbar__nav {
  justify-self: center;
}

.shell-topbar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.shell-topbar__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: color-mix(in srgb, var(--shell-text) 88%, transparent);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.shell-topbar__nav a:hover {
  border-color: transparent;
  color: var(--shell-text);
}

.shell-topbar__nav a.is-active {
  border-color: transparent;
  color: var(--shell-text);
}

.shell-topbar__actions {
  display: flex;
  justify-self: end;
  gap: 0.55rem;
  align-items: center;
}

.shell-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--shell-border);
  background: color-mix(in srgb, var(--shell-bg-strong) 74%, transparent);
  color: var(--shell-text);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  font-weight: 700;
  font-size: 0.95rem;
}

.shell-action:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--shell-bg-strong) 86%, transparent);
  border-color: color-mix(in srgb, var(--shell-border) 92%, transparent);
}

.shell-action--ghost {
  padding-inline: 0.6rem;
}

.shell-action--icon {
  width: 44px;
  padding: 0;
  border-radius: 14px;
}

.shell-topbar__menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--shell-border);
  background: color-mix(in srgb, var(--shell-bg-strong) 78%, transparent);
  color: var(--shell-text);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.shell-topbar__menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  border-radius: 2px;
}

.shell-topbar__menu-toggle span + span {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .shell-topbar__inner {
    grid-template-columns: auto auto auto;
  }

  .shell-topbar__nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
  }

  .shell-topbar__nav.is-open {
    display: block;
  }

  .shell-topbar__nav ul {
    justify-content: flex-start;
    padding-bottom: 0.6rem;
  }

  .shell-topbar__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

[id] {
  scroll-margin-top: calc(var(--shell-topbar-height) + 1.2rem);
}

.shell-topbar__inner {
  width: var(--shell-max-width);
  min-height: var(--shell-topbar-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.shell-topbar--public .shell-topbar__inner {
  column-gap: 1.15rem;
  row-gap: 0.6rem;
}

.shell-topbar--public .shell-topbar__brand {
  margin-inline-end: 0.2rem;
}

.shell-topbar--public .shell-topbar__nav ul {
  column-gap: 0.45rem;
  row-gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.shell-topbar--public .shell-topbar__actions {
  flex-shrink: 0;
  margin-inline-start: 0.25rem;
}

.shell-topbar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  min-width: 52px;
  height: 52px;
  padding: 0 0.82rem 0 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--shell-border);
  background: rgba(255, 255, 255, 0.02);
  flex: none;
  color: var(--shell-text);
}

.shell-topbar__brand:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.22);
}

.shell-topbar__brand-symbol {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shell-topbar__brand-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.shell-topbar__brand-name {
  display: block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--shell-text);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.shell-topbar__nav {
  min-width: 0;
}

.shell-topbar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.shell-topbar__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.8rem;
  border-radius: 999px;
  color: var(--shell-muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.shell-topbar__nav-mobile-only {
  display: none;
}

@media (max-width: 640px) {
  .shell-topbar__nav-mobile-only {
    display: list-item;
  }
}

.shell-topbar__nav a:hover,
.shell-topbar__nav a.is-active {
  color: var(--shell-text);
  background: transparent;
}

.shell-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.shell-action {
  min-height: 42px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--shell-border);
  color: var(--shell-text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.shell-action--primary {
  border-color: rgba(45, 109, 255, 0.42);
  background: linear-gradient(180deg, var(--shell-accent), var(--shell-accent-strong));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shell-action--icon {
  min-width: 42px;
  width: 42px;
  padding: 0;
  border-radius: 14px;
}

.shell-topbar__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--shell-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  color: var(--shell-text);
}

.shell-topbar__menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 1004px) {
  .shell-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    padding-right: 3.05rem;
  }

  .shell-topbar__brand {
    order: 1;
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
  }

  .shell-topbar__actions {
    order: 2;
    gap: 0.35rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
    position: absolute;
    right: calc(0.15rem + 42px + 0.35rem);
    top: 50%;
    transform: translateY(-50%);
  }

  .shell-topbar--public .shell-action--register {
    display: none;
  }

  .shell-topbar--public .shell-topbar__actions {
    right: calc(0.15rem + 42px + 0.28rem);
    gap: 0.28rem;
  }

  .shell-topbar--public .shell-action {
    min-height: 42px;
    padding: 0.34rem 0.74rem;
    border-radius: 14px;
  }

  .shell-topbar__menu-toggle {
    display: inline-flex;
    order: 3;
    position: absolute;
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .shell-topbar__nav {
    display: none;
    order: 4;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0.35rem;
    left: auto;
    width: min(350px, calc(100% - 0.7rem));
    z-index: 1300;
    padding: 0;
  }

  .shell-topbar__nav.is-open {
    display: block;
  }

  .shell-topbar__nav ul {
    margin: 0;
    padding: 0.45rem;
    border: 1px solid var(--shell-border);
    border-radius: 16px;
    background: #071730;
    box-shadow: var(--shell-shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .shell-topbar__nav a {
    justify-content: flex-start;
    min-height: 40px;
    border-radius: 14px;
    padding-left: 0.9rem;
    background: transparent;
    color: var(--shell-text);
  }

  .shell-topbar__nav a.is-active {
    background: transparent;
  }

  .shell-topbar__nav-mobile-only {
    display: list-item;
  }
}

@media (max-width: 480px) {
  .shell-topbar__brand-copy {
    display: none;
  }
}

/* ── Page shell & cards ── */
.brand-page-shell {
  width: min(1100px, calc(100% - 1rem));
  margin: 1.35rem auto 0;
  display: grid;
  gap: 1rem;
}

.brand-page-card,
.login {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 1.35rem;
}

.login {
  width: min(980px, calc(100% - 1.6rem));
  margin: 24px auto;
  padding: 20px;
}

h1,
h2 {
  margin: 0 0 14px;
  color: var(--text);
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

/* Mantener el espaciado original de los forms */
.form-group {
  display: grid;
  gap: 10px;
  text-align: left;
  margin-bottom: 14px;
}

/* Botones de formulario como antes */
.btn-block,
.btn.btn-block {
  width: 100%;
}

.btn-large,
.btn.btn-large {
  min-height: 46px;
  font-size: 15px;
}

/* ── Forms ── */
label {
  display: block;
  font-weight: 700;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(24, 138, 252, 0.72);
  box-shadow: 0 0 0 3px rgba(24, 138, 252, 0.24);
}

button,
input[type="submit"],
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(24, 138, 252, 0.5);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 0 16px;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 80, 160, 0.32);
  filter: brightness(1.05);
}

.error {
  border: 1px solid rgba(255, 111, 105, 0.52);
  background: rgba(255, 111, 105, 0.14);
  color: #ffd3d0;
  border-radius: 12px;
  padding: 11px 12px;
  margin: 12px 0;
}

/* ── Footer + cookie banner ── */
.shell-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--shell-border);
  background: var(--shell-bg-strong);
}

.shell-footer__inner {
  width: var(--shell-max-width);
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  text-align: center;
}

.shell-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  margin: 0 0 0.7rem;
}

.shell-footer__links a,
.shell-footer__copy {
  font-size: 0.88rem;
  color: var(--shell-muted);
}

.shell-footer__slogan--flag {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: var(--shell-muted);
}

.co-flag {
  letter-spacing: 0.22em;
  font-weight: 900;
}

.co-y { color: #FCD116; }
.co-b { color: #003893; }
.co-r { color: #CE1126; }

.shell-footer__links a:hover {
  color: var(--shell-text);
  text-decoration: none;
}

/* Link “David Vides” como antes */
.footer-dev-link {
  font-weight: 800;
  text-decoration: none;
  color: #e9d07b;
  background-image: linear-gradient(90deg, #f6e7a9 0%, #d8a53a 35%, #fff2c3 50%, #d8a53a 65%, #f6e7a9 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerGoldShift 7.2s linear infinite;
}

.footer-dev-link:hover {
  text-decoration: underline;
}

@keyframes footerGoldShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

html[data-cookie-dismissed='1'] .brand-cookie-banner {
  display: none !important;
}

.brand-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1350;
  width: min(760px, calc(100% - 1rem));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--shell-border);
  background: var(--shell-bg-strong);
  box-shadow: var(--shell-shadow);
}

.brand-cookie-banner p {
  margin: 0;
  color: var(--shell-text);
  font-size: 0.92rem;
  flex: 1 1 100%;
  text-align: center;
}

.brand-cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 100%;
  justify-content: center;
}

.brand-cookie-banner button {
  min-height: 40px;
  padding: 0 1rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--shell-accent), var(--shell-accent-strong));
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.brand-cookie-banner__prefs-btn {
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--shell-border);
  border-radius: 12px;
  background: transparent;
  color: var(--shell-text);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* Cookie prefs modal (para que no se "dañe" en login/registro) */
.cookie-prefs-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.cookie-prefs-overlay.is-hidden {
  display: none;
}

.cookie-prefs-panel {
  width: min(480px, calc(100% - 2rem));
  background: var(--shell-bg-strong);
  border: 1px solid var(--shell-border);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.cookie-prefs-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-prefs-panel__header h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--shell-text);
}

.cookie-prefs-panel__hint {
  font-size: 0.78rem;
  color: var(--shell-muted);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--shell-border);
  border-radius: 999px;
}

.cookie-prefs-panel__intro {
  margin: 0;
  font-size: 0.88rem;
  color: var(--shell-muted);
}

.cookie-prefs-panel__group {
  display: grid;
  gap: 0;
}

.cookie-prefs-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.75rem;
  border: 1px solid var(--shell-border);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-prefs-panel__row:first-child {
  border-radius: 14px 14px 0 0;
}

.cookie-prefs-panel__row:last-child {
  border-radius: 0 0 14px 14px;
  border-top: 0;
}

.cookie-prefs-panel__row strong {
  display: block;
  font-size: 0.92rem;
  color: var(--shell-text);
}

.cookie-prefs-panel__row span {
  font-size: 0.8rem;
  color: var(--shell-muted);
}

.cookie-prefs-panel__tag {
  white-space: nowrap;
  font-size: 0.78rem !important;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--shell-border);
  color: var(--shell-muted) !important;
}

.cookie-prefs-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-prefs-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-prefs-toggle__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--shell-border);
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-prefs-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--shell-muted);
  transition: transform 0.2s;
}

.cookie-prefs-toggle input:checked + .cookie-prefs-toggle__track {
  background: var(--shell-accent);
  border-color: var(--shell-accent);
}

.cookie-prefs-toggle input:checked + .cookie-prefs-toggle__track::after {
  transform: translateX(20px);
  background: #ffffff;
}

.cookie-prefs-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.cookie-prefs-panel__cancel {
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--shell-border);
  border-radius: 12px;
  background: transparent;
  color: var(--shell-text);
  font-weight: 700;
  cursor: pointer;
}

.cookie-prefs-panel__save {
  min-height: 40px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--shell-accent), var(--shell-accent-strong));
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 560px) {
  .cookie-prefs-panel__actions {
    justify-content: stretch;
    gap: 0.6rem;
  }

  .cookie-prefs-panel__cancel,
  .cookie-prefs-panel__save {
    flex: 1 1 0;
    width: 100%;
    justify-content: center;
  }
}

html[data-tema="claro"] .cookie-prefs-panel {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(35, 65, 118, 0.14);
}

html[data-tema="claro"] .cookie-prefs-panel__row {
  background: rgba(0, 0, 0, 0.02);
}

html[data-tema="claro"] .cookie-prefs-toggle__track {
  background: rgba(0, 0, 0, 0.1);
}

html[data-tema="claro"] .cookie-prefs-overlay {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .shell-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    padding-right: 3.05rem;
  }
}

