@font-face {
  font-family: "DINPro";
  src: url(../fonts/DINPro-Medium.ttf);
}
@font-face {
  font-family: "DINProBold";
  src: url(../fonts/DINPro-Bold.ttf);
}
@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Medium.otf);
}
@font-face {
  font-family: "GothamBold";
  src: url(../fonts/Gotham-Bold.otf);
}
@font-face {
  font-family: "GothamBlack";
  src: url(../fonts/Gotham-Black.otf);
}
@font-face {
  font-family: "GothamLight";
  src: url(../fonts/Gotham-Light.otf);
}
@font-face {
  font-family: "Netraly";
  src: url(../fonts/NetralyPersonalUse.otf);
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-ExtraBold.ttf);
}
@font-face {
  font-family: "Open Sans Bold";
  src: url(../fonts/OpenSans-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.max-container {
  width: 71.25rem;
  margin: auto;
}

/* Valores gerais */

.flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.row {
  flex-direction: row;
}
.gap-1 {
  gap: 10px;
}
.gap-2 {
  gap: 20px;
}
.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mobile {
  display: none;
}
@media only screen and (max-width: 765px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .mb-col-1 {
    grid-template-columns: 1fr;
  } 
}

/* Estilo Hero */
.hero {
  padding: 80px 0;
  background-image: url(../assets/bg-hero.webp);
  background-position: center;
  background-size: cover;
}
.hero > .max-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.hero > .max-container > img:first-child {
  width: 100%;
  max-width: 700px;
}
.hero > .max-container > img:nth-child(2) {
  display: none;
}
.hero > .max-container > img:last-child {
  display: none;
}
.hero > .max-container > h2 {
  color: #0c1436;
  font-family: "GothamBlack";
  font-size: 32px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
}
.texto-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.texto-hero > h3 {
  color: #0c1436;
  font-family: "Gotham";
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}
.botao-hero {
  width: 100%;
  display: flex;
  justify-content: center;
}
.estilo-botao {
  border-radius: 80px;
  background: linear-gradient(90deg, #fe7221 0%, #f34615 100%);
  border: none;
  color: #fff;
  font-family: "GothamBold";
  font-size: 18px;
  font-weight: 700;
  line-height: 130%; /* 26px */
  text-transform: uppercase;
  padding: 20px 0;
  width: 100%;
  max-width: 420px;
}
.estilo-botao:hover {
  transition: ease-in 2s;
  background: linear-gradient(270deg, #fe7221 0%, #f34615 100%);
  cursor: pointer;
}

/* Estilo Sonho */
.sonho {
  padding: 80px 0;
  /* background-image: url(../assets/bolsas-bg-r-to-b.webp); */
  background: linear-gradient(
    135deg,
    rgba(255, 152, 152, 1) -20%,
    rgba(249, 249, 249, 1) 25%,
    rgba(249, 249, 249, 1) 75%,
    rgba(152, 230, 255, 1) 120%
  );
  background-position: center;
  background-size: cover;
}
.sonho > .max-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.sonho > .max-container > h3 {
  color: #010c34;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 45px;
  font-style: italic;
  line-height: 131%; /* 58.95px */
  letter-spacing: 3.15px;
  text-transform: uppercase;
}
.cardSonho {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  max-width: 850px;
}
.cardSonho > p {
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 600px;
}
.sonho > .max-container > p {
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 600px;
}

/* Estilo Processo */
.processo {
  padding: 80px 0;
  background: linear-gradient(0deg, #f9f9f9 0%, #f9f9f9 100%), #ff9898;
}
.processo > .max-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.processo > .max-container > h2 {
  color: #010c34;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 45px;
  font-style: italic;
  line-height: 131%;
  text-transform: uppercase;
}
.processo > .max-container > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
}
.processo > .max-container > div > div {
  border-radius: 8px;
  border: 1px solid #010c34;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 36px 24px;
}
.processo > .max-container > div > div > img {
  max-width: 48px;
  width: 100%;
  height: auto;
}
.processo > .max-container > div > div > p {
  color: #010c34;
  text-align: center;
  font-family: "Gotham";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.processo > .max-container > p {
  color: #010c34;
  text-align: center;
  font-family: "GothamBold";
  font-size: 24px;
  line-height: 140%;
  max-width: 700px;
  margin: 0 auto;
}
.processo > .max-container > button {
  margin: 0 auto;
}

/* Estilo Descubra */

.descubra {
  padding: 80px 0;
  background-image: url(../assets/bg-footer.webp);
  background-position: center;
  background-size: cover;
}
.descubra > .max-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-passo {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-items: center;
}
.title-passo > p {
  font-family: "Netraly";
  font-size: 42px;
  rotate: -20deg;
}
.title-passo > p:last-child {
  rotate: 20deg;
}
.title-passo > h2 {
  color: #fff;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 36px;
  font-style: normal;
  line-height: 140%;
  text-transform: uppercase;
  max-width: 450px;
}
.descubra > .max-container > p {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  line-height: 140%;
  text-transform: uppercase;
}

.grid-passo {
  display: grid;
  gap: 20px;
}
.card-grid-passo {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 30px 20px;
  min-height: 280px;
}
.card-grid-passo > p {
  color: #f05025;
  text-align: center;
}
.card-grid-passo > a {
  
  font-family: "Gotham";
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #f05025;
  border-radius: 38px;
  padding: 10px 20px;
  color: #f05025;
}
.card-grid-passo > a:hover {
  transition: ease-in 0.3s;
  color: #c2421e;
  background-color: #f8f8f8;
}
.card-grid-passo > p:first-child {
  font-family: "GothamBlack";
  font-size: 32px;
}
.card-grid-passo > p:nth-child(2) {
  font-family: "GothamBold";
  font-size: 22px;
  text-transform: uppercase;
}
.card-grid-passo > p:nth-child(3) {
  color: #fe7221;
  font-family: "Gotham";
}
.card-grid-passo > ul {
  padding-left: 15px;
}
.card-grid-passo > ul > li {
  color: #fc4517;
  font-family: "GothamBold";
  font-size: 18px;
  font-style: normal;
  line-height: 20px;
}

.card-grid-info {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 12px;
  padding: 30px 20px;
  min-height: 280px;
}
.card-grid-info > p {
  color: #f05025;
  text-align: center;
  font-family: "GothamBlack";
  text-transform: uppercase;
  font-size: 26px;
}

@media only screen and (max-width: 765px) {
  .title-passo > p {
    font-size: 20px;
  }
  .title-passo > h2 {
    font-size: 24px;
  }
  .descubra > .max-container > p {
    font-size: 20px;
  }

  .card-grid-passo {
    justify-content: center;
    padding: 30px 15px;
    min-height: 380px;
  }
  .card-grid-passo > ul {
    padding-left: 15px;
  }
  .card-grid-passo > ul > li {
    font-family: "Gotham";
    font-size: 14px;
    line-height: 16px;
  }
  .card-grid-info {
    min-height: 380px;
  }
}

/* Estilo barra laranja */

.barra-laranja {
  width: 100%;
  height: 20px;
  background: #ff6600;
}

/* Estilo dicas */
.dicas {
  padding: 80px 0;
  background: linear-gradient(0deg, #f9f9f9 0%, #f9f9f9 100%), #ff9898;
}
.dicas > .max-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.dicas > .max-container > h2 {
  color: #010c34;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 45px;
  font-style: italic;
  line-height: 131%;
  text-transform: uppercase;
}
.dicas > .max-container > p {
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  max-width: 950px;
}
.card-dicas {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  border-radius: 37px;
  background: #fe7221;
  padding: 40px;
}
.card-dicas > ul {
  padding-left: 20px;
}
.card-dicas > ul > li {
  color: #ffffff;
  font-family: "Gotham";
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 10px;
}
/* Estilo carrosel */
.splide {
  height: fit-content;
  width: 100%;
  padding: 0 10px;
}
.splide__slide {
  height: max-content;
  padding: 0;
}
.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.card > img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 20px;
  color: white;
}

.tag {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 25px;
  font-family: "GothamBold";
  text-transform: uppercase;
  min-width: 60px;
  text-align: center;
}

.card-content > h2 {
  margin: 0;
  font-family: "GothamBold";
  font-size: 20px;
  line-height: 1.4;
  min-height: 58px;
}
.splide__track {
  margin-bottom: 50px;
}
.splide__pagination button {
  background: #d9d9d9;
}
.splide__pagination button.is-active {
  background: #d6390d;
}

/* Estilo Oportunidades */

.oportunidades {
  padding: 80px 0;
  background: linear-gradient(
    45deg,
    rgba(255, 152, 152, 1) -20%,
    rgba(249, 249, 249, 1) 25%,
    rgba(249, 249, 249, 1) 75%,
    rgba(152, 230, 255, 1) 120%
  );
  background-position: center;
  background-size: cover;
}
.oportunidades > .max-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.oportunidades > .max-container > h2 {
  color: #010c34;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 45px;
  font-style: italic;
  line-height: 131%;
  text-transform: uppercase;
}
.oportunidades > .max-container > p {
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
}
.text-atend {
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  max-width: 550px;
}

.botao-atend {
  border-radius: 37px;
  border: 6px solid #193762;

  padding: 10px 30px;
  text-decoration: none;
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 44.8px */
}
.botao-atend:hover {
  transition: ease-in 0.3s;
  background-color: #ececec;
}

.text-atend-info {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 600px;
}

.oportunidades > .max-container > a {
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
}

/* Estilo Atividades Extracurriculares */

.atividades {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 152, 152, 1) -20%,
    rgba(249, 249, 249, 1) 25%,
    rgba(249, 249, 249, 1) 75%,
    rgba(152, 230, 255, 1) 120%
  );
  background-position: center;
  background-size: cover;
}
.atividades > .max-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.atividades > .max-container > h2 {
  color: #010c34;
  text-align: center;
  font-family: "Open Sans Bold";
  font-size: 45px;
  font-style: italic;
  line-height: 131%;
  text-transform: uppercase;
}
.atividades > .max-container > p {
  color: #0c1436;
  text-align: center;
  font-family: "Gotham";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 1050px;
  margin: 20px 0;
}

.grid-insc {
  display: grid;
  gap: 20px;
  max-width: 800px;
}
.card-insc {
  background: #193762;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 30px 20px;
  min-height: 150px;
}
.card-insc > p {
  color: #fff;
  text-align: center;
  font-family: "Gotham";
  font-size: 20px;
  font-style: normal;
  line-height: 24px; /* 120% */
  text-transform: uppercase;
}
.card-insc > a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Gotham";
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 2px solid #fff;
  border-radius: 38px;
}
.card-insc > a:hover {
  transition: ease-in 0.3s;
  background-color: #ffffff25;
}
.card-insc-isolado {
  max-width: 800px;
  width: 100%;
  margin-bottom: 20px;
}

/* Estilo Footer */

.footer {
  padding: 80px 0 0 0;
  background: url(../assets/bg-footer.webp);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.footer > .max-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer > .max-container > div:first-child {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 40px;
}
.footer > .max-container > div > h2 {
  color: #fff;
  font-family: "Open Sans";
  font-size: 50px;
  font-style: italic;
  font-weight: 800;
  line-height: 126%; /* 63px */
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer > .max-container > div > p {
  color: #fff;
  font-family: "Gotham";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer > .max-container > div > p:nth-child(3) {
  text-align: left;
}
.footer > .max-container > div > button {
  border-radius: 80px;
  border: 1px solid #fff;
  background: #00000000;
  color: #fff;
  font-family: "GothamBold";
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  padding: 20px 35px;
  width: 100%;
  max-width: 420px;
}
.footer > .max-container > div > button:hover {
  transition: ease-in 0.3s;
  background: #00000027;
  cursor: pointer;
}
.footer > .max-container > div:last-child {
  display: flex;
  flex-direction: column-reverse;
  width: 40%;
}
.footer > .max-container > div:last-child > img {
  width: 700px;
  margin-left: -150px;
}

@media only screen and (max-width: 1140px) {
  .max-container {
    width: 100%;
  }
  .processo {
    padding: 80px 40px;
  }

  .dicas {
    padding: 80px 40px;
  }

  .oportunidades {
    padding: 80px 40px;
  }

  .atividades {
    padding: 80px 40px;
  }

  .footer {
    padding: 80px 40px 0 40px;
  }

  .footer > .max-container > div:first-child {
    margin-bottom: 80px;
  }
  .footer > .max-container > div > h2 {
    font-size: 36px;
  }
  .footer > .max-container > div > p {
    font-size: 20px;
  }
  .footer > .max-container > div > button {
    font-size: 16px;
    padding: 20px 35px;
    width: 100%;
    max-width: 350px;
  }
  .footer > .max-container > div:last-child > img {
    width: 500px;
    margin-left: -100px;
  }
}

@media only screen and (max-width: 1026px) {
  .processo > .max-container > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .sonho {
    padding: 80px 40px;
  }
  .descubra {
    padding: 80px 40px;
  }

  .footer > .max-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer > .max-container > div {
    width: 100% !important;
  }
  .footer > .max-container > div:first-child {
    margin-bottom: 0;
  }
  .footer > .max-container > div > button {
    margin: 0 auto;
  }
  .footer > .max-container > div:last-child > img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 765px) {
  .processo > .max-container > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .sonho {
    padding: 80px 40px;
  }

  .descubra {
    padding: 80px 40px;
  }

  .accordion-box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }

  .accordion-box > div > div > img {
    width: 100%;
    max-width: 100%;
  }
/* 
  .atividades > .max-container > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  } */

  .footer > .max-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer > .max-container > div {
    width: 100% !important;
  }
  .footer > .max-container > div:first-child {
    margin-bottom: 0;
  }
  .footer > .max-container > div > button {
    margin: 0 auto;
  }
  .footer > .max-container > div:last-child > img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 430px) {
  .hero {
    padding: 40px 0 0 0;
    background-image: none;
    background: linear-gradient(84deg, #ffb898 20%, #ffc6dc 80%);
  }
  .hero > .max-container {
    gap: 30px;
  }
  .hero > .max-container > img:first-child {
    display: none;
  }
  .hero > .max-container > img:nth-child(2) {
    display: block;
    width: 100%;
    max-width: 200px;
  }
  .hero > .max-container > img:last-child {
    display: block;
    width: 100%;
    max-width: 700px;
  }
  .hero > .max-container > h2 {
    font-size: 28px;
  }
  .botao-hero {
    padding: 0 20px;
  }
  .hero > .max-container > button {
    margin: 0 20px;
  }
  .texto-hero {
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
  }
  .texto-hero > h3 {
    font-size: 20px;
    max-width: 280px;
  }

  .sonho {
    padding: 40px 20px;
  }
  .sonho > .max-container > h3 {
    font-size: 24px;
  }
  .cardSonho > p {
    font-size: 18px;
  }
  .sonho > .max-container > p {
    font-size: 20px;
  }

  .processo {
    padding: 40px 20px;
  }
  .processo > .max-container > h2 {
    text-align: center;
    font-size: 24px;
  }
  .processo > .max-container > div > div {
    gap: 30px;
    padding: 25px 20px;
  }
  .processo > .max-container > div > div > p {
    font-size: 20px;
  }
  .processo > .max-container > p {
    font-size: 20px;
  }

  .descubra {
    padding: 40px 20px;
  }

  .dicas {
    padding: 40px 20px;
  }
  .dicas > .max-container > h2 {
    font-size: 28px;
  }
  .dicas > .max-container > p {
    font-size: 16px;
    line-height: 130%;
  }

  .oportunidades {
    padding: 40px 20px;
  }
  .oportunidades > .max-container > h2 {
    font-size: 28px;
  }
  .text-atend {
    font-size: 16px;
    line-height: 130%;
  }
  .text-atend-info {
    font-size: 16px;
    line-height: 130%;
  }

  .atividades {
    padding: 40px 20px;
  }
  .atividades > .max-container > h2 {
    font-size: 28px;
  }
  .atividades > .max-container > p {
    font-size: 16px;
    line-height: 130%;
  }

  .footer {
    padding: 40px 20px 0 20px;
  }

  .footer > .max-container > div > h2 {
    font-size: 24px;
  }
  .footer > .max-container > div > p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .footer > .max-container > div > button {
    font-size: 16px;
    padding: 20px 0;
    width: 100%;
    max-width: 350px;
  }
}

@media only screen and (max-width: 430px) {
  .estilo-botao {
    font-size: 16px;
  }
  .atividades > .max-container > h2 {
    font-size: 22px;
  }
}
