.footerContainer {
    font-size: 1rem;
    color: white;
    position: relative;
    display: flex;          /* ✅ flex para que order funcione */
    flex-direction: column; /* columna vertical */
    align-items: center;    /* centrar horizontalmente */
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.footer-content{
    width: 100%;
    text-align: center;
}

/* Mensaje de los corazones */
.footer-heart {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem; /* tamaño predeterminado móvil */
}

/* Copyright */
.footer-copyright {
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Desktop (>=992px) */
@media (min-width: 992px) {
  .footer-heart {
    order: 1;      /* mensaje abajo */
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

/* Mobile (<992px) */
@media (max-width: 991px) {
  .footer-heart {
    order: 0;      /* mensaje arriba */
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .footerContainer{
    padding-bottom: 3.2rem;
  }
}
