
.servicos {
  width: 100%;
  margin: 50px auto 60px auto;
  padding: 0;
}
.servicos div.filtros {
  display: flex;
  margin-bottom: 30px;
}
.servicos div.filtros .filtro {
  cursor: pointer;
  padding: 5px 15px;
  background: #ffc220;
  color: #fff;
  border-radius: 30px;
}
.servicos div.filtros .filtro + .filtro {
  margin-left: 15px;
}
.servicos .title {
  color: #004c99;
  font-weight: bold;
  font-size: 2.6rem;
  text-shadow: -1px -1px #ffffff, -2px -2px var(--color-primary-main);
  margin-top: 0.3rem;
  margin-bottom: 15px;
}
.servicos .items {
  display: grid;
  grid-template-columns: repeat(5, 19%);
  gap: 15px;
  justify-content: space-between;
}
.servicos .items .item {
  border-radius: 6px;
  display: flex;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  border-radius: 6px;
}
.servicos .items .item a {
  text-decoration: none;
  text-align: center;
}
.servicos .items .item .post-title {
  font-weight: bold;
}
.servicos .items .item .tag {
  position: absolute;
  left: 0;
  top: 0;
  border-bottom-right-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  color: #fff;
  border-top-left-radius: 8px;
}
.servicos .items .item img {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 400/300;
  height: auto;
}
.servicos .items .item .overlay {
  border-radius: 6px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 15px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.servicos .items .item .overlay {
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
@media all and (min-width: 800px) {
  .servicos select.filtros {
    display: none;
  }
}
@media all and (max-width: 800px) {
  .servicos div.filtros {
    display: none;
  }
  .servicos .items {
    display: grid;
    grid-template-columns: repeat(2, 48%);
    gap: 15px;
    justify-content: space-between;
  }
  .servicos select.filtros {
    cursor: pointer;
    padding: 10px 15px;
    background: #ffc220;
    color: #fff !important;
    border-radius: 30px;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    text-align: center;
  }
}
[data-empty] .title-shadow,
[data-empty] div.filtros {
  displaY: none
}
.informacoes-adicionais {
  padding-top: 50px;
}