/* =========================================================
   FOOTER — BASE
   ========================================================= */

.footer {
  text-align: center;

  /* altura equilibrada (nem esmagado, nem alto) */
  padding: 1.4rem 1rem 1.8rem;

  background: var(--footer-bg, #4A2E2A);
  color: var(--footer-text, #F7EFE6);

  display: flex;
  flex-direction: column;
  align-items: center;

  /* ritmo vertical mais natural */
  gap: 0.5rem;
}


/* =========================================================
   LOGO
   ========================================================= */

.footer-logo {
  width: 180px;
  height: auto;

  /* dá respiro real antes dos ícones */
  margin-bottom: 0.6rem;
}


/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1.2rem;

  /* separa claramente marca ↔ social ↔ texto */
  margin-bottom: 0.8rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 22px;
  height: 22px;

  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-1px);
}


/* =========================================================
   TEXTO PRINCIPAL — MARCA / COPYRIGHT
   ========================================================= */

.footer-brand {
  font-family: var(--font-inter, Inter, sans-serif);
  font-weight: 600;
  font-size: 0.9rem;

  color: var(--footer-text, #F7EFE6);
  letter-spacing: 0.03em;

  /* separa do crédito sem “buraco” */
  margin-bottom: 0.35rem;
}


/* =========================================================
   TEXTO SECUNDÁRIO — CRÉDITO
   ========================================================= */

.footer-credit {
  font-family: var(--font-inter, Inter, sans-serif);
  font-size: 0.7rem;
  font-weight: 400;

  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.06em;

  /* encerra o footer com elegância */
  margin: 0;
}


/* =========================================================
   RESPONSIVO — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .footer {
    padding: 1.2rem 1rem 1.6rem;
    gap: 0.45rem;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    gap: 1rem;
    margin-bottom: 0.7rem;
  }

  .footer-social img {
    width: 20px;
    height: 20px;
  }

  .footer-brand {
    font-size: 0.85rem;
  }

  .footer-credit {
    font-size: 0.68rem;
  }
}
