
/* CONFIG INICIAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat',Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --background-theme: #a50036;
  --background-theme-secondary: #8b0836;
  --container-theme-color: #f5f5f5;
  --text-theme: #ffffff;
  --text-theme-secondary: #e4e4e7;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: var(--container-theme-color);
}

/* HEADER / MENU SUPERIOR */
header {
  padding: 2rem 6rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--background-theme);
  color: var(--text-theme);
  user-select: none;
}

header nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

header nav a {
  color: var(--text-theme);
  font-weight: 600;
  outline-style: none;
  text-decoration: none;
}

header nav a:hover {
  color: var(--text-theme-secondary);
  text-wrap: inherit;
}

/* FOOTER / MENU INFERIOR */

footer {
  margin-top: auto;
  background-color: var(--background-theme);
  padding: 1rem;
  text-align: center;
  color: var(--text-theme);
  font-weight: 600;
}

ul {
  list-style-type: none;
}

/* CONTAINER / DIV QUE CONTÉM O CONTEÚDO */

.container {
  width: 90%;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0.5rem auto;
  padding-top: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.container section {
  background-color: var(--text-theme);
  padding: 4px 4px;
  border: 1px solid #f3f3f3;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.container .contact a {
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
  font-weight: 600;
}

.container h2 {
  font-size: 2.5rem;
  line-height: calc(2.5 / 2.25);
}

.container h3 {
  font-size: 1.875rem;
  line-height: calc(2.25 / 1.875);
}

.container h4 {
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
}

.container h5 {
  font-style: 1.25rem;
  line-height: calc(1.75 / 1.25);
}

.container p, .container span, .container li {
  font-size: 1.25rem;
  line-height: calc(1.75 / 1.25);
}

.container a {
  color: var(--background-theme);
}

.container a:hover {
  color: var(--background-theme-secondary);
}

.container .formula {
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
}

::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--background-theme);
}

@media (max-width: 768px) {
  header {
    text-align: center;
  }
  header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
  }
}