
* {
  margin: 0;
  box-sizing: border-box;
}
body{
    background-color: rgb(255, 255, 255);
}

.header{
    width: 100%;
    padding: 32px 0px;
    height: 193px;
    border-bottom:1px solid rgb(230, 230, 230);
}
#header__container{
    width: 100%;
    padding: 0px 24px;
    display: flex;
    justify-content: center;
}
#logo{
    height: 128px;
    width: 128px;
}
.container{
    padding: 48px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#container__container{
    width: 100%;
    max-width: 672px;
}
#container__image {
  width: 100%;             
  height: auto;            
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.footer{
    border-top: 1px solid rgb(230, 230, 230);
    width: 100%;
    padding: 40px 0px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}
#footer__container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
#footer__brand {
  font-size: 20px;
  color: rgb(13, 13, 13);
  line-height: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;            
}

#footer__secondary {
  font-size: 14px;
  line-height: 20px;
  margin-top: 16px;
  color: #737373;
}

#footer__location{
    font-size: 12px;
    line-height: 16px;
    margin-top: 16px;
    padding-top: 16px;
    color: #737373;
}

#footer__container__container{
    margin-top: 16px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

#number{
    font-size: 14px;
    line-height: 20px;
    color: #737373;
}

#number span{
    color: rgb(13, 13, 13);
}

#cnpj{
    margin-top: 8px;
    font-size: 12px;
    color: rgb(115, 115, 115);
    line-height: 16px;
}

@media (max-width: 767px) {
    #logo{
        height: 96px;
        width: 96px;
    }
    .header{
        height: 161px;
    }
}
