.footer {
  background-color: var(--confeitudo-dark);
  color: #9ca3af;
  padding: 3rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 5rem;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  background-color: var(--confeitudo-red);
  transform: scale(1.1);
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;

  color: hsl(0, 0%, 100%);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--confeitudo-red);
}

.footer-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
