#porqueContratar {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
#porqueContratar .infoTitle {
  padding: 10px;
  border-bottom: 2px solid #9bcd68;
  text-align: end;
  font-family: serif;
  font-weight: bold;
  font-size: clamp(30px, 5vw, 60px);
  margin-bottom: 10px;
}

#porqueContratar .infoCards {
  display: flex;
  align-items: center;
  justify-content: center;
}

#porqueContratar .infoCard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;

  max-width: 300px;

  padding: 20px;
}

#porqueContratar .infoCard img {
  max-width: 100px;
  width: 100%;
}

#porqueContratar .infoCardDesc {
  text-align: center;
  margin-bottom: 0 !important;
  font-size: clamp(14px, 3vw, 16px);
}

#porqueContratar .line {
  background-color: #9bcd68;
  margin: 0 auto;
}

#porqueContratar .commentsImage {
  max-height: 500px;
  height: 100%;
}

#porqueContratar .infoImage {
  max-height: 400px;
  height: 100%;
}

#porqueContratar .commentsImage img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 80%;
  height: 100%;
  height: 60vw;
  max-height: 500px;
}

#porqueContratar .infoImage img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  height: 60vw;
  max-height: 400px;
}

#porqueContratar .commentsContent {
  background-color: #000;
  padding: 20px;
  height: calc(100% - 500px);
}

#porqueContratar .commentTitle {
  color: #fff;
  font-family: serif;
  padding: 10px 0 10px 20px;
  border-left: 1px solid #fff;
  margin-left: 10px;
  font-size: clamp(30px, 3vw, 60px);
}

#porqueContratar .commentAuthor {
  color: #9bcd68;
  margin-left: 20px;
  font-size: clamp(16px, 3vw, 20px);
}

#porqueContratar .commentDesc {
  color: #fff;
  padding: 0 10px 0 20px;
  font-size: clamp(16px, 2vw, 20px);
}

#porqueContratar .commentButton {
  display: flex;
  align-items: center;
  justify-content: end;
}

#porqueContratar .commentButton a {
  padding: 10px 30px;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
}

@media (min-width: 0px) {
  #porqueContratar {
    flex-direction: column;
  }

  #porqueContratar .infoTitle {
    padding-right: 20px;
  }

  #porqueContratar .infoCards {
    flex-direction: column;
  }

  #porqueContratar .line {
    width: 90%;
    height: 3px;
    background-color: #9bcd68;
  }
  #porqueContratar .infoCard {
    max-width: 400px;
    padding: 20px;
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  #porqueContratar .comments {
    width: 100%;
  }

  #porqueContratar .line {
    width: 5px;
    height: 180px;
  }
  #porqueContratar .infoCards {
    flex-direction: row;
    width: 100%;
    margin: 0 0;
  }
}

@media (min-width: 992px) {
  #porqueContratar {
    flex-direction: row;
  }

  #porqueContratar .info {
    width: 60%;
  }
  #porqueContratar .comments {
    width: 40%;
  }
}
