/* Importação das fontes do Google Fonts — agora só o Inter é necessário */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reset básico e configuração global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; /* sans-serif moderna e legível */
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif; /* mantém o Inter para títulos */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #111;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

