/* Estilos accesibles para el footer ITA */
.ita-footer {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  padding: 24px 12px;
  box-sizing: border-box;
}

.ita-footer a {
  color: #ffd100;
  text-decoration: none;
}

.ita-footer a:focus,
.ita-footer a:hover {
  text-decoration: underline;
  outline: 3px solid rgba(255, 209, 0, 0.12);
  outline-offset: 2px;
}

/* Estructura principal */
.ita-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ita-footer-info,
.ita-footer-links,
.ita-footer-externos {
  flex: 1 1 300px;
  min-width: 220px;
}

.ita-footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 8px;
  display: block;
}

.ita-footer-links h3,
.ita-footer-externos h3 {
  font-size: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 4px;
}

.ita-footer-links ul,
.ita-footer-externos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ita-footer-links li,
.ita-footer-externos li {
  margin: 6px 0;
}

.ita-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  padding-top: 12px;
  text-align: center;
  font-size: 13px;
}

/* Responsivo */
@media (max-width: 800px) {
  .ita-footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .ita-footer-bottom {
    text-align: left;
  }
}
