/* Camada contínua de fundo do site. */
html {
  background: var(--bege-cabecalho);
}

body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: transparent;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: var(--bege-cabecalho);
  background-image: url("../img/fundo do cabeçalho.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.hero,
.team,
.contact {
  background: transparent;
}

.site-footer {
  background: var(--verde-rodape);
}
