/* ==============================================================================
   CORRECCIÓN DE DISEÑO: BANNER DE COOKIES Y BOTONES
   ============================================================================== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 380px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0c2a4a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  font-size: 0.9375rem;
  color: #9db0c4;
}

.cookie-banner p {
  color: #9db0c4;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: #5cbdb5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-actions [data-choice="denied"] {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #f4f7fb;
}

.cookie-actions [data-choice="denied"]:hover {
  border-color: #5cbdb5;
  color: #5cbdb5;
}

.cookie-actions [data-choice="granted"] {
  background: #5cbdb5;
  color: #0a2540;
}

.cookie-actions [data-choice="granted"]:hover {
  background: #74d2ca;
}