.site-footer {
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #b8860b;
  border-radius: 10px;
  height: 60px;
  margin: 30px auto 40px auto;
  padding: 0 30px;

  display: flex;
  justify-content: space-between; /* esquerda + direita */
  align-items: center;

  max-width: 1100px;
  box-sizing: border-box;
}

.site-footer p {
  color: #ffd700;   /* dourado igual à borda */
  font-size: 14px;
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icons a {
  color: #b8860b;
  font-size: 28px;
  transition: 0.3s;
}

.footer-icons a:hover {
  color: #ffd700;
}
.copyright {
  text-align: center;
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1; /* 👈 força ficar acima do overlay escuro */
}
.footer-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-icons a:hover {
  transform: scale(1.2);
}