/* Estadísticas */
.layout__stats {
  background-color: var(--color-bg-dark);
  padding: 14rem 11rem;
}

.stats__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.stats__header {
  text-align: center;
}

.stats__subtitle {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-subtitle);
  margin-bottom: 1.5rem;
}

.stats__title {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: 3rem;
}

.stats__description {
  display: inline-block;
  width: 45%;
  font-size: 2rem;
  color: var(--color-text-description);
  margin-bottom: 4rem;
}

.stats__progress {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.stats__stat {
  width: 25%;
  text-align: center;
  padding: 7rem 2rem;
  border-radius: 2rem;
}

.stats__stat:hover {
  background: linear-gradient(
    180deg,
    var(--color-bg-dark),
    var(--color-hover-dark)
  );
  border: 1px solid var(--color-hover-dark);
}

.stat__icon {
  margin-bottom: 2rem;
}

.stat__icon > img {
  margin: 0 auto;
  text-align: center;
}

.stat__count {
  display: inline-block;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.stat__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-secondary);
}
/* ------------------------------------*/
