
.footer {
  position: relative; /* Evita que se solape con las cards */
    background-color: #611232;
    color: white;
    padding: 40px 0;
    font-size: 14px;
  }
  
  .footer h5 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center; /* Mantener títulos centrados */
  }
  
  .footer a {
    color: white;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .logo-footer {
    max-width: 300px;
    margin-bottom: 10px;
  }
  
  .social-icon {
    width: 30px;
    margin: 5px;
  }
  
  .footer .container {
    max-width: 900px; /* Ajuste para centrar */
  }
  
  .footer .row {
    justify-content: center;
  }
  
  .footer p,
  .footer ul {
    text-align: justify; /* Justificar párrafos y listas */
    margin: 0 auto;
    max-width: 85%; /* Para evitar que el texto se extienda demasiado */
  }
  
  .footer ul {
    padding-left: 0; /* Elimina indentación predeterminada en listas */
    list-style: none; /* Opcional: elimina los puntos de lista */
  }
  