.wave-footer {
    position: absolute;
    background-color: var(--blue-dark);
    left: 0;
    bottom: 80%;
    width: 100%;
    height: 150px;
    /*requiero que la ola rote en X*/
    transform: rotateX(180deg);
}

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 5rem 1.5rem 2rem;
  font-size: var(--textSm);
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-block {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}


.footer-block h4 {
  font-size: var(--textMd);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-block p,
.footer-block li {
  color: var(--grey-soft);
  line-height: 1.6;
}

.footer-block a {
  color: var(--grey-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: var(--white);
}

/* Stats */
.footer-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-stats li {
  margin-bottom: 0.5rem;
}

.footer-stats strong {
  color: var(--white);
  font-size: var(--textMd);
}

/* Redes */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

/* Línea final */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 1.2rem;
  color: var(--white);
}

@media (max-width: 400px){
    .wave-footer {
        bottom: 90%;
    }
}