/* Smooth Scroll com CSS */

/* Ativar scroll suave em todo o documento */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Altura do header fixo */
}

/* Garantir que as seções tenham o offset correto */
section[id],
div[id] {
	scroll-margin-top: 80px;
}
