/* POP-UP DE COOKIES */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  font-family: "Poppins", sans-serif;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  pointer-events: none; /* 👈 impede interação quando invisível */
}

.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all; /* 👈 ativa interação quando visível */
}

.cookie-popup.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}
.cookie-content h3 {
  margin-top: 0;
  color: #ff0000;
}
.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
}
.cookie-content a {
  color: #ff0000;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.cookie-buttons .btn-accept,
.cookie-buttons .btn-reject {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-accept {
  background: #32cd32;
  color: #fff;
}
.btn-accept:hover {
  background: #2db82d;
}
.btn-reject {
  background: #444;
  color: #ccc;
}
.btn-reject:hover {
  background: #555;
}

/* Responsivo */
@media (max-width: 600px) {
  .cookie-popup {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}

