.servicos-pg {
  max-width: 1280px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.servicos-pg .title h1 {
  font-family: "Financier Display Web";
  color: #003F2D;
  width: 100%;
  flex: 1;
  font-weight: 400;
  font-size: 48px;
}

.servicos-pg .tags-servicos {
  flex: 1;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.banner-servicos {
  display: flex;
  max-height: 60vh;
  height: 100%;
}

.banner-servicos .banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.servico-descricao {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.servico-descricao .descricao {
  box-sizing: border-box;
  flex: 1;
  position: relative;
  min-width: 320px;
  margin: 40px 0;
  padding: 0 15px;
  flex-wrap: wrap;
  width: 100%;
}

.servico-descricao .descricao .descricao-departamento h4,
.servico-descricao .descricao .descricao-fazemos h4,
.cases-title h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #007A5E;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
}

.servico-descricao .descricao .descricao-departamento p, 
.servico-descricao .descricao .descricao-fazemos p {
  font-family: "Financier Display Web";
  font-weight: 400;
  font-size: 28px;
  color: #538184;
  line-height: 33.6px;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.subtitle {
  color: #012A2D !important;
}

.servico-descricao .descricao .descricao-departamento p strong, 
.servico-descricao .descricao .descricao-fazemos p  strong {
  font-size: 1rem;
  font-weight: bolder;
  color: #5d5d5d;
  line-height: 18px;
}

.servico-descricao .descricao .descricao-fazemos p em {
  font-style: italic;
}

.descricao-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.descricao-cases .cases-title {
  width: 100%;
}

.descricao-cases .cases-item {
  flex: 1;
  box-sizing: border-box;
  background: #fff;
  max-width: calc(100% / 4 - 10px);
  min-width: 150px;
  display: flex;
  position: relative;
}

.descricao-cases .cases-item .image {
  padding-bottom: 35px;
  display: flex;
  max-width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.descricao-cases .cases-item .image img {
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}

.descricao-cases .cases-item img:hover {
  transform: scale(1.1);
}

.descricao-cases .cases-item p {
  position: absolute;
  bottom: 0;
  padding: 10px;
  background-color: #ACDE94;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  color: #222222;
  text-decoration: none;
  transition: all .3s;
}

.descricao-cases .cases-item p:hover {
  background-color: #007a5e;
  color: #fff;
}

@media only screen and (max-width: 400px) { 
  .descricao-cases .cases-item {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 500px) {
  .descricao-cases .cases-item{  
    max-width: calc(50% - 10px);
    margin-bottom: 10px;
  }
}

