/* Centrar el texto de cada columna */
.footer-clean .row > div {
  padding: 0 10px;
  text-align: center;       /* ← centra títulos y párrafos */
  display: flex;
  flex-direction: column;    /* ← para que el <h5> y el <p>/<ul> queden en columna */
  align-items: center;       /* ← centra los hijos horizontalmente */
}

/* Asegurar que la fila principal esté centrada */
.footer-clean .container > .row {
  justify-content: center;   /* ← centra las columnas en el eje horizontal */
}

  .footer-clean h5 {
    margin-bottom: 1rem;
    font-size: 0.95rem; /* 🔹 títulos más compactos */
    font-weight: 600;
    color: #ffffff;
  }
  
  .footer-clean a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-size: 0.82rem;
  }
  
  .footer-clean a:hover {
    color: #ffffff;
  }
  
  .footer-clean ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }
  
  .footer-clean li {
    margin-bottom: 0.4rem;
  }
  
  .footer-clean hr {
    border-top: 1px solid #ddd;
    margin: 1.5rem 0 1rem;
  }
  
  .footer-clean p {
    font-size: 0.75rem;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
  }


  /* Tamaño y color de los iconos de Bootstrap Icons en el footer */
.footer-clean .bi {
  font-size: 1.25rem;
  color: #ffffff;  /* negro */
}

.footer-clean .bi:hover {
  opacity: 0.8;
}

  
  /* 🔹 Espaciado más controlado y columnas mejor distribuidas */
  .footer-clean .row > div {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  /* 🔹 Responsive */
  @media (max-width: 768px) {
    .footer-clean {
      text-align: center;
    }
  
    .footer-clean .row > div {
      margin-bottom: 1.5rem;
    }
  }
  