body {
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hover-pause:hover {
  animation-play-state: paused;
}

/* Modern Text Wrapping para evitar viúvas */
.text-pretty {
  text-wrap: pretty;
}

.text-balance {
  text-wrap: balance;
}

/* Animações de Scroll (UAAAU Effect) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}
