/* TITULO */
.sec-herramientas {
  padding: 3rem 0 0 0;
}

.sec-herramientas__encabezado {
  text-align: center;
}
.sec-herramientas__encabezado--subtitulo {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-amarillo);
  line-height: 1;
}
.sec-herramientas__encabezado--titulo {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1;
}
.sec-herramientas__encabezado--parrafo {
  margin: 1rem 0 0 0;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .sec-herramientas__encabezado--subtitulo {
    font-size: 2.5rem;
  }
  .sec-herramientas__encabezado--titulo {
    font-size: 4rem;
  }
}
.texto-enfasis {
  color: var(--color-amarillo);
}

/* Slide */
.swiper.mySwiperHerramientas {
  width: 100%;
  padding: 3rem 0 5rem 0;
  position: relative;
  height: auto;
}
.swiper-slide.slider-herramientas {
  width: 300px;
  height: auto;
  background-color: #fff;
}
/* Card */
.card-herramientas {
  padding: 25px 20px;
  width: 100%;
  border-radius: 10px;
  border: 0.5px solid #c4c4c4;
  /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15); */
  overflow: hidden;
  text-align: center;
}
.card-herramientas:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.card-herramientas__icono img{
  width: 85px;
  transition: all ease 0.3s;
}
.card-herramientas:hover .card-herramientas__icono img{
  transform: translateY(-5px);
}
.card-testimonio__texto {
  text-align: center;
}
.card-herramientas__texto--titulo {
  margin: 10px 0;
  font-size: 2rem;
}
.card-herramientas__texto--descripcion {
  margin: 10px 0;
  font-size: 1.6rem;
  text-align: center;
}
