@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}

footer {
  margin-top: auto;
}

.section{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.banner{
  background-image: url('../img/banner_tavi.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}

.iti {
  display: block !important;
}

#btn-toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

@media (max-width: 960px){
  .banner{
    background-image: url('../img/banner_celular.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    flex-direction: column;
    justify-content: space-around;
  }
}

