main {
  width: 100vw;
  height: auto;
}

.first-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;

  margin: 40px auto;
  margin-top: 126px;

  padding: 0 20px;

  gap: 15px;
  max-width: 800px;
}

.more-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  margin: 40px auto;

  padding: 0 20px;

  max-width: 800px;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-end;
  gap: 10px;

  width: 100%;

  border-bottom: 2px solid #09529b;
  padding-bottom: 10px;

  color: #09529b;

  height: auto;
}

.title-wrapper img {
  width: 50px;
}

.title-wrapper h1 {
  font-size: 24px;
  font-weight: 700;
}

.main-image {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.paragraph {
  font-weight: 400;
  white-space: initial;
  text-align: justify;
}

.clientes-logos-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.clientes-logos {
  width: 120px;
  height: auto;
  mix-blend-mode: multiply;
}

.testimonials {
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;

  border-top: 0px;
  border-left: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-style: dashed;
  border-color: #09529b;
}

.testimonials h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-logo {
  width: 100px;
  height: auto;
  margin-bottom: 5px;
  mix-blend-mode: multiply;
}

.testimonial-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .testimonials {
    width: 100%;
  }
}
