/* ==========================================================
   FOOTER
========================================================== */

.footer {
  margin-top: 0;
  padding: 3rem 0;

  background: var(--color-primary);
  color: white;
}

.footer__brand,
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__brand h3 {
  margin: 0;
  color: white;
}

.footer__brand p,
.footer__copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;

  margin-top: 1rem;

  font-size: 0.8rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: white;
}

.footer__bottom span {
  color: rgba(255, 255, 255, 0.35);
}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer__bottom {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    gap: 0.45rem;
  }
}
