/* Banner LGPD / cookies — primeira visita */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  padding: 14px 16px;
  background: rgba(15, 20, 25, 0.97);
  color: #e8eaed;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-consent-text {
  flex: 1 1 280px;
  margin: 0;
}

.cookie-consent-text a {
  color: #7ecbff;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #fff;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-consent .btn-cc {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.cookie-consent .btn-cc:active {
  transform: scale(0.98);
}

.cookie-consent .btn-cc-primary {
  background: linear-gradient(135deg, #ea1d2c, #ff6b35);
  color: #fff;
}

.cookie-consent .btn-cc-secondary {
  background: transparent;
  color: #e8eaed;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent .btn-cc-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

body.cookie-consent-open {
  padding-bottom: 120px;
}

@media (min-width: 720px) {
  body.cookie-consent-open {
    padding-bottom: 88px;
  }
}
