/* Estilos customizados (complementares ao Tailwind) */

/* Logo em branco quando exibida em fundos escuros (header + footer) */
.logo-light {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.logo-light:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(249, 160, 50, 0.4));
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar discreta — verde marca */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(38, 82, 37, 0.35);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2f662e;
}

/* Anima entrada suave dos elementos ao rolar */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Foco acessível */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #6b9071;
  outline-offset: 3px;
  border-radius: 6px;
}
