* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1346px;
}

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

.banner {
  position: relative;
}

.banner-image {
  width: 100%;
  display: block;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}


.title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  line-height: 59px;
}

.subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  line-height: 25px;
}

.text-subtitle {
  margin-top: 20px;
  margin-bottom: 20px;
}

.button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  height: 60px;
  width: 165px;
  padding: 0;
  margin: 0;
  border-style: none;
}

.text-primary {
  color: #515070;
}

.text-secundary {
  color: #FF8E6E;
}

.button-primary {
  background: #515070;
}

.button-primary:hover {
  background: #373661;
}

.button-secundary {
  background: #FF8E6E;
}

.button-secundary:hover {
  background: #ff683e;
}

.sobre-nos-home-content {
  display: flex;
  min-height: 688px;
  justify-content: space-between;
  align-items: center;
}

.container-meia-tela {
  width: 46%;
}

.text-paragraph {
  color: #898989;
  font-size: 14px;
  line-height: 29px;
}

.margin-paragraph {
  margin-top: 40px;
  margin-bottom: 40px;
}

.text-default {
  color: #ffffff
}

.depoimentos {
  min-height: 688px;
  background: #F6F6F6;
  display: flex;
  align-items: center;
}

.depoimentos-body {
  display: flex;
  margin-top: 40px;
}

.card-depoimento {
  background: #FFFFFF;
  height: 217px;
  border-radius: 3px;
  padding: 20px;
}

.card-depoimento > p {
  width: 85%;
}

.depoimentos-body > .card-depoimento:first-child {
  margin-right: 40px;
}

.card-depoimento-content {
  display: flex;
  margin-bottom: 5px;
}

.card-depoimento-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.card-title {
  font-size: 18px;
  line-height: 22px;
}

.card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 18px;
}


.funcionalidades {
  min-height: 688px;
  background: linear-gradient(to bottom, #515070 0%, #6B69B0 100%);
  display: flex;
  align-items: end;
}

.funcionalidades-text {
  display: flex;
  justify-content: center;
}

.funcionalidades-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.funcionalidade-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 138px;
  width: 337px;
  padding: 5px;
}

.card-text {
  padding-top: 10px;
  line-height: 22px;
}

.funcionalidade-img-card {
  width: 50px;
}

.funcionalidade-card {
  margin-bottom: 50px;
}

.card-funcionalidade-info {
  padding: 20px;
}

.funcionalidade-card-agrupamento {
  display: flex;
  flex-direction: column;
}

.funcionalidade-img {
  align-self: flex-end;
  margin: 0 80px;
}

.entre-em-contato {
  background: #F6F6F6;
}

.entre-em-contato-content {
  display: flex;
  min-height: 688px;
  justify-content: space-between;
  align-items: center;
}

.entre-em-contato-text {
  width: 80%;
}

.img-sobre-nos, .img-entre-em-contato {
  width: 100%;
}

.text-mobile {
  display: none;
}

@media (max-width: 768px) {
  .banner-image{
    width: initial;
  }
  
  .title {
    font-size: 32px;
  }

  .title-home {
    font-size: 38px;
  }

  .button-banner-home {
    background: #515070;
  }

  .button-banner-home:hover {
    background: #373661;
  }

  .sobre-nos-home-content {
    min-height: 760px;
    flex-direction: column-reverse;
    justify-content: space-evenly;
  }
  
  .container-meia-tela {
    width: 100%;
  }

  .banner-image-container {
    overflow: hidden;
  }

  .depoimentos {
    min-height: 960px;
  }

  .depoimentos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .depoimentos-body {
    flex-direction: column;
  }

  .depoimentos-body > .card-depoimento:first-child {
    margin: 0;
    margin-bottom: 40px;
  }

  .card-depoimento {
    height: 100%;
  }

  .img-depoimento-cliente {
    margin-bottom: 10px;
  }

  .card-depoimento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .card-depoimento-info {
    align-items: center;
    margin: 0;
  }

  .text-nome-cliente {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 5px;
  }

  .subtitle-cliente-content > p {
    text-align: center;
  }

  .entre-em-contato-content {
    min-height: 760px;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .funcionalidades-body {
    flex-direction: column;
  }

  .funcionalidade-img {
    margin: 0;
    order: 1;
  }
  
  .funcionalidades-text {
    margin: 40px 0;
  }
  .card-title {
    font-size: 18px;
  }

  .text-mobile {
    display: initial;
  }

  .text-desktop {
    display: none;
  }
}