/**
 * Site Footer
 */

.site-footer {
  background-color: var(--white);
  padding-top: 240px;
  border-top: solid 1px var(--grey-10);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.footer__name {
  color: var(--grey-10);
  margin-bottom: 0;
}

.footer__tagline {
  color: var(--grey-100);
  max-width: 15ch;
  margin-bottom: 0;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-110);
  padding: 32px 0;
}

.footer__copy {
  color: var(--grey-10);
  margin-bottom: 0;
}

/* ── Responsivo ──────────────────────────── */

@media (max-width: 1024px) {
  .footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer__bar {
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }
}

/* ── Cookie Banner ───────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
  background-color: var(--grey-10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  width: 350px;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  color: var(--white);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--primary);
  text-underline-offset: 3px;
}

.cookie-banner__btn {
  flex-shrink: 0;
  background-color: var(--primary);
  color: var(--grey-10);
  border: none;
  border-radius: 32px;
  padding: 8px 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-banner__btn:hover {
  background-color: var(--aqua-30, #8ee8a8);
}

@media (max-width: 768px) {
  .cookie-banner {
    gap: 12px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px;
  }
}