@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

section > div {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px;
}

/* tipografia e diagramação */
h1 {
  margin: 30px auto;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

h2 {
  margin: 20px auto;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

h3 {
  margin: 40px auto 20px auto;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.1;
}

h4 {
  margin: 20px auto;
  font-size: 22px;
  line-height: 1.1;
}

p {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.65;
}

b {
  font-weight: 600;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}

button, input {
  font-family: "Inter", sans-serif;
}

hr {
  margin: 20px 0;
  border-top: 2px solid red !important;
  border: none;
}

/* "atalhos" */
.mt--0 {
  margin-top: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.t--center {
  text-align: center !important;
}

.d--flex_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.d--flex_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ================== */
.header {
  color: #fff;
  background-color: #000;
}

.btn--popup {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #007dc6;
  border-radius: 10px;
  border: none;
  transition: all 0.2s ease;
}
.btn--popup:hover {
  cursor: pointer;
  opacity: 75%;
}

.caminho {
  background: #f9efe2;
}
.caminho h4 {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: red;
}
.caminho h4:first-child {
  margin-bottom: 5px;
}
.caminho h5 {
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
}
.caminho p {
  margin: 0;
  font-size: 12px;
}
.caminho img {
  margin: 0;
  width: 150px;
}

.footer {
  color: #fff;
  background-color: #000;
}/*# sourceMappingURL=main.css.map */