.marcas-slider {
  width: 100vw;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.marcas-track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  animation: marcas-infinite 60s linear infinite;
}

/* Adaptación para imágenes <img> en el slider de marcas [yty656] */
.marcas-item {
  width: 200px;
  height: 200px;
  border: 0px solid #e2e2e2;
  border-radius: 16px;
  background: #fff;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marcas-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  filter: grayscale(1);
  transition: filter 0.5s;
  z-index: 1;
  display: block;
}

.marcas-item:hover img {
  filter: grayscale(0);
}

/* Eliminado el pseudo-elemento ::after porque ya no se usa background-image [yty656] */

@keyframes marcas-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .marcas-item {
    width: 100px;
    height: 100px;
  }
  .marcas-slider {
    padding: 20px 0;
  }
} 

/* numeros en movimiento */
.flex-kpis {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .flex-kpis {
    flex-direction: column;
    gap: 1.5rem;
  }
  /* Centrado horizontal de KPIs en móviles [yty656] */
  .kpis.flex-kpis {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.kpi-number {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: #348CB2;
}
.kpi-label {
  display: block;
  font-size: 1rem;
  color: #260b0b;
}

/* Centrado total de KPIs en todas las vistas [yty656] */
.kpis.flex-kpis {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100vw;
}
@media (max-width: 768px) {
  .kpis.flex-kpis {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100vw;
  }
}