.main-testimonial {
  display: flex;
  gap: 0px; /* sin separación entre columnas */
  align-items: center;
padding: 20px;
    justify-content: flex-start;
    margin: 100px;
}
.main-testimonial-image {
  flex: 0 0 50%;
      text-align-last: center;

}
.main-testimonial-image img {
  width: 450px;
  height: 600px;
  object-fit: cover;
  transform: rotate(0deg);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.main-testimonial-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
.main-testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.main-testimonial-quote img { 
  width: 180px;
  height: 180px;
  opacity: 0.85;
}
.main-testimonial-stars {
  margin-bottom: 0;
  display: inline-flex;
}
.main-testimonial-stars .stars-bar {
  display: inline-block;
  max-width: 140px; /* ancho total del SVG */
  overflow: hidden; /* permite mostrar rating parcial */
}
.main-testimonial-stars img {
  width: 140px;
  height: 24px;
}
.main-testimonial-primary {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #0073FF; /* azul solicitado */
  margin: 8px 0;
}
.main-testimonial-secondary {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #020817; /* negro solicitado */
  margin: 8px 0 12px;
}
.main-testimonial-author {
  display: flex;
  flex-direction: column; /* nombre y cargo uno debajo del otro */
  gap: 4px;
  align-items: flex-start;
}
.main-testimonial-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700; /* Bold */
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #020817; /* solicitado */
}
.main-testimonial-role {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #415586; /* solicitado */
}

/* Responsive */
@media (max-width: 768px) {
  .main-testimonial {
    flex-direction: column; /* mantener horizontal en teléfono */
    align-items: flex-start;
    gap: 12px;
    margin: 16px; /* reducir margen en móvil */
    padding: 16px;
  }
  .main-testimonial-image { flex: 0 0 auto; }
  .main-testimonial-image img {
    width: 160px; /* escalar imagen para móvil */
    height: 220px;
  }
  .main-testimonial-content { flex: 1 1 auto; }
  .main-testimonial-quote img {
    width: 28px; /* icono más pequeño en móvil */
    height: 32px;
  }
  .main-testimonial-stars { align-self: flex-end; }
}