/**
 * Footer — endereço e Instagram
 */

.footer {
  margin-top: auto;
  padding: 40px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: #0a0a0a;
}

.footer__inner {
  width: min(calc(100% - (var(--container-gutter) * 2)), var(--container-max));
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.footer__logo-image {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer__credit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.footer__email {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__email:hover {
  color: var(--primary);
}

@media (max-width: 640px) {
  .footer {
    padding: 32px 0 28px;
  }

  .footer__inner {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
    text-align: center;
  }

  .footer__credit,
  .footer__email {
    font-size: 0.9rem;
  }

  .footer__logo-image {
    height: 32px;
  }
}
