/* Estilos base */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 100px;
  margin-top: 120px;
  margin-bottom: 80px;
}

.title_testimonial {
  color: #00accd;
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.container_card_testimonial {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.card_testimonial {
  margin: 10px;
  display: flex;
  width: 308px;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  flex-direction: column;
}

.img_opinion {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}
.img_border {
  border-radius: 30px;
}

.card_data_opinion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.name_opinion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.name_opinion h5 {
  color: #000;
  font-family: Inter;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.opinion_type {
  color: #787272;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
}

.container_star {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.star,
.image_star {
  width: 15px;
  height: 15px;
}

.linkedin {
  width: 25px;
  height: 25px;
}

.image_linke {
  width: 100%;
  height: auto;
}

.description_testimonial {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.text_testimonial {
  color: #787272;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
  .image_opinion {
    width: 100px;
  }
  .card_data_opinion {
    width: 200px;
  }
  .card_testimonial {
    width: 250px;
    height: 310px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 0 20px;
    margin-top: 80px;
  }
  .title_testimonial {
    font-size: 24px;
  }
  .container_card_testimonial {
    flex-wrap: wrap;
    justify-content: center;
  }

  .img_opinion {
    width: 80px;
    height: 80px;
  }
  .name_opinion h5 {
    font-size: 20px;
  }
  .opinion_type {
    font-size: 12px;
  }
  .container_star {
    gap: 4px;
  }
  .star,
  .image_star {
    width: 12px;
    height: 12px;
  }
  .linkedin,
  .image_linke {
    width: 20px;
    height: 20px;
  }
  .text_testimonial {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 0 10px;
    margin-top: 60px;
  }
  .title_testimonial {
    font-size: 20px;
  }
  .card_testimonial {
    padding: 10px;
  }
}
