.footerWrapper {
  width: 100%;
  margin-left: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 0;
  border-top: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.todo {
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Para dispositivos móviles */
@media screen and (max-width: 768px) {
  .footerWrapper {
    height: 70px;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  
  .todo {
    font-size: 0.75rem;
  }
}

/* Tema claro */


:global(.light-theme) .todo {
  color: rgba(0, 0, 0, 0.5);
}