/* Compact, persistent footer — ALARIO Salud Mental */
:root {
  --compact-footer-height: 92px;
  --compact-footer-safe-area: env(safe-area-inset-bottom, 0px);
}

body {
  padding-bottom: calc(var(--compact-footer-height) + var(--compact-footer-safe-area));
}

.site-footer.compact-footer {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  color: #e9e3da;
  background: rgba(39, 39, 36, .97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 0;
  padding-bottom: var(--compact-footer-safe-area);
  box-shadow: 0 -10px 32px rgba(39, 39, 36, .12);
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-footer.compact-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #687066, #c88f84);
  opacity: .85;
}

.compact-footer-inner {
  min-height: calc(var(--compact-footer-height) - 1px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "brand links"
    "brand copyright";
  align-items: center;
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 3px;
  padding-block: 13px;
}

.compact-footer .footer-brand {
  grid-area: brand;
  position: relative;
  padding-left: 42px;
  white-space: nowrap;
}

.compact-footer .footer-brand .brand-mark {
  width: 31px;
  height: 27px;
}

.compact-footer .footer-brand span:not(.brand-mark) {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: .13em;
}

.compact-footer .footer-brand small {
  margin-top: .38rem;
  color: #d5a49a;
  font-size: .47rem;
}

.compact-footer .footer-legal-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 0;
}

.compact-footer .footer-legal-links a {
  color: #d1ccc4;
  font-size: .74rem;
  line-height: 1.45;
  white-space: nowrap;
}

.compact-footer .footer-legal-links a:not(:last-child)::after {
  content: "·";
  color: #c88f84;
  margin-inline: .68rem;
}

.compact-footer .footer-legal-links a:hover,
.compact-footer .footer-legal-links a:focus-visible {
  color: #fff;
}

.compact-footer .footer-copyright {
  grid-area: copyright;
  align-self: start;
  color: #97938d;
  margin: 0;
  font-size: .68rem;
  line-height: 1.4;
}

@media (max-width: 760px) {
  :root {
    --compact-footer-height: 126px;
  }

  .compact-footer-inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand links"
      "copyright copyright";
    column-gap: 22px;
    row-gap: 8px;
    padding-block: 11px 9px;
  }

  .compact-footer .footer-legal-links {
    display: flex !important;
    align-self: center;
    max-width: 390px;
  }
}

@media (max-width: 480px) {
  :root {
    --compact-footer-height: 142px;
  }

  .compact-footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "links"
      "copyright";
    row-gap: 7px;
  }

  .compact-footer .footer-brand {
    padding-left: 36px;
  }

  .compact-footer .footer-brand .brand-mark {
    width: 27px;
    height: 24px;
  }

  .compact-footer .footer-legal-links {
    display: flex !important;
    max-width: none;
  }

  .compact-footer .footer-legal-links a {
    font-size: .69rem;
  }

  .compact-footer .footer-legal-links a:not(:last-child)::after {
    margin-inline: .42rem;
  }
}

/* Illustration supplied for the home-page section about women and grief. */
.women-grid .soft-portrait.women-illustration {
  aspect-ratio: 1402 / 1122;
  background: #f8f3eb;
  border-radius: 48% 48% 4px 4px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(78, 60, 45, .14);
}

.women-grid .women-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.women-grid .soft-portrait.women-illustration::after,
.women-grid .soft-portrait.women-illustration span {
  display: none;
}

@media (prefers-reduced-transparency: reduce) {
  .site-footer.compact-footer {
    background: #272724;
  }
}
