/* ========================================
   FOOTER
 ======================================== */
.footer {
  background-color: #000000;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__brand {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a3a3a3;
  transition: all var(--transition-base);
}

.footer__social-link svg {
  width: 19px;
  height: 19px;
}

.footer__social-link--instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.25);
}

.footer__social-link--facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.25);
}

.footer__social-link:focus-visible {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

.footer__rights {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: #737373;
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1.25rem;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 3.5rem 2rem 2.5rem;
  }

  .footer__container {
    gap: 2.5rem;
  }

  .footer__logo {
    width: 60px;
  }

  .footer__rights {
    font-size: 0.875rem;
  }
}