/* ======= Estilos para la sección de herramientas ======= */
.page-title {
    padding-top: 110px;
  }

#herramientas {
  padding: 60px 0;
}

#herramientas .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#herramientas .section-title p {
  margin-bottom: 30px;
  color: #6c757d;
}

.section-title{
  padding-bottom: 0;
}

#buscador {
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#herramientas-filtros {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#herramientas-filtros li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  background: #f1f1f1;
  color: #333;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

#herramientas-filtros li:hover,
#herramientas-filtros .filter-active {
  background: #0d6efd;
  color: #fff;
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-wrap:hover {
  transform: scale(1.03);
}

.portfolio-wrap img {
    /* padding: 1rem 0rem 3rem 2rem; */
    height: 150px;
    object-fit: cover;
}

.portfolio-info {
  background: rgba(128, 126, 126, 0.6);
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  transition: background 0.3s ease;
}

.portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-info p {
  font-size: 14px;
  margin: 0;
}


@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}