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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
}

/* Logo totalmente responsivo */
.logo {
  max-height: 80vh;  /* Limite pela altura */
  max-width: 90vw;   /* Limite pela largura */
  width: auto;
  height: auto;
  display: block;
}
