:root {
  --verde-escuro: #173c3b;
  --verde-claro: #e7eee9;
  --amarelo: #cfba4f;
  --amarelo-escuro: #ae9a32;
  --delay-default: 350ms;
  font-size: 16px;
}

body {
  background: #f6fdf8;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100vh;
}

main {
  & > section:first-of-type {
    margin-top: 150px;
  }
}

section {
  margin-block: 60px;
}

.titulo-conteudo {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #40524b;
  margin-bottom: 40px;
}

.subtitulo-conteudo {
  font-size: 1.5rem;
  text-align: center;
  color: #40524b;
  margin-bottom: 40px;
}

#botaoVoltarAoTopo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;

  width: 40px;
  height: 40px;

  border: 1px solid white;
  border-radius: 50%;
  outline: none;

  background-color: #f4ac41;

  font-size: 20px;
  color: white;

  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: 250ms;

  &.mostrar-botao-voltar-ao-topo {
    pointer-events: auto;
    opacity: 1;
  }

  &:hover {
    background: #ffd69b;
  }
}

.link {
  color: #00569c;
  text-decoration: none;

  --reversed-link-gap: min(100%, 1.35em);
  background: linear-gradient(to right, currentColor, currentColor) 0
    var(--reversed-link-gap) / 0 1px no-repeat;
  background-position-x: right;
  transition: background-size 0.5s cubic-bezier(0.3, 1, 0.3, 1);

  &:hover {
    background-position-x: left;
    background-size: 100% 1px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.justificado {
  text-align: justify;
}

@media (max-width: 425px) {
  :root {
    font-size: 14px;
  }
}
