/* Footer general */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 20px 15px;
  font-size: 14px;
}

/* Contenedor principal */
.footer-container {
  display: flex;
  flex-direction: row;               /* Escritorio: en fila */
  justify-content: space-between;     /* Espacio entre bloques */
  align-items: center;                /* Alineación vertical */
  max-width: 1200px;
  margin: 0 auto;
}

/* Redes sociales */
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #0a66c2; /* LinkedIn blue */
}

.footer-legal{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

/* Enlaces legales */
.footer-legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* Créditos */
.footer-credits p {
  margin: 0;
  color: #bbb;
}

.footer-credits a {
  color: #bbb;
  text-decoration: none;
}


/* 🔹 Responsive: móvil */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;        /* Columna en móvil */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-social {
    justify-content: center;
  }
}
