/* ═══════════ 19 · BANNER DE COOKIES (todas as páginas) ═══════════ */
.cookie-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 0.65em 1.6em;
  border-radius: 2em;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  white-space: nowrap;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.cookie-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cookie-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.cookie-btn:hover::before {
  transform: translateX(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(14, 14, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 1.2rem clamp(1.4rem, 4vw, 3rem);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  box-sizing: border-box;
  font-family: var(--font-body);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--white-dim);
  font-weight: 300;
  flex: 1;
  min-width: 280px;
}

.cookie-content p strong {
  color: var(--white);
  font-weight: 500;
}

.cookie-content a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 80, 0, 0.4);
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.cookie-content a:hover {
  border-color: var(--brand);
  opacity: 0.9;
}
