/* reset.css - minimal reset, seguro e moderno */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
img.logo{
  width: 260px;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 625px){
  img.logo{
    width: 320px;
    max-width: 280px;
  }
}

@media (max-width: 480px){
  img.logo{
    width: 250px;
    max-width: 2500px;
  }
}

input, button, textarea, select { font: inherit; }

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; margin: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }
