/*
  Sobre Nós v 1.1;
  10/2023;
  João Diogo Pereira;
*/

.main__img{
  width: 100%;
  aspect-ratio: 16/6;
  border-radius: 34px;
  overflow: hidden;
}

.main__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main__content{
  border-radius: 34px;
  border: solid 1px #e7bfd2;
  background-color: var(--secondaryColor);
}

.sec2__conteudo strong{
  font-family: 'OpenSans';
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: var(--primaryColor);
  text-transform: uppercase;
}

.sec2__img, .cards__img{
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 34px;
  overflow: hidden;
}

.final__img{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 34px;
  overflow: hidden;
}

.sec2__img img, .cards__img img, .final__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px){
  .main__img {
    aspect-ratio: 16/9;
  }
}