/* Tipografia principal e reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Inter', sans-serif;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

/* Links e botões com transição suave */
a {
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Espaço para âncoras fixas */
section {
  scroll-margin-top: 6.5rem; /* pt-26 ≈ 104px */
}

/* Menu mobile toggle (se usar via JS) */
#mobile-menu.show {
  display: flex !important;
}

.pt-32 {
  padding-top: 11rem !important;
}