.footer-company {
  text-align: center;
}

.footer-company p {
  margin: 0 0 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(44, 175, 80, .12);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #07140c;
  transform: translateY(-2px);
  outline: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 600px) {
  .footer-company {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}
