/* Banner de cookies */
.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 14px 16px;
  z-index: 9999;
  font-family: Arial, sans-serif;
  animation: slideUp .25s ease;
}

.cookie-content p{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.cookie-content a{
  color: #0d6efd;
  text-decoration: none;
}

.cookie-content a:hover{
  text-decoration: underline;
}

.cookie-buttons{
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-buttons button{
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
}

.btn-accept{
  background: #0d6efd;
  color: #fff;
}

.btn-accept:hover{
  background: #0b5ed7;
}

.btn-reject{
  background: #f3f4f6;
  color: #333;
}

.btn-reject:hover{
  background: #e5e7eb;
}

@keyframes slideUp{
  from{ transform: translateY(20px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}

/* Celulares */
@media (max-width: 480px){
  .cookie-banner{
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-buttons{
    flex-direction: column;
  }

  .cookie-buttons button{
    width: 100%;
  }
}