/* Carrusel de testimonios similar al de trabajos realizados */
.testimonios-carrusel {
  position: relative;
  width: 100%;
  margin-top: 40px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonios-carrusel-viewport {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}
.testimonios-carrusel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  align-items: center;
  height: 100%;
  gap: 24px;
  justify-content: center;
}
.item_testimonio {
  flex: 0 0 30%;
  max-width: 30%!important;
  min-width: 30%!important;
  box-sizing: border-box;
  padding: 30px 20px;
  background-color: #F7F7F7;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
    /* sin padding para evitar recorte */
  display: flex;
  flex-direction: column;
  height: max-content;
  align-items: stretch;
}
.testimonios-carrusel-flecha {
  position: relative;
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin: 0 10px;
  background-clip: padding-box;
}
.testimonios-carrusel-prev {
  order: -1;
}
.testimonios-carrusel-next {
  order: 2;
}
.testimonios-carrusel {
  min-height: 320px;
}

.testimonios-carrusel-flecha:hover {
  background: rgba(0,0,0,0.5);
}
