@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
body .center {
  background-color: rgba(50, 50, 50, 0.5);
}
body .content {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  max-width: 1200px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
}
@media screen and (min-width: 991.98px) {
  body .content {
    flex-direction: row;
  }
}
body .content .block {
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 15px;
  color: #333;
}
body .content .block i {
  font-size: 1.5em;
  margin-right: 10px;
  color: #a4a4a4;
  text-align: left;
}
body .content .block a {
  color: #333;
  text-decoration: none;
}
body .content .block .block-logo {
  margin-bottom: 30px;
}
body .content .block .block-logo .logo {
  width: 100%;
  max-width: 200px;
}
body .content .block .block-phone {
  margin-bottom: 15px;
  font-size: 1.2em;
}
body .content .block .block-phone:hover i {
  color: #25d366;
}
body .content .block .block-phone .number {
  font-weight: 600;
  font-size: 1.1em;
}
body .content .block .block-phone .number .digit {
  font-size: 0.85em;
  font-weight: 500;
}
body .content .block .block-address {
  margin-bottom: 20px;
}
body .content .block .block-address:hover i {
  color: #EA4335;
}
body .content .block .block-address .address {
  font-size: 0.9em;
}
body .content .block .block-old-site {
  font-size: 0.9em;
  text-align: center;
  border: 2px solid #fff;
}
body .content .block .block-old-site a {
  color: royalblue;
}
body .content .block .block-old-site a:hover {
  text-decoration: underline;
}
body .content .block .block-construcao img {
  width: 100%;
  max-width: 200px;
}
@media screen and (min-width: 991.98px) {
  body .content .block .block-construcao img {
    max-width: 250px;
  }
}