/* assets/css/cookies.css — banner de Privacidade e Cookies estilo Orbizzy claro */
.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20010;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  font-family: inherit;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__content {
  width: 100%;
  min-height: 74px;
  background: #ffffff;
  border: 1px solid rgba(15, 17, 23, .08);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -18px 48px rgba(15, 17, 23, .12);
  padding: 16px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cookie-consent__text {
  min-width: 0;
}

.cookie-consent__title {
  display: block;
  margin: 0 0 6px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.cookie-consent__message {
  margin: 0;
  color: #737373;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cookie-consent__message a {
  color: #d9a800;
  font-weight: 800;
  text-decoration: none;
}

.cookie-consent__message a:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-consent__btn {
  height: 35px;
  min-width: 92px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

.cookie-consent__btn--ghost {
  background: #ffffff;
  color: #6b6b6b;
  border: 1px solid rgba(15, 17, 23, .13);
}

.cookie-consent__btn--ghost:hover {
  border-color: rgba(15, 17, 23, .22);
  box-shadow: 0 8px 18px rgba(15, 17, 23, .08);
}

.cookie-consent__btn--primary {
  background: #ffc425;
  color: #111111;
  border: 1px solid #ffc425;
  box-shadow: 0 8px 18px rgba(255, 196, 37, .28);
}

.cookie-consent__btn--primary:hover {
  background: #f4b900;
  border-color: #f4b900;
  box-shadow: 0 10px 22px rgba(255, 196, 37, .34);
}

body.has-cookie-banner {
  padding-bottom: 78px;
}

@media (max-width: 720px) {
  .cookie-consent__content {
    min-height: auto;
    padding: 14px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-consent__btn {
    min-width: 94px;
    height: 36px;
  }

  body.has-cookie-banner {
    padding-bottom: 132px;
  }
}

@media (max-width: 420px) {
  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}
