.nk-cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 40px);
  max-width: 720px;
  z-index: 9999999;
  /* Oculto por padrão; o JS exibe (display:block + classe --visible) apenas quando o usuario ainda nao aceitou */
  display: none;
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease;
  border-radius: 18px;
  background: rgba(20, 20, 24, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.nk-cookie-banner.nk-cookie-banner--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nk-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.nk-cookie-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nk-cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  min-width: 200px;
}

.nk-cookie-banner__text a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 0.2s;
}

.nk-cookie-banner__text a:hover {
  text-decoration-color: #fff;
}

.nk-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.nk-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.nk-cookie-banner__btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.nk-cookie-banner__btn:active {
  transform: translateY(0);
}

.nk-cookie-banner__btn--accept {
  background: #fff;
  color: #141418;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}

.nk-cookie-banner__btn--accept:hover {
  background: #f1f1f1;
}

.nk-cookie-banner__btn--more {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 500;
}

.nk-cookie-banner__btn--more:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 540px) {
  .nk-cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    transform: translateY(140px);
  }
  .nk-cookie-banner.nk-cookie-banner--visible {
    transform: translateY(0);
  }
  .nk-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nk-cookie-banner__actions {
    width: 100%;
  }
  .nk-cookie-banner__btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nk-cookie-banner {
    transition: opacity 0.3s ease;
  }
}
/*1*/