/* Banner de consentimiento de cookies (RGPD). */
.bag-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 16px 24px;
  background: #0B1220;
  color: #e7edf5;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.bag-cookie-banner .bag-cc-text {
  margin: 0;
  max-width: 760px;
}
.bag-cookie-banner a {
  color: #22D3EE;
  text-decoration: underline;
}
.bag-cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.bag-cc-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.bag-cc-reject {
  background: transparent;
  color: #c4d0dd;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.bag-cc-accept {
  background: linear-gradient(100deg, #7C5CFF 0%, #22D3EE 100%);
  color: #06121b;
}
