html {
  height: 100%;
  width: 100%;
}

.arbutus-slab-regular {
  font-family: "Arbutus Slab", serif;
  font-weight: 400;
  font-style: normal;
}


.quienes_somos {
  background: url("static/body/fondo_1.jpg") center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0.4;
  position: relative; /* Importante para que .texto_sobre_fondo se posicione correctamente */
}

.texto_sobre_fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 1; /* Asegura que el texto esté sobre la imagen de fondo */
}



/* Media query para pantallas de celular */
@media (max-width: 767px) {
    .offcanvas {
        right: 0;
        left: unset;
        margin-top: auto;
        height: 100vh
    }

    .offcanvas-body {
        text-align: right;
        margin-top: auto;
        height: 100vh
    }
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.footer-content {
  flex-direction: column-reverse;
  gap: var(--gutter-small);
}
.footer-text {
  text-align: center;
}

.footer-text {
  font-size: var(--text-small);
}

.footer-text a {
  color: var(--sub);
}

.footer-links {
  display: flex;
  gap: var(--gutter-small);
  list-style-type: none;
}

.footer-link img {
  block-size: 50px;
  inline-size: 50px;
}

body.dark .footer-link img {
  filter: invert(1);
}


