.creditos {
  opacity: 0.5;
  font-size: 0.8em;
  text-align: center;
  margin-top: 10px;
  color: var(--medium-gray);
  font-family: var(--font-family);
}

.creator-name {
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.creator-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

/* Proteção contra seleção e cópia */
.footer-bottom {
  user-select: none;
}

/* Marca d'água sutil no rodapé */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: 'UV Maricá';
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
  opacity: 0.1;
  transform: rotate(-45deg);
  pointer-events: none;
}
