/* ===== Footer base ===== */
:root {
  --footer-bg: #38B6FF;
  --footer-fg: #e5e7eb;
  --footer-muted: #fff;
  --footer-accent: #38bdf8;
  --footer-link: #e2e8f0;
  --chip-bg: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
}

#site-footer-title {
  font-size: 32px;
  font-weight: 600;
  display: block;
  text-align: center;
  font-family: "Heebo", Sans-serif;
}

/* ===== Top band ===== */
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
.footer-top.container {
  max-width: 1200px;
  margin-inline: auto;
}

/* ===== Brand ===== */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.brand a {
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 95px;
  height: auto;
}

.brand__copy {
  font-family: "Varela Round", Sans-serif;
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  color: var(--footer-muted);
  letter-spacing: 0.92px;
}

.brand__tag {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* ===== Nav blocks ===== */
.navblock {
  text-align: center;
}

.navblock__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Heebo", Sans-serif;
}

.navblock__title a {
  font-family: "Heebo", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--footer-fg);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.navblock__title a:hover {
  border-color: var(--footer-accent);
}

.navblock__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navblock__list li {
  margin: 8px 0;
}

.navblock__list a,
.navblock__list span {
  color: var(--footer-link);
  text-decoration: none;
  font-family: "Heebo", Sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.navblock__list a:hover {
  text-decoration: underline;
}

/* ===== Social ===== */
.social__title {
  margin: 0 0 10px;
  font-family: "Heebo", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--footer-muted);
}

.social__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social__link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.social__icon {
  width: 20px;
  height: 20px;
  fill: var(--footer-fg);
}

/* ===== Bottom band (credits) ===== */
.footer-bottom {
  background-color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 22px;
}

.footer-bottom .credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 0 15px;
}

.credit__title {
  margin: 0;
  font-family: "Inter", Sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.footer-bottom img {
  display: block;
  height: auto;
}

/* ===== Floating buttons ===== */
.float-btn {
  position: fixed;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  /* default for whatsapp, overridden for to-top */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  right: 16px;
  bottom: 16px;
  text-decoration: none;
}

.float-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.float-btn.to-top {
  background: #0ea5e9;
  bottom: 80px;
}

@media (max-width: 1024px) {
  #site-footer-title {
    font-size: 24px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .footer-bottom .credit {
    flex-direction: column;
    gap: 8px;
  }
}/*# sourceMappingURL=footer-custom.css.map */