  /* Footer Rumi limpio y responsive */
  .footer-rumi {
    background-color: #959595;
    color: #ffffff;
    padding: 4rem 0;
  }
  .footer-rumi .footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between; /* Logo izq, social der */
  }
  @media (min-width: 768px) {
    /* Centrar el bloque de contacto en desktop */
    .footer-rumi .footer-contact {
      margin: 0 auto;
      flex: 0 0 auto;
      padding: 0 11rem; /* Más padding horizontal */
    }
  }
  @media (max-width: 767px) {
    .footer-rumi .footer-container {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .footer-rumi .social-list {
      margin-top: 1rem;
    }
  }

  .footer-rumi .footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
  }

  .footer-rumi h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  .footer-rumi .contact-list,
  .footer-rumi .social-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-rumi .contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-rumi .contact-list li i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    color: #ffffff;
  }
  .footer-rumi .social-list {
    display: flex;
    gap: 0.75rem;
  }
  .footer-rumi .social-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #959595;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
  }
  .footer-rumi .social-list li a:hover {
    background-color: #333333;
    color: #ffffff;
  }