footer-component {
  display: block;
  width: 100%;
}

footer-component section {
  width: 100%;
}

footer-component hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--cor-sombra);
}

footer-component .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

footer-component .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

footer-component .footer-column {
  padding: 0.5rem;
}

footer-component .footer-title {
  font-weight: 500;
  margin-bottom: 2rem;
  display: block;
}

footer-component .footer-text {
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

footer-component .footer-link {
  color: var(--cor-texto-principal);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  cursor: pointer;
}

footer-component .footer-link:hover {
  text-decoration: underline;
}

footer-component .footer-logo {
  width: 100px;
  height: auto;
  transition: transform 0.5s ease;
}

footer-component .footer-logo:hover {
  transform: scale(1.2);
}

footer-component .social-media {
  text-align: center;
  margin-bottom: 2rem;
}

footer-component .social-title {
  color: var(--cor-secundaria);
  font-weight: 600;
  margin-bottom: 1rem;
}

footer-component .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer-component .social-icon {
  color: var(--cor-primaria);
  transition: transform 0.2s ease;
}

footer-component .social-icon:hover {
  transform: scale(1.1);
}

footer-component .footer-bottom {
  background-color: var(--cor-primaria);
  color: var(--cor-texto-claro);
  text-align: center;
  padding: 1rem;
}

footer-component .footer-bottom strong {
  display: block;
}

footer-component .footer-bottom small {
  display: block;
}

@media (max-width: 768px) {
  footer-component .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  footer-component .footer-grid {
    grid-template-columns: 1fr;
  }
}
