@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
}
:root {
  --red: #be1f23;
  --red1: #fea9ab;
  --red2: #f4e0e1;
  --red3: #ffd3d5;
  --blue: #1f4180;
  --blue1: #2f5cae;
  --blue2: #a2c0f6;
  --white: #ffffff;
  --gray0: #f9f9f9;
  --gray2: #c8c8c8;
  --gray4: #494949;
  --gradient: linear-gradient(#011b4a, #490103);
}
header {
  background-color: var(--blue1);
  height: 4.5rem;
  width: 100%;
  padding: 0px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  border-bottom: 3px solid var(--gray4);
  box-shadow: 5px 5px 10px #0000003a;
}
#logo-header {
  width: 37px;
}
#nav-menu {
  display: flex;
  gap: 3rem;
}
#nav-menu button {
  background: none;
  border: none;
  cursor: pointer;
}
#nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
li {
  list-style: none;
}
.menu {
  color: var(--gray0);
  text-decoration: none;
}
#button-menu {
  display: none;
}
.nav-menuMobile {
  display: none;
}
#section-hero {
  background: linear-gradient(
      to right bottom,
      rgba(255, 255, 255, 0.39),
      rgba(255, 255, 255, 0.39)
    ),
    url("../imgs/background.hero.png") rgba(23, 23, 23, 1) no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  padding-top: 4.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#box-logos {
  width: 100%;
  background-color: var(--blue1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
#box-logos #img1 {
  width: 8.5vw;
}
#box-logos #img2 {
  width: 18.5vw;
}
#box-logos #img3 {
  width: 4.5vw;
}
#section-aboutUs {
  background: url("../imgs/elementAboutUs4.svg") left bottom no-repeat,
    url("../imgs/elementAboutUs3.svg") right top no-repeat, var(--gray0);
  background-size: auto auto, auto auto, auto;
  min-height: 100vh;
  width: 100%;
  padding: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 35px;
}
#container-buttonReturn {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
#container-buttonReturn button {
  background-color: var(--gray0);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid var(--gray4);
  box-shadow: 3px 3px 0px var(--gray4);
  cursor: pointer;
}
.tagSection {
  width: 155px;
}
.titleSection {
  font-size: 2.5rem;
  color: var(--blue);
}
.titleAnnex {
  color: var(--red);
}
#section-aboutUs #box-aboutUs {
  background: var(--blue2);
  width: 100%;
  min-height: 347px;
  border-radius: 22px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--gray4);
  box-shadow: 5px 5px 0px var(--gray4);
}
#section-aboutUs #box-aboutUs div {
  border-radius: 19px 19px 0px 0px;
  border-bottom: 2px solid var(--gray4);
  height: 70px;
  width: 100%;
  background-color: var(--blue1);
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
#section-aboutUs #box-aboutUs p {
  width: 100%;
  height: 100%;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#box-button {
  display: flex;
  gap: 22px;
}

#section-aboutUs #button1 {
  background-color: var(--blue);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: none;
}
#section-aboutUs #button2 {
  background-color: var(--gray1);
  border: var(--blue) solid 2px;
  color: var(--blue);
  display: none;
}
#section-annex {
  background: url("../imgs/elementAnnex1.svg") left top no-repeat,
    url("../imgs/elementAnnex2.svg") right bottom no-repeat, var(--red2);
  background-size: auto auto, auto auto, auto;
  min-height: 100vh;
  width: 100%;
  padding: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 35px;
}
.container-annex {
  display: flex;
  gap: 32px;
  align-items: center;
}
.container-annex a {
  text-decoration: none;
}
.buttonAnnex {
  height: 79px;
  width: 300px;
  padding: 10px 32px 10px 10px;
  border-radius: 10px;
  border: 2px solid var(--gray4);
  box-shadow: 4px 4px 0px var(--gray4);
  background-color: var(--red1);
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.buttonAnnex div {
  height: 60px;
  width: 60px;
  background-color: var(--red3);
  border-radius: 5px;
  border: 2px solid var(--gray4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttonAnnex i {
  font-size: 30px;
}
#section-form {
  background: url("../imgs/elementForm2.svg") left top no-repeat,
    url("../imgs/elementForm1.svg") right top no-repeat, var(--gray0);
  background-size: auto auto, auto auto, auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 35px;

  padding: 150px;
}
form {
  width: 100%;
  min-height: 1980px;
  border-radius: 22px;
  padding: 0px 32px;
  text-align: start;
  background-color: var(--white);
  border: 2px solid var(--gray4);
  box-shadow: 5px 5px 0px var(--gray4);
}
form h1 {
  font-size: 25px;
  font-weight: 600;
  color: var(--gray4);
  margin: 32px 0px;
}
.container-input {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--gray4);
}
.container-input label {
  display: flex;
  gap: 0.3rem;
}
.container-input label p {
  color: var(--red);
}
.container-input div {
  height: 56px;
  width: 100%;
  background-color: var(--gray0);
  border-radius: 10px;
  border: solid 2px var(--gray2);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.container-input div input {
  font-size: 20px;
  color: var(--gray4);
  width: 100%;
  background: transparent;
  border: none;
}
.container-input div input:focus-visible {
  outline: none;
}
.container-input div input::placeholder {
  color: var(--gray2);
}
.container-input div i {
  font-size: 24px;
  color: var(--gray2);
}
.container-plusInputs {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.input-file {
  height: 128px !important;
  justify-content: center;
  flex-direction: column;
  color: var(--gray2);
  font-weight: 400;
}
.input-file label {
  max-width: 150px;
  min-height: 20px;
  overflow: hidden;
  text-overflow: clip;
  direction: ltr;
  cursor: pointer;
}
#arquivo {
  display: none;
}
#arquivo1 {
  display: none;
}
#arquivo2 {
  display: none;
}
#arquivo3 {
  display: none;
}
#arquivo4 {
  display: none;
}
#arquivo5 {
  display: none;
}

#arquivo6 {
  display: none;
}
#arquivo7 {
  display: none;
}
#arquivo8 {
  display: none;
}
#arquivo9 {
  display: none;
}
#arquivo10 {
  display: none;
}
#arquivo11 {
  display: none;
}
#arquivo12 {
  display: none;
}
.container-plusInputs select {
  height: 56px;
  width: 100%;
  background-color: var(--gray0);
  border-radius: 10px;
  border: solid 2px var(--gray2);
  font-size: 20px;
  color: var(--gray2);
  padding: 16px;
  cursor: pointer;
}
form button {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: 2px solid var(--gray4);
  background-color: var(--blue2);
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
  margin: 32px 0px;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--gray4);
}
footer {
  min-height: 3rem;
  width: 100%;
  padding: 17px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--red);
  border-top: 3px solid var(--gray4);
}
footer #img1 {
  width: 13.5vw;
}
footer #img2 {
  width: 28.5vw;
}
footer #img3 {
  width: 7.9vw;
}
@media screen and (max-width: 1279px) {
  header {
    padding: 0px 100px;
  }
  #section-container {
    padding: 50px 100px;
    gap: 100px;
  }
  .titleSection {
    font-size: 2rem;
  }
  .input-file label {
    max-width: 120px;
  }
  #section-aboutUs {
    padding: 100px;
  }
  #section-aboutUs #box-aboutUs {
    font-size: 18px;
    line-height: 30px;
  }
  #section-annex {
    padding: 100px;
  }
  form {
    min-height: 1900px;
  }
  form h1 {
    font-size: 22px;
  }
  #section-form {
    padding: 100px;
  }
  .container-input {
    font-size: 17px;
  }
  .container-input div input {
    font-size: 17px;
  }
  .container-plusInputs select {
    font-size: 17px;
  }

  form button {
    font-size: 17px;
  }
  footer {
    padding: 11px 100px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0px 45px;
  }
  #nav-menu {
    display: none;
  }
  #button-menu {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  
  .nav-menuMobile {
    position: absolute;
    z-index: 999;
    top: 69px;
    right: 0px;
    width: 100%;
    background-color: var(--blue1);
  }
  .nav-menuMobile ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .nav-menuMobile .menu {
    display: block;
    padding: 15px;
  }
  .nav-menuMobile li :hover {
    background-color: var(--blue);
  }
  .open {
    display: block;
  }
  #section-hero {
    background: linear-gradient(
        to right bottom,
        rgba(255, 255, 255, 0.39),
        rgba(255, 255, 255, 0.39)
      ),
      url("../imgs/background.hero.png") rgba(23, 23, 23, 1) no-repeat;
    background-position: center;
    height: 100vh;
  }
  #section-hero img {
    width: 210px;
  }
  #section-aboutUs {
    background: url("../imgs/elementAboutUsMobile2.svg") left bottom no-repeat,
      url("../imgs/elementAboutUsMobile1.svg") right top no-repeat, var(--gray0);
    background-size: auto auto, auto auto, auto;
    padding: 95px 45px 10px 45px;
  }
  #section-aboutUs #box-aboutUs div {
    height: 40px;
    padding: 0px 30px;
  }
  #section-aboutUs #box-aboutUs div img {
    width: 4rem;
  }
  #section-aboutUs #box-aboutUs p {
    padding: 30px;
  }
  #section-aboutUs #box-aboutUs {
    font-size: 15px;
    line-height: 28px;
  }
  .tagSection {
    width: 125px;
  }
  .titleSection {
    font-size: 1.6rem;
  }
  #box-button {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  #section-annex {
    background: url("../imgs/elementAnnexmobile1.svg") left top no-repeat,
      url("../imgs/elementAnnexmobile2.svg") right bottom no-repeat, var(--red2);
    background-size: auto auto, auto auto, auto;
    padding: 45px;
  }
  .container-annex {
    flex-direction: column;
  }
  .buttonAnnex {
    height: 70px;
    min-width: 3rem;
    padding: 10px 20px 10px 10px;
    gap: 20px;
    font-size: 15px;
  }
  .buttonAnnex div {
    height: 50px;
    width: 50px;
  }
  .buttonAnnex i {
    font-size: 25px;
  }
  form {
    min-height: 1800px;
    padding: 0px 22px;
  }
  form h1 {
    font-size: 16px;
    margin: 22px 0px;
  }
  #section-form {
    background: url(../imgs/elementFormMobile2.svg) left top no-repeat,
      url(../imgs/elementFormMobile1.svg) right top no-repeat, var(--gray0);
    background-size: auto auto, auto auto, auto;
    padding: 45px;
  }
  .container-input {
    font-size: 15px;
  }
  .container-input div {
    height: 40px;
    border-radius: 8px;
    padding: 12px;
    gap: 12px;
  }
  .container-input div input {
    font-size: 15px;
  }
  .container-input div i {
    font-size: 18px;
  }
  .container-plusInputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .input-file {
    height: 80px !important;
  }
  .input-file label {
    max-width: 180px;
  }
  .container-plusInputs select {
    height: 40px;
    border-radius: 8px;
    padding: 5px;
    font-size: 15px;
  }
  form button {
    font-size: 15px;
    margin: 22px 0px;
  }
  footer {
    padding: 6px 45px;
  }
}
