#novo-footer {
  font-family: var(--fonte);
  font-size: 12px;
  color: var(--light-grey);
  border-top: 1px solid var(--light-grey);
  background-color: var(--bg-mobile-menu);
  padding: 10px 15px;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.footer-links a {
  color: var(--light-grey);
  text-decoration: none;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-telegram {
  color: #0d6efd !important; /* bleu Telegram ou celui de ton thème */
}

.footer-telegram svg {
  width: 16px;
  height: 16px;
  margin-bottom: -2px;
}

.telegram-icon {
  vertical-align: middle;
  fill: #0088cc;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-main-links {
    margin-bottom: 4px;
  }

  .footer-telegram {
    margin-top: 6px;
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .footer-telegram {
    margin-top: 0.3rem !important;
    display: inline-block !important;
  }
}