/* FONT MONTSERRAT */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --yellowBg: #007840;
  --blackColor: #000;
  --whiteColor: #ffff;
  --defaultFont: "Montserrat";
}
html {
  height: 100%;
}
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--defaultFont);
}

body {
  width: 95%;
  margin: auto;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.container {
  max-width: 600px;
  width: 90%;
  height: 100%;
  margin: auto auto 120px;
  display: flex;
  justify-content: start;
  flex-direction: column;
  position: relative;
  padding: 50px 20px 150px;
}
#mobileEnvelope {
  display: none;
}
.containerBg {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 105%;
  z-index: 1;
}
.headerContent {
  width: 70%;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  row-gap: 20px;
  z-index: 2;
}
.pageTitle {
  text-align: center;
  font-size: 32px;
}
.textLogoinstituitionBox {
  width: 100%;
  margin: auto auto 40px;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 30px;
}
.apiDestinationBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.apiDestinationBox div {
  margin-bottom: 10px;
  width: 100%;
}
img.logoInstituition {
  filter: invert(0.5);
}
.apiDestinationBox div:nth-child(3)::after {
  /* margin-bottom: 70px;
  position: relative; */
}
.apiNotificationTitle {
  font-size: 16px;
  text-align: start;
  margin-bottom: 10px;
}
a {
  text-align: center;
  text-decoration: none;
  color: var(--whiteColor);
  background-color: var(--yellowBg);
  max-width: 175px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s;
  display: block;
  margin: 10px 0px;
}
a:hover {
  transform: scale(1.03);
}
a:active {
  filter: brightness(75%);
}

/* Footer section */

.footer {
  width: 100%;
  height: auto;
  padding-bottom: 25px;
}
.footerContainer {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 30px;
}
.InstituteInfoBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  font-size: 12px;
}
.footerTextInstituteInfo {
  text-align: center;
}
.footerLastInformation {
  width: 100%;
  font-size: 13px;
  text-align: center;
}
.footerlastImgTextBox {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}
.footerLastImg {
  margin-bottom: 5px;
}

/* End of Footer section */

/* Window Error */
.windowError {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--whiteColor);
  z-index: 15;
}
.windowErrorContainer {
  width: 100%;
  height: 100%;
  background-image: url("/img/fundo_landing.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 41px -16px var(--blackColor);
  transition: all 0.5s;
  animation: windowErrorAnimation 0.8s ease;
}
.windowErrorImgTextsBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.windowErrorImg {
  width: 30%;
  margin: 0 auto 15px;
}
.windowErrortext {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@keyframes windowErrorAnimation {
  from {
    transform: scale(0);
  }
  to {
    transform: 1;
  }
}
/* End of Window Error */

/* Media Query */
@media (max-width: 768px) {
  #desktopEnvelope {
    display: none;
  }
  #mobileEnvelope {
    display: block;
  }
  .containerBg {
    height: 100%;
  }
  .windowErrortext {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .container {
    width: 100%;
  }
  .pageTitle {
    font-size: 25px;
  }
  .windowErrorImg {
    width: 50%;
  }
}

@media (max-width: 576px) {
  /* body {
    background-image: url("/img/fundo_landing-Mobile.jpg");
    background-position: top;
  } */
  .pageTitle {
    font-size: 20px;
  }
  .windowErrorImg {
    width: 60%;
  }
}

@media (max-width: 378px) {
  .container {
    padding-top: 59px;
    margin-bottom: 120px;
  }
  .pageTitle {
    font-size: 16px;
  }
  .textLogoinstituitionBox {
    flex-direction: column;
    row-gap: 5px;
    margin-bottom: 30px;
  }

  /* .logoInstituition {
    width: 160px;
    height: 31px;
  } */
  .containerBg {
    top: 16i5px;
  }
  .textPage,
  .apiNotificationTitle {
    font-size: 15px;
  }
  .apiNotificationLink {
    width: 100%;
    font-size: 12px;
  }
  .windowErrorImg {
    width: 70%;
  }
  .windowErrortext {
    font-size: 16px;
  }
}
