* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Garante que o body tenha 100% da altura da viewport */
}

.base-template{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}