/* MODAL DE COOKIES */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* APARECER O MODAL */
.cookie-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* CONTEÚDO DO MODAL */
.cookie-content h2 {
  font-size: 18px;
  color: #333;
}

.cookie-content p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

/* BOTÕES DO MODAL */
.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.btn-accept,
.btn-config {
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-accept {
  background: #4caf50;
  color: white;
  font-weight: bold;
}

.btn-accept:hover {
  background: #388e3c;
}

.btn-config {
  background: transparent;
  color: #333;
  font-weight: bold;
  border: 2px solid #333;
}

.btn-config:hover {
  background: #333;
  color: white;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .cookie-modal {
    width: 95%;
    max-width: 350px;
  }
}
