/* ==================== BANNER DE COOKIES (LGPD) ==================== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  width: min(720px, calc(100% - 32px));
  background: #ffffff;
  color: #4B4B4B;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 18px 22px;
  border: 1px solid rgba(196, 143, 148, 0.25);
  animation: cookieSlideUp 0.4s ease-out;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-content p {
  flex: 1 1 300px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cookie-content a {
  color: #C48F94;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 0;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.cookie-btn-primary {
  background: #C48F94;
  color: #fff;
}
.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 143, 148, 0.4);
}
.cookie-btn-secondary {
  background: transparent;
  color: #4B4B4B;
  border: 1px solid #d8d8d8;
}
.cookie-btn-secondary:hover {
  background: #f4f4f4;
}

@keyframes cookieSlideUp {
  from { transform: translate(-50%, 30px); opacity: 0; }
  to   { transform: translate(-50%, 0);     opacity: 1; }
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 8px;
    padding: 14px 16px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
