:root {
    --branco: #ffffff;
    --cinza: #595756;
    --cinzaclaro: #B5B2B1;
  }
  
div, form, h1, h2, h3, h4, hr, iframe, label, li, section, table, td, tr, ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body,
html{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  line-height: normal !important;
  background-color: var(--branco);
  color: var(--cinzaclaro);
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  height: 100%;
  font-size: 18px;
}

a:link, a:active, a:visited{
    color: var(--cinzaclaro);
    transition: all 0.5s ease;
}
a:hover{
    color: var(--cinza);
    transition: all 0.5s ease;
}

.main{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main img{
    max-width: 220px;
}

.brevemente{
    padding-top: 50px;
}

.main .services {
    list-style-type: none;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
}

.main .services li{
    line-height: 31px;
}


.main .contacts{
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}