/* footer-section.css */
.footer-section {
  background: var(--color-primary);
  color: white;
  padding: 3rem 1.5rem 0;
  font-family: 'Lato', sans-serif;
  max-width: 100%;
  margin:0px auto;
  border-top-left-radius: 0rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  gap: 2rem;
}

.footer-info,
.footer-sponsors {
  flex: 1;
  min-width: 250px;
}

.footer-links {
  flex: 0.5; /* Ocupa menos espacio */
  max-width: 200px; /* Limita el ancho */
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}

.footer-info {
  text-align: left;
}

.footer-logo {
  width: 250px;
  margin-bottom: 1rem;
}

.footer-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-social a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--color-secondary);
}

.footer-sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-sponsors img {
  height: 100px;
  object-fit: contain;
}

.footer-links a {
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  color: white;
  background: var(--color-primary);
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    text-align: center;
    max-width: none;
    flex: 1;
  }

  .footer-sponsors {
    justify-content: center;
  }
}


