/* Zera margens e ocupa 100% da viewport */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

/* Fundo com imagem que cobre toda a tela */
.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('images/Background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Logomarca no canto inferior direito */
.logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 256px; /* ajuste conforme necessário */
  max-width: 20vw;
  height: auto;
  z-index: 1;
}

