*,
*::after,
*::before,
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}

body,
html {
  background-color: #ffffff;
  color: #667085;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

section > span {
  color: #8e2424;
  font-size: 1rem;
  font-weight: 600;
}

* :where(section, footer) > h2 {
  color: #101828;
  font-size: min(2rem, 5vw);
}

button {
  width: 83px;
  height: 44px;
  background-color: transparent;
  color: #667085;
  font-weight: 500;
  font-size: 1em;
}
button:hover {
  cursor: pointer;
}

.btn {
  width: 112px;
  border-radius: 8px;
  background-color: #8e2424;
  color: #ffffff;
}

.box__metric {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.box__metric h2 {
  color: #8e2424;
  font-weight: 600;
  font-size: max(3em, 3.8vw);
}
.box__metric h3 {
  color: #101828;
  font-weight: 500;
  font-size: 18px;
}
.box__metric p {
  font-size: max(1rem, 1vw);
  font-weight: 400;
}

.area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.area h3,
.area h4 {
  color: #101828;
  font-weight: 500;
}
.area h3 {
  font-size: min(1.2em, 4.5vw);
}
.area h4 {
  font-size: min(1em, 4vw);
}
.area span {
  font-size: min(1em, 3vw);
  font-weight: 500;
  margin-right: 12px;
}
.area .box-vaga {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid rgba(142, 36, 36, 0.05);
  border-radius: 16px;
}

header {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 24px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  header {
    justify-content: space-between;
  }
}
header figure {
  width: 185px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
header figcaption {
  font-size: max(1.3rem, 1.6vw);
  font-weight: 500;
  color: #3a404e;
}
header nav {
  width: 50%;
}
@media (max-width: 850px) {
  header nav {
    width: 46%;
  }
}
@media (max-width: 780px) {
  header nav {
    display: none;
  }
}
header nav ul {
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1120px) {
  header nav ul {
    width: 80%;
  }
}
@media (max-width: 850px) {
  header nav ul {
    width: 92%;
  }
}
header nav li a {
  color: #667085;
  font-size: 1.1em;
  font-weight: 500;
  text-transform: capitalize;
}
header nav li a:hover {
  -webkit-text-decoration: 0.12em underline #667085;
          text-decoration: 0.12em underline #667085;
}
header .btn-group {
  width: 210px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 780px) {
  header .btn-group {
    width: auto;
  }
}
@media (max-width: 780px) {
  header .btn-group .btn__login {
    display: none;
  }
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

section.about {
  height: 40vh;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
section.about h1 {
  font-size: min(2.5rem, 5.5vw);
  font-weight: 600;
  color: #101828;
}
section.about p {
  width: 72%;
  font-size: min(1rem, 3.5vw);
  font-weight: 400;
}

section.metrics {
  width: 90%;
  padding: 0 24px;
  margin-bottom: 26px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

section.opportunity {
  width: 80%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
section.opportunity .introduction {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
section.opportunity .introduction span {
  width: 125px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(142, 36, 36, 0.05);
  border-radius: 16px;
  font-size: 0.8em;
}
section.opportunity .introduction h2 {
  font-weight: 600;
}
section.opportunity .introduction p {
  font-size: min(1rem, 3.5vw);
  font-weight: 400;
}
section.opportunity figure,
section.opportunity figure img {
  width: 80vw;
}

section.vagas {
  min-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

section.depoimentos {
  max-width: 80%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: rgba(195, 25, 25, 0.03);
  border-radius: 16px;
  text-align: center;
}
section.depoimentos h2 {
  font-weight: 500;
}
section.depoimentos figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.depoimentos figure img {
  margin: 10px;
}
section.depoimentos figure figcaption {
  color: #101828;
  font-weight: 500;
}
section.depoimentos figure span {
  font-size: 0.9em;
}

footer {
  width: 100%;
  padding: 36px 0;
  background-color: #f9fafb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
footer p {
  font-size: min(1em, 3vw);
  font-weight: 400;
}
footer p:last-of-type {
  font-size: min(0.9em, 3vw);
  color: #98a2b3;
}
footer form input {
  height: 44px;
  width: 320px;
  padding: 16px;
  margin-right: 8px;
  border-radius: 8px;
  outline: none;
}/*# sourceMappingURL=main.css.map */