/* MARCA DE AGUA */
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #555;
}

.mora-watermark {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.mora-watermark:hover { opacity: 0.9; }

.mora-watermark span {
  font-size: 11px;
  color: #777;
  letter-spacing: 0.3px;
}

.mora-watermark img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(0.5);
}