/* Aviso de cookies — landing + páginas legais */
.cookie-notice {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.cookie-notice-inner {
  pointer-events: auto;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 27, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.cookie-notice-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cookie-notice-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #a1a1aa;
}

.cookie-notice-body strong {
  color: #e4e4e7;
  font-weight: 600;
}

.cookie-notice-body a {
  color: #a5b4fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.cookie-notice-link {
  font-size: 0.88rem;
  color: #a5b4fc;
}

.cookie-notice-ack {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
}

.cookie-notice-ack:hover {
  filter: brightness(1.08);
}

@media (max-width: 520px) {
  .cookie-notice-actions {
    justify-content: stretch;
  }

  .cookie-notice-link {
    flex: 1 1 auto;
  }

  .cookie-notice-ack {
    flex: 1 1 auto;
    text-align: center;
  }
}
