* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/****** estilos gerais *****/

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.title {
  color: black;
  font-size: 46px;
  line-height: 52px;
}

.text {
  color: #535353;
  font-size: 16px;
  line-height: 24px;
}

.btn {
  background: linear-gradient(to bottom, #18417a, #2b5fa8);
  color: #f7f7f7;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 5px;
}

.padding-geral {
  padding: 20px 0;
}

.destaque {
  color: #18417a;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/****** header ******/

header {
  background-color: #f7f7f7;
}

.header-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-mobile {
  display: none;
}

.logo {
  background-image: url(../images/logo-view-sem-fundo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 270px;
  height: 70px;
}

.menu-desktop ul {
  display: flex;
}

.menu-desktop li {
  margin-left: 20px;
}

.menu-desktop-links {
  color: #000;
}

.menu-mobile {
  display: none;
  width: 40px;
  height: 40px;
}

.menu-bar {
  width: 40px;
  height: 6px;
  border-radius: 2px;
  background-color: #18417a;
  margin-bottom: 8px;
}

/****** main ******/

main {
  background: linear-gradient(to bottom, #f7f7f7, #919191);
  /*height: calc(100vh - 110px);*/
}

.main-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-title {
  max-width: 592px;
  margin-bottom: 20px;
}

.main-p {
  max-width: 380px;
  margin-bottom: 32px;
}

.main-image {
  background-image: url(../images/scott-graham-5fNmWej4tAA-unsplash.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  width: 460px;
  height: 530px;
  opacity: 80%;
}

/****** insights ******/

.insights {
  background: linear-gradient(to bottom, #919191, #f7f7f7);
  margin-top: -1px;
}

.insights-display {
  display: flex;
  justify-content: space-between;
}

.insights-title h1 {
  margin-bottom: 32px;
}

.insights-p {
  max-width: 360px;
  margin-bottom: 32px;
}

.insights-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.insights-links li {
  width: 120px;
  height: 50px;
  border-radius: 4px;
  background-color: #959595;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-links a {
  font-size: 16px;
  padding: 10px 20px;
  color: #f7f7f7;
}

.insights-image {
  background-image: url(../images/john-schnobrich-FlPc9_VocJ4-unsplash.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  width: 600px;
  height: 355px;
  opacity: 80%;
}

/****** servicos ******/

.servicos {
  background-color: #f7f7f7;
}

.servicos-title {
  margin-bottom: 32px;
}

.servicos-display {
  display: flex;
  justify-content: space-around;
}

.servicos-image {
  background-image: url(../images/marilia-castelli-2w2NcgP3XNs-unsplash.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  width: 300px;
  height: 450px;
  opacity: 80%;
}

.servicos-text {
  padding: 0 32px;
}

.servicos-list {
  margin-bottom: 32px;
}

.servicos-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.servicos-list li .ico-check {
  margin-right: 10px;
  margin-bottom: -8px;
}

/****** final ******/

.final {
  background-image: url(../images/lukas-blazek-mcSDtbWXUZU-unsplash-opacity.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/****** footer ******/

footer {
  background-color: #f7f7f7;
}

.footer-display {
  display: flex;
  justify-content: space-between;
}

.footer-image {
  background-image: url(../images/logoq.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 171px;
  height: 171px;
}

.footer-contato span,
.footer-links span {
  font-size: 24px;
  color: #959595;
}

.footer-contato a,
.footer-links a {
  color: #000;
  font-size: 16px;
}

.footer-contato p {
  color: #535353;
  font-size: 14px;
}

.footer-contato-email,
.footer-contato-wa {
  margin-top: 20px;
}

.footer-direitos {
  color: #959595;
  font-size: 14px;
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/***** mobile ******/

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .insights-image {
    width: 450px;
    height: 285px;
    margin-left: 20px;
  }

  .main-image {
    width: 460px;
    height: 500px;
    margin-left: 20px;
  }
}

@media (max-width: 720px) {
  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .title {
    font-size: 38px;
    line-height: 44px;
  }

  .text {
    font-size: 14px;
    line-height: 20px;
  }

  .btn {
    font-size: 14px;
  }

  .insights-links a {
    font-size: 14px;
  }

  .main-display {
    flex-direction: column;
  }

  .main-tile,
  .main-p {
    max-width: none;
  }

  .main-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-image {
    width: 100%;
    height: 250px;
    margin-left: 0;
    margin-top: 32px;
  }

  .footer-image {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 600px) {
  .insights-display {
    flex-direction: column;
  }

  .insights-p {
    max-width: none;
  }

  .insights-links ul {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .insights-image {
    margin-top: 32px;
    width: 100%;
    height: 285px;
    margin-left: 0;
  }

  .servicos-display {
    display: flex;
    flex-direction: column-reverse;
  }

  .servicos-text {
    padding: 0 0px;
  }

  .servicos-image {
    width: 100%;
    height: 250px;
    margin-left: 0;
    margin-top: 32px;
  }

  .servicos-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-display {
    flex-direction: column;
  }

  .footer-image {
    display: none;
  }

  .footer-links {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .logo {
    width: 170px;
    height: 45px;
  }

  .title {
    font-size: 30px;
    line-height: 34px;
  }

  .insights-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .insights-links ul {
    grid-template-columns: 1fr 1fr;
  }
}
