/* === Banner de Cookies === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: #000;
  color: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

.cookie-banner a {
  color: green;
  text-decoration: underline;
}

.cookie-banner button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-banner button:hover {
  background: #eee;
}
