/* Rodapé fixo, responsivo e visível em todos os temas */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(245, 236, 215, 0.95); /* Bege translúcido */
  color: #3d2c1a;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  z-index: 101;
  box-shadow: 0 -2px 12px rgba(194, 178, 128, 0.12);
  transition: background 0.5s, color 0.5s, font-size 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  position: absolute;
  left: 1.2rem;
  bottom: 0.7rem;
  height: 2.2rem;
  width: auto;
  z-index: 102;
  object-fit: contain;
}
}
body.dark .footer {
  background: rgba(24, 24, 24, 0.97);
  color: #f5ecd7;
  box-shadow: 0 -2px 12px rgba(30, 30, 30, 0.18);
}
@media (max-width: 600px) {
  .footer {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
    justify-content: center;
  }
  .footer-logo {
    left: 0.5rem;
    bottom: 0.5rem;
    height: 1.4rem;
  }
}
