
.cliente .stats-row {
    margin-top: 5rem;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-pw-1), transparent 96%), color-mix(in srgb, var(--surface-color), transparent 50%));
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--color-pw-1), transparent 93%);
}

.cliente .stats-row .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.cliente .stats-row .stat-item .stat-icon {
    font-size: 2.25rem;
    color: var(--color-pw-1);
    margin-bottom: 1rem;
}

.cliente .stats-row .stat-item .stat-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.cliente .stats-row .stat-item .stat-desc {
    font-size: 0.9375rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.gallery-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-wrap img {
  transition: 0.5s;
  width: 100%;
  height: auto;
  display: block;
}

.gallery-wrap .gallery-info {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease-in-out;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.gallery-wrap:hover .gallery-info {
  opacity: 1;
}

.gallery-wrap:hover img {
  transform: scale(1.1);
}

.gallery-wrap .gallery-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: 0.4s;
  opacity: 0;
}

.gallery-wrap .gallery-info p {
  color: #eee;
  font-size: 14px;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: 0.4s;
  opacity: 0;
  transition-delay: 0.1s;
}

.gallery-wrap .gallery-info .gallery-links {
  margin-top: 15px;
  transform: translateY(20px);
  transition: 0.4s;
  opacity: 0;
  transition-delay: 0.2s;
}

.gallery-wrap:hover .gallery-info h4,
.gallery-wrap:hover .gallery-info p,
.gallery-wrap:hover .gallery-info .gallery-links {
  transform: translateY(0);
  opacity: 1;
}

.gallery-wrap .gallery-links a {
  color: #fff;
  background: var(--color-pw-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: 0.3s;
}

.gallery-wrap .gallery-links a:hover {
  background: #fff;
  color: var(--color-pw-1);
}

.gallery-wrap .gallery-links a i {
  font-size: 18px;
  line-height: 1;
}
