/* Footer */
.footer {
  width: 100%; background: var(--primary-color); color: var(--text-color);
  padding: 32px 0; font-size: 1.08rem; letter-spacing: .02em; flex-shrink: 0;
  margin-top: 0; box-shadow: 0 -2px 12px rgba(24,24,24,.08);
  border-top-left-radius: 20px; border-top-right-radius: 20px;
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
}
.footer-main {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%;
  padding: 0 32px; min-height: 44px; box-sizing: border-box;
}

/* Sitemap */
.footer-sitemap { display: flex; justify-content: flex-start; align-items: center; gap: 32px; margin-bottom: 0; flex-wrap: wrap; }
.footer-sitemap a { color: #1976d2; font-size: 1.02rem; text-decoration: none; padding-right: 10px; transition: color .15s; }
.footer-sitemap a:hover, .footer-sitemap a:focus { color: #1251a3; text-decoration: underline; }

/* Social */
.footer-social { display: flex; align-items: center; gap: 18px; }

/* Footer - icônes Font Awesome */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7fa;
  color: #1976d2;
  font-size: 1.2rem;
  transition: background 0.18s, color 0.18s;
}
.footer-social a:hover {
  background: #c2c2c2;
  color: #1251a3;
}

.footer-social img { width: 30px; height: 30px; object-fit: contain; display: block; }

/* Copyright */
.footer-copyright { color: #888; font-size: .97rem; margin-top: 16px; margin-bottom: 0; text-align: center; }
