:root {
  --altura-header: 126px;
  --font-base: 15px;
  --font-small: 14px;
  --font-h1: 40px;
  --font-h2: 30px;
  --font-h3: 24px;
  --cor-texto: #333;

  /* Laranja dos botoes. Versoes escurecidas do laranja original da marca:
     texto branco sobre elas atinge 4.70:1 e 6.21:1, acima do minimo de
     4.5:1 exigido pelo WCAG 2.1 AA (o #f4752b original dava 2.83:1). */
  --cor-btn: #c25100;
  --cor-btn-hover: #a34400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-size: var(--font-base);
  line-height: 1.5;
  color: var(--cor-texto);
  display: flex;
  flex-direction: column;
  /* compensa o .header, que e position:fixed. Fica so aqui: as paginas
     nao devem repetir esse offset em main/hero/section. */
  padding-top: var(--altura-header);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

main {
  flex: 1;
}

h1 {
  font-size: var(--font-h1);
  font-weight: 600;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 500;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 500;
}

p, span, li {
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.6;
}

.btn,
.btn-whatsapp {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 768px) {
  :root {
    --altura-header: 72px;
    --font-h1: 32px;
    --font-h2: 24px;
    --font-h3: 20px;
    --font-base: 14px;
  }

  .btn,
  .btn-whatsapp {
    font-size: 16px;
  }
}
