/* Cores principais */
:root {
  --primary-color: #0071bc;
  --secondary-color: #6bc82a;
  --light-color: #ffffff;
  --grey-color: #f3f3f3;
  --dark-color: #0c0c0c;
  --dark-title-color: #333333;
  --dark-text-color: #989aa0;
  --light-title-color: #dddddd;

  /* Fonte e tamanhos */
  --font-family: "Poppins", sans-serif;

  /*.5rem = 8px | 1rem = 16px ...*/
  --big-font-size: 3.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;
  --tiny-font-size: 0.625rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /* Tamanhos de fonte */
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
}

/* Responsividade */
@media screen and (max-width: 992px) {
  :root {
    --big-font-size: 2.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/* Configurações gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
}

body,
button,
input,
textarea {
  font-family: var(--font-family);
}

body {
  background-color: var(--light-color);
  color: var(--dark-color);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--dark-title-color);
  text-align: center;
}

h2 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-normal);
  color: var(--dark-title-color);
  text-align: center;
}
