/* Banner LGPD de cookies — Dumont Web */
.dw-cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 28rem;
  z-index: 60;
  background: rgba(10, 5, 25, 0.95);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.25rem 1.1rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
}
.dw-cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.dw-cookie-banner__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dw-cookie-banner__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #c084fc;
  flex-shrink: 0;
}
.dw-cookie-banner__text {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
}
.dw-cookie-banner__text a {
  color: #c084fc;
  text-decoration: underline;
}
.dw-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dw-cookie-banner__btn {
  flex: 1 1 auto;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.dw-cookie-banner__btn:hover {
  transform: translateY(-1px);
}
.dw-cookie-banner__btn--primary {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}
.dw-cookie-banner__btn--primary:hover {
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.5);
}
.dw-cookie-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dw-cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.dw-cookie-banner__btn--link {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  flex: 0 0 auto;
  padding: 0.65rem 0.5rem;
}
.dw-cookie-banner__btn--link:hover {
  color: #fff;
}

/* Botão flutuante "configurar cookies" — pra reabrir o banner */
.dw-cookie-fab {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(10, 5, 25, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dw-cookie-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.dw-cookie-fab.show {
  display: flex;
}
.dw-cookie-fab svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Mobile fine-tune */
@media (max-width: 540px) {
  .dw-cookie-banner {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem 1rem 0.9rem;
  }
  .dw-cookie-fab {
    bottom: 0.75rem;
    left: 0.75rem;
  }
}
