.footer {
  background-color: #111;
  color: white;
  padding: 1rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-info,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
  text-align: center;

  /* Interlineado mínimo */
  line-height: 1;

  /* Fuente personalizada */
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 400;

  /* Opcional: afinar el espaciado entre letras */
  letter-spacing: -0.2px;
}

.footer h3, .footer h4 {
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
}

.footer-links a:hover {
  color: #ffcc00;
}
.footer-logo {
  max-width: 190px;
  height: auto;
  margin-bottom: 1rem;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
}

.social-icons a:hover {
  color: #ffcc00;
}@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .footer-info,
  .footer-links,
  .footer-contact {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .footer-links ul {
    padding-left: 0;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-icons a {
    margin: 0;
  }
}
.social-icons {
  display: flex;
  gap: 0px;
  justify-content: center;
  font-size: 1.5rem;
}

.social-icons a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #009a43; /* LinkedIn blue or customize per icon */
}
.footer-p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 0.4;
    margin-bottom: 1rem;
}
