@keyframes home-vetor {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(12%);
  }
}
@keyframes home-vetor-2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(5%);
  }
}
@keyframes efeito-entrada {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  50% {
    opacity: 0.5;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes efeito-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate-arrow-start {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes rotate-arrow-end {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0);
  }
}
@keyframes heighOpentItems {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes heighClosetItems {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFEFEB;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.main__homelaranja {
  margin-top: 80px;
  padding: 0 48px;
  min-height: 70vh;
  background-color: #FF6138;
  background-image: url("../../imgs/home/main-hero-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  .main__homelaranja {
    padding: 0 24px;
  }
}
.main__homelaranja::before {
  content: "";
  width: 100%;
  height: 455px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../../imgs/vetores/vetor-arco.svg");
  background-repeat: no-repeat;
  background-position: center 20px;
  display: block;
  animation: efeito-opacity 1.3s ease-out forwards;
}
.main__homelaranja .main__container {
  max-width: 1290px;
  margin: 70px auto 0 auto;
}
.main__homelaranja .main__articletitulo {
  margin-bottom: 7px;
  transition: 0.3s;
}
.main__homelaranja .main__articletitulo h1 {
  max-width: 540px;
  margin: 0 auto 16px auto;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 2.25rem;
  animation: efeito-entrada 1s ease-out forwards;
}
.main__homelaranja .main__articletitulo p {
  max-width: 540px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  animation: efeito-entrada 1.1s ease forwards;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.main__homelaranja .main__divimg {
  position: relative;
  animation: efeito-opacity 1s ease-out forwards;
}
.main__homelaranja .main__divimg .v--cofre,
.main__homelaranja .main__divimg .v--calculadora,
.main__homelaranja .main__divimg .v--maos,
.main__homelaranja .main__divimg .v--carteira {
  position: absolute;
  transition: 0.3s ease;
}
@media screen and (max-width: 48rem) {
  .main__homelaranja .main__divimg .v--cofre,
  .main__homelaranja .main__divimg .v--calculadora,
  .main__homelaranja .main__divimg .v--maos,
  .main__homelaranja .main__divimg .v--carteira {
    max-width: 100px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main__homelaranja .main__divimg .v--cofre,
  .main__homelaranja .main__divimg .v--calculadora,
  .main__homelaranja .main__divimg .v--maos,
  .main__homelaranja .main__divimg .v--carteira {
    max-width: 72px;
  }
}
.main__homelaranja .main__divimg .v--cofre,
.main__homelaranja .main__divimg .v--calculadora {
  left: 0;
}
.main__homelaranja .main__divimg .v--maos,
.main__homelaranja .main__divimg .v--carteira {
  right: 0;
}
.main__homelaranja .main__divimg .v--cofre {
  top: 0;
  left: 18%;
  animation: home-vetor 2800ms linear forwards infinite alternate;
}
@media screen and (max-width: 64rem) {
  .main__homelaranja .main__divimg .v--cofre {
    left: 8%;
  }
}
.main__homelaranja .main__divimg .v--calculadora {
  bottom: 182px;
  left: 5%;
  animation: home-vetor 2800ms linear forwards infinite alternate-reverse;
}
@media screen and (max-width: 64rem) {
  .main__homelaranja .main__divimg .v--calculadora {
    left: -2%;
  }
}
.main__homelaranja .main__divimg .v--maos {
  top: 16px;
  right: 18%;
  animation: home-vetor 2800ms linear forwards infinite alternate;
}
@media screen and (max-width: 64rem) {
  .main__homelaranja .main__divimg .v--maos {
    right: 8%;
  }
}
.main__homelaranja .main__divimg .v--carteira {
  bottom: 177px;
  right: 5%;
  animation: home-vetor 2800ms linear forwards infinite alternate-reverse;
}
@media screen and (max-width: 64rem) {
  .main__homelaranja .main__divimg .v--carteira {
    right: -2%;
  }
}
.main__homelaranja .main__divimg .main__divimg__mainimg {
  display: flex;
  justify-content: center;
}

.main {
  margin-top: 80px;
  padding: 0 48px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  .main {
    padding: 0 24px;
  }
}
.main .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 142px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 48rem) {
  .main .main__container {
    margin: 100px auto 0 auto;
    gap: 42px;
    flex-direction: column;
    align-items: center;
  }
}
.main .main__articletitulo,
.main .main__divimg {
  position: relative;
  z-index: 3;
}
.main .main__articletitulo {
  margin-top: 30px;
}
@media screen and (max-width: 48rem) {
  .main .main__articletitulo {
    margin: 0;
  }
}
.main .main__articletitulo h1 {
  max-width: 580px;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.0625rem;
  animation: efeito-entrada 1s ease-out forwards;
}
@media screen and (max-width: 64rem) {
  .main .main__articletitulo h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.main .main__articletitulo p {
  max-width: 491px;
  margin: 16px 0 48px 0;
  color: #FFFFFF;
  animation: efeito-entrada 1.1s ease-out forwards;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .main .main__articletitulo p br {
    display: none;
  }
}
.main .main__articletitulo a {
  animation: efeito-entrada 1.2s ease-out forwards;
}
.main .main__articletitulo .button__grupo {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.main .main__divimg {
  flex-shrink: 0;
  align-self: flex-end;
  animation: efeito-opacity 1s ease-out forwards;
}
@media screen and (max-width: 48rem) {
  .main .main__divimg {
    margin: 0 auto;
  }
}

.main--laranja {
  min-height: 60vh;
  background-color: #FF6138;
  background-image: url("../../imgs/img/main-hero-banner-2.png");
}
.main--laranja .main__container::before {
  content: "";
  width: 910px;
  height: 455px;
  position: absolute;
  right: -300px;
  bottom: 0;
  background-image: url("../../imgs/vetores/vetor-arco.svg");
  background-repeat: no-repeat;
  background-position: right 20px;
  display: block;
  animation: efeito-opacity 1s ease-in forwards;
}
@media screen and (max-width: 48rem) {
  .main--laranja .main__container::before {
    right: calc(100% - 768px);
    background-size: 100%;
    background-position: center 20px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--laranja .main__container::before {
    display: none;
  }
}

.main--laranja-2 {
  min-height: 80vh;
  background-color: #FF6138;
  background-image: url("../../imgs/home/main-hero-banner.png");
}
.main--laranja-2 .main__container {
  margin: 70px auto 150px auto;
  align-items: center;
  gap: 32px;
}

.main--laranja-3 {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #FF6138;
  background-image: url("../../imgs/img/main-hero-banner-2.png");
}
@media screen and (max-width: 80rem) {
  .main--laranja-3 {
    padding: 0 24px;
  }
}
.main--laranja-3 .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--laranja-3 .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--laranja-3 .main__articletitulo {
  margin-bottom: 80px;
}
@media screen and (max-width: 80rem) {
  .main--laranja-3 .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--laranja-3 .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--laranja-3 .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--laranja-3 .main__divimg {
    height: 400px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--laranja-3 .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.main--azul-2 {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #1C8BCC;
  background-image: url("../../imgs/ensino-superior/main-hero-banner.png");
  position: relative;
}
@media screen and (max-width: 80rem) {
  .main--azul-2 {
    padding: 0 24px;
  }
}
.main--azul-2 .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 142px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--azul-2 .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--azul-2 .main__articletitulo {
  margin-bottom: 100px;
}
@media screen and (max-width: 80rem) {
  .main--azul-2 .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--azul-2 .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--azul-2 .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-2 .main__divimg {
    height: 350px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-2 .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.main--azul-3 {
  min-height: 70vh;
  background-color: #165DAD;
  background-image: url("../../imgs/iso/main-hero-banner.png");
}
.main--azul-3 .main__container {
  margin: 70px auto 150px auto;
  align-items: center;
  gap: 0 !important;
}

.main--azul-4 {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #0A4793;
  background-image: url("../../imgs/in-company/main-hero-banner.png");
}
@media screen and (max-width: 80rem) {
  .main--azul-4 {
    padding: 0 24px;
  }
}
.main--azul-4 .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--azul-4 .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--azul-4 .main__articletitulo {
  margin-bottom: 100px;
}
@media screen and (max-width: 80rem) {
  .main--azul-4 .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--azul-4 .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--azul-4 .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-4 .main__divimg {
    height: 350px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-4 .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.main--azul-5 {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #2275B5;
  background-image: url("../../imgs/educacional/main-hero-banner.png");
}
@media screen and (max-width: 80rem) {
  .main--azul-5 {
    padding: 0 24px;
  }
}
.main--azul-5 .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--azul-5 .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--azul-5 .main__articletitulo {
  margin-bottom: 100px;
}
@media screen and (max-width: 80rem) {
  .main--azul-5 .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--azul-5 .main__articletitulo h1 {
  max-width: 500px;
  line-height: 3.5rem;
}
.main--azul-5 .main__articletitulo p {
  max-width: 500px;
}
.main--azul-5 .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--azul-5 .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-5 .main__divimg {
    height: 350px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul-5 .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.main--amarelo {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #E0B109;
  background-image: url("../../imgs/franquias/main-hero-banner.png");
}
@media screen and (max-width: 80rem) {
  .main--amarelo {
    padding: 0 24px;
  }
}
.main--amarelo .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--amarelo .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--amarelo .main__articletitulo {
  margin-bottom: 100px;
}
@media screen and (max-width: 80rem) {
  .main--amarelo .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--amarelo .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--amarelo .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--amarelo .main__divimg {
    height: 350px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--amarelo .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.main--roxo {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #503D92;
  background-image: url("../../imgs/governo/main-hero-banner.png");
}
@media screen and (max-width: 80rem) {
  .main--roxo {
    padding: 0 24px;
  }
}
.main--roxo .main__container {
  width: 100%;
  max-width: 1290px;
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (max-width: 80rem) {
  .main--roxo .main__container {
    margin: 100px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
}
.main--roxo .main__articletitulo {
  margin-bottom: 100px;
}
@media screen and (max-width: 80rem) {
  .main--roxo .main__articletitulo {
    margin-bottom: 0;
  }
}
.main--roxo .main__divimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 80rem) {
  .main--roxo .main__divimg {
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--roxo .main__divimg {
    height: 350px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--roxo .main__divimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.footer {
  padding: 40px 48px 0px 48px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  .footer {
    padding: 40px 24px 0px 24px;
  }
}
@media screen and (max-width: 48rem) {
  .footer {
    background-size: contain;
    background-position: bottom;
  }
}
.footer .footer__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 64rem) {
  .footer .footer__container {
    gap: 30px;
  }
}
@media screen and (max-width: 48rem) {
  .footer .footer__container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__container {
    flex-direction: column;
  }
}
.footer .footer__redessociais {
  flex-shrink: 0;
}
.footer .footer__redessociais p {
  margin-top: 16px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
}
.footer .footer__redessociais small {
  margin: 16px 0;
  display: block;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
.footer .footer__redessociais .footer__redessociais__lista {
  display: flex;
  gap: 16px;
}
.footer .footer__redessociais .footer__redessociais__lista a {
  display: block;
}
.footer .footer__navlinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 80rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 64rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 48rem) {
  .footer .footer__navlinks {
    order: 3;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__navlinks {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .footer__navlinks .footer__navlinks__items p {
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}
.footer .footer__navlinks .footer__navlinks__items a {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.875rem;
}
@media screen and (max-width: 33.75rem) {
  .footer .footer__map {
    order: 3 !important;
  }
}
.footer .footer__map .footer__map__items {
  margin-bottom: 24px;
}
.footer .footer__map .footer__map__items p {
  margin-bottom: 4px;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
}
.footer .footer__map .footer__map__items small {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.footer .footer__map .footer__map__container {
  width: 100%;
  height: 237px;
  background-color: #FFFFFF;
}
.footer .footer__copy {
  margin: 45px 0 23px 0;
}
.footer .footer__copy .footer__copy__lista {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer__copy .footer__copy__info {
  margin-top: 16px;
  text-align: center;
  color: #FFFFFF;
}
.footer .footer__copy .footer__copy__info a {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer--laranja {
  background-color: #FF6138;
  background-image: url("../../imgs/home/footer-hero-banner.png");
}

.footer--azul-2 {
  background-color: #1C8BCC;
  background-image: url("../../imgs/ensino-superior/footer-superior.png");
}

.footer--azul-3 {
  background-color: #165DAD;
  background-image: url("../../imgs/iso/footer-iso.png");
}

.footer--azul-4 {
  background-color: #0A4793;
  background-image: url("../../imgs/in-company/footer-in-company.png");
}

.footer--azul-5 {
  background-color: #2275B5;
  background-image: url("../../imgs/educacional/footer-educacional.png");
}

.footer--azul-6 {
  background-color: #1E5A88;
  background-image: url("../../imgs/escola-publica/footer-escola-publica.png");
}

.footer--amarelo {
  background-color: #E0B109;
  background-image: url("../../imgs/franquias/footer-franquias.png");
}

.footer--roxo {
  background-color: #503D92;
  background-image: url("../../imgs/governo/footer-governo.png");
}

.card__modal {
  max-width: 1148px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  gap: 109px;
  background-color: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
}
@media screen and (max-width: 80rem) {
  .card__modal {
    gap: 64px;
  }
}
@media screen and (max-width: 64rem) {
  .card__modal {
    gap: 32px;
  }
}
@media screen and (max-width: 48rem) {
  .card__modal {
    padding: 0;
  }
}
.card__modal .card__modal__divcapa {
  flex-shrink: 0;
}
@media screen and (max-width: 64rem) {
  .card__modal .card__modal__divcapa {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 48rem) {
  .card__modal .card__modal__divcapa {
    display: none;
  }
}
.card__modal .card__modal__divcapa img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
.card__modal .card__modal__divinfos {
  width: 100%;
  padding: 56px 8px 8px 0;
}
@media screen and (max-width: 48rem) {
  .card__modal .card__modal__divinfos {
    padding: 56px;
  }
}
@media screen and (max-width: 33.75rem) {
  .card__modal .card__modal__divinfos {
    padding: 48px 28px;
  }
}
.card__modal .card__modal__divinfos h1 {
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
  text-transform: capitalize;
}
.card__modal .card__modal__divinfos p {
  max-width: 410px;
  margin-bottom: 32px;
  color: #3A3A3A;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 2.15625rem;
  font-weight: 400;
}
@media screen and (max-width: 64rem) {
  .card__modal .card__modal__divinfos p {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.card__modal .card__modal__divinfos__divinput {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card__modal .card__modal__divinfos__divinput .card__modal__divinfos__inputs label {
  max-width: 410px;
  display: flex;
  flex-direction: column;
}
.card__modal .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #FF6138;
}
.card__modal .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div svg {
  flex-shrink: 0;
}
.card__modal .card__modal__divinfos__divinput .card__modal__divinfos__inputs label input {
  width: 100%;
  padding: 16px 0;
  font-size: 1rem;
  color: #3A3A3A;
  border: none;
  outline: none;
}
.card__modal .card__modal__divinfos__divbuttons {
  margin-top: 62px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
@media screen and (max-width: 48rem) {
  .card__modal .card__modal__divinfos__divbuttons {
    justify-content: flex-start;
  }
}
.card__modal .card__modal__divinfos__divbuttons button {
  flex: 0.45;
  cursor: pointer;
}
@media screen and (max-width: 33.75rem) {
  .card__modal .card__modal__divinfos__divbuttons button {
    flex: 1;
  }
}

.card__modal--azul-2 .card__modal__divinfos h1 {
  color: #338CC8;
}
.card__modal--azul-2 .card__modal__divinfos__inputs svg path {
  stroke: #338CC8;
}
.card__modal--azul-2 .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #338CC8;
}

.card__modal--azul-3 .card__modal__divinfos h1 {
  color: #165DAD;
}
.card__modal--azul-3 .card__modal__divinfos__inputs svg path {
  stroke: #165DAD;
}
.card__modal--azul-3 .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #165DAD;
}

.card__modal--azul-4 .card__modal__divinfos h1 {
  color: #0A4793;
}
.card__modal--azul-4 .card__modal__divinfos__inputs svg path {
  stroke: #0A4793;
}
.card__modal--azul-4 .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #0A4793;
}

.card__modal--azul-5 .card__modal__divinfos h1 {
  color: #2275B5;
}
.card__modal--azul-5 .card__modal__divinfos__inputs svg path {
  stroke: #2275B5;
}
.card__modal--azul-5 .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #2275B5;
}

.card__modal--amarelo .card__modal__divinfos h1 {
  color: #DBAC04;
}
.card__modal--amarelo .card__modal__divinfos__inputs svg path {
  stroke: #DBAC04;
}
.card__modal--amarelo .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #DBAC04;
}

.card__modal--roxo .card__modal__divinfos h1 {
  color: #503D92;
}
.card__modal--roxo .card__modal__divinfos p span {
  color: #503D92;
  font-weight: 500;
}
.card__modal--roxo .card__modal__divinfos__inputs svg path {
  stroke: #503D92;
}
.card__modal--roxo .card__modal__divinfos__divinput .card__modal__divinfos__inputs label div {
  border-bottom: 1px solid #503D92;
}

.cards {
  padding: 24px;
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
  border-radius: 2rem;
}
.cards::before {
  content: "";
  width: 82px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.cards .cards__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cards h1 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.cards p {
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3125rem;
}
.cards p strong {
  color: #FF6138;
  font-weight: 600;
}

.cards__lista {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cards__lista li {
  display: flex;
  gap: 8px;
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.cards__lista li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cards__lista--laranja li::before {
  background-image: url("../../imgs/vetores/check-circle-laranja.svg");
}

.cards--laranja::before {
  background-color: #FF6138;
}
.cards--laranja .cards__icon--laranja {
  background-color: rgba(243, 201, 177, 0.2);
}
.cards--laranja .cards__titulo--laranja {
  color: #FF6138;
}

.cards--verdeclaro::before {
  background-color: #70BE5A;
}
.cards--verdeclaro .cards__icon--verde {
  background-color: rgba(194, 228, 185, 0.2);
}
.cards--verdeclaro .cards__titulo--verde {
  color: #70BE5A;
}

.cards--amarelo::before {
  background-color: #E0B109;
}
.cards--amarelo .cards__icon--amarelo {
  background-color: #fbf5df;
}
.cards--amarelo .cards__titulo--amarelo {
  color: #E0B109;
}

.cards--azul-1::before {
  background-color: #165DAD;
}
.cards--azul-1 .cards__icon--azul {
  background-color: rgba(152, 200, 255, 0.2);
}
.cards--azul-1 .cards__titulo--azul {
  color: #165DAD;
}

.cards--azul-2::before {
  background-color: #165DAD;
}
.cards--azul-2 .cards__icon--azul {
  background-color: rgba(142, 192, 255, 0.2);
}
.cards--azul-2 .cards__titulo--azul {
  color: #165DAD;
}

.cards--roxo::before {
  background-color: #503D92;
}
.cards--roxo .cards__icon--roxo {
  background-color: rgba(97, 77, 172, 0.2);
}
.cards--roxo .cards__titulo--roxo {
  color: #503D92;
}

.cards-3--roxo .cards-3__descricao h2 {
  color: #503D92 !important;
}
.cards-3--roxo .cards-3__descricao .cards-3__descricao__divicon svg path {
  stroke: #503D92 !important;
}

.cards-5--roxo::before {
  background-color: #524093;
}
.cards-5--roxo .cards-5__icone svg path {
  stroke: #503D92;
}
.cards-5--roxo .cards-5__info h1 {
  color: #524093;
}

.cards-5--azul::before {
  background-color: #2275B5;
}
.cards-5--azul .cards-5__icone svg path {
  stroke: #2275B5;
}
.cards-5--azul .cards-5__info h1 {
  color: #2275B5;
}

.cards-2 {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
  overflow: hidden;
}
.cards-2::before {
  content: "";
  width: 82px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #FF6138;
}
.cards-2 .cards-2__divimg {
  width: 100%;
  height: 231px;
  overflow: hidden;
}
.cards-2 .cards-2__divimg img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards-2 .cards-2__descricao {
  padding: 8px 24px 34px 24px;
}
.cards-2 .cards-2__descricao h2 {
  color: #FF6138;
  font-size: 1.25rem;
  font-weight: 600;
}
.cards-2 .cards-2__descricao span {
  margin: 8px 0;
  display: block;
  color: #B7B7B7;
  font-size: 0.8125rem;
  font-weight: 400;
}
.cards-2 .cards-2__descricao p {
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
}
.cards-2 .cards-2__descricao p + p {
  margin-top: 24px;
}

.cards-3 {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
  overflow: hidden;
}
.cards-3 .cards-3__descricao {
  padding: 24px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cards-3 .cards-3__descricao h2 {
  color: #FF6138;
  font-size: 1.25rem;
  font-weight: 600;
}
.cards-3 .cards-3__descricao .cards-3__descricao__divicon {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cards-3 .cards-3__img {
  width: 100%;
  height: 270px;
  position: relative;
}
.cards-3 .cards-3__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cards-3 .cards-3__img .cards-3__img__linksocial {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.cards-3 .cards-3__img .cards-3__img__linksocial p {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
.cards-3 .cards-3__img .flex__socialmidia {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.cards-4 {
  max-width: 500px;
  padding: 24px 24px 34px 24px;
  position: relative;
  display: flex;
  gap: 32px;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  animation: home-vetor 3000ms linear forwards infinite alternate;
}
@media screen and (max-width: 33.75rem) {
  .cards-4 {
    gap: 20px;
  }
}
.cards-4::before {
  content: "";
  width: 64px;
  height: 52px;
  position: absolute;
  bottom: 0;
  background-image: url("../../imgs/vetores/destaque.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.cards-4 .cards-4__img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.cards-4 .cards-4__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cards-4 .cards-4__info {
  max-width: 519px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cards-4 .cards-4__info .cards-4__info__header {
  display: flex;
  justify-content: space-between;
}
.cards-4 .cards-4__info .cards-4__info__header h1 {
  color: #074087;
  font-size: 1.125rem;
  font-weight: 600;
}
.cards-4 .cards-4__info .cards-4__info__descricao {
  max-width: 351px;
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
@media screen and (max-width: 33.75rem) {
  .cards-4 .cards-4__info .cards-4__info__descricao {
    font-size: 1rem;
  }
}

.cards-5 {
  max-width: 412px;
  padding: 24px;
  position: relative;
  display: flex;
  gap: 24px;
  background-color: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
}
@media screen and (max-width: 33.75rem) {
  .cards-5 {
    gap: 20px;
  }
}
.cards-5::before {
  content: "";
  width: 82px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.cards-5 .cards-5__icone {
  width: 56px;
  height: 56px;
  background-color: #ECF3F9;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}
.cards-5 .cards-5__info h1 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 600;
}
.cards-5 .cards-5__info p {
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 19px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #FFEFEB;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 62.4375rem;
  transition: 0.3s ease-out;
  border: none;
  text-transform: uppercase;
}
@media screen and (max-width: 33.75rem) {
  .button {
    font-size: 1.125rem;
  }
}

.button__outline {
  background-color: transparent;
  border: 1px solid #FF6138;
}

.button__outline--2 {
  background-color: transparent;
  border: 1px solid #338CC8;
}

.button__outline--3 {
  background-color: transparent;
  border: 1px solid #DBAC04;
}

.button__outline--4 {
  background-color: transparent;
  border: 1px solid #165DAD;
}

.button__outline--5 {
  background-color: transparent;
  color: #FFEFEB;
  border: 1px solid #FFEFEB;
}

.button__outline--6 {
  background-color: transparent;
  border: 1px solid #0A4793;
}

.button__outline--7 {
  background-color: transparent;
  border: 1px solid #2275B5;
}

.button__outline--roxo {
  background-color: transparent;
  border: 1px solid #503D92;
}

.button__outline--branco {
  background-color: transparent;
  color: #FFEFEB;
  border: 1px solid #FFEFEB;
}

.button__small {
  padding: 9.5px 16px;
  font-weight: 600;
}

.button__full {
  color: #FFFFFF;
}

.button__full--laranja {
  background-color: #FF6138;
  color: #FFFFFF;
}

.button__full--azul-2 {
  background-color: #1B6AA8;
  color: #FFFFFF;
}

.button__full--amarelo {
  background-color: #CDA206;
  color: #FFFFFF;
}

.button__full--azul-3 {
  background-color: #165DAD;
  color: #FFFFFF;
}

.button__full--azul-4 {
  background-color: #0A4793;
  color: #FFFFFF;
}

.button__full--azul-5 {
  background-color: #2275B5;
  color: #FFFFFF;
}

.button__full--roxo {
  background-color: #503D92;
  color: #FFFFFF;
}

.button--verde {
  color: #116737;
}

.button--verde-2 {
  color: #70BE5A;
}

.button--laranja {
  color: #E97244;
}

.button--laranja-2 {
  color: #F78C51;
}

.button--laranja-3 {
  color: #FF6138;
}

.button--azulclaro {
  color: #338CC8;
}

.button--azulclaro-2 {
  color: #1C8BCC;
}

.button--azul {
  color: #004B97;
}

.button--azul-2 {
  color: #165DAD;
}

.button--azul-3 {
  color: #0A4793;
}

.button--azul-4 {
  color: #2275B5;
}

.button--azulclaro-3 {
  color: #2275B5;
}

.button--amarelo {
  color: #E0B109;
}

.button--roxo {
  color: #524093;
}

.button--preto {
  color: #090C15;
}

.glider-contain {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.glider {
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  transform: translateZ(0);
  border-radius: 2rem;
}

.glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  z-index: 1;
}
@media screen and (max-width: 33.75rem) {
  .glider-track {
    gap: 4px;
  }
}

.glider.draggable {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: grab;
}

.glider.draggable .glider-slide img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.glider.drag {
  cursor: grabbing;
}

.glider-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-width: 150px;
}

.glider-slide img {
  max-width: 100%;
}

.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}

.glider-prev,
.glider-next,
.glider-prev1,
.glider-next1,
.glider-prev2,
.glider-next2 {
  width: 56px;
  height: 56px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  outline: none;
  z-index: 2;
  text-decoration: none;
  top: 30%;
  background-color: #FF6138;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.glider-prev:hover,
.glider-next:hover,
.glider-prev:focus,
.glider-next:focus,
.glider-prev1:hover,
.glider-next1:hover,
.glider-prev1:focus,
.glider-next1:focus,
.glider-prev2:hover,
.glider-next2:hover,
.glider-prev2:focus,
.glider-next2:focus {
  color: #FF6138;
}

.glider-prev,
.glider-prev1,
.glider-prev2 {
  left: -40px;
}
@media screen and (max-width: 80rem) {
  .glider-prev,
  .glider-prev1,
  .glider-prev2 {
    left: -23px;
  }
}

.glider-next,
.glider-next1,
.glider-next2 {
  right: -40px;
}
@media screen and (max-width: 80rem) {
  .glider-next,
  .glider-next1,
  .glider-next2 {
    right: -23px;
  }
}

.glider-next.disabled,
.glider-next1.disabled,
.glider-prev.disabled,
.glider-prev1.disabled,
.glider-next2.disabled,
.glider-prev2.disabled {
  opacity: 0.25;
  color: #666;
  cursor: default;
}

.glider-slide {
  min-width: 150px;
}

.glider-hide {
  opacity: 0;
}

.glider-dots {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 0 auto;
  padding: 0;
}

.glider-dot {
  border: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  display: block;
  cursor: pointer;
  color: #B7B7B7;
  border-radius: 50%;
  background-color: #B7B7B7;
  width: 10px;
  height: 10px;
  margin: 7px;
}

.glider-dot:hover,
.glider-dot:focus,
.glider-dot.active {
  background: #FF6138;
}

@media (max-width: 36em) {
  .glider::-webkit-scrollbar {
    opacity: 1;
    -webkit-appearance: none;
    width: 7px;
    height: 3px;
  }
  .glider::-webkit-scrollbar-thumb {
    opacity: 1;
    border-radius: 99px;
    background-color: rgba(156, 156, 156, 0.25);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  }
}
.section1__posgraduacao {
  padding: 60px 16px 0 16px;
  background-color: #2275B5;
  background-image: url("../../imgs/pos-graduacao/section1-posgraduacao.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section1__posgraduacao .section1__posgraduacao__header {
  max-width: 1300px;
  margin: 0 auto 170px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.section1__posgraduacao .section1__posgraduacao__header h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section1__posgraduacao .section1__posgraduacao__container {
  max-width: 1660px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section1__posgraduacao .slide__container__items {
  flex-shrink: 0;
  align-self: flex-end;
  display: flex;
  position: relative;
}
.section1__posgraduacao .slide__container__items .slide__container__itemsimg img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.section1__posgraduacao .slide__container__itemsconteudo {
  position: absolute;
  z-index: 2;
  /*
  span{
     position: relative;
     top: 10px;
     left: 8px;
     display: inline-block;
     padding: 12px 24px;
     border-radius: 999px;
     background-color: #2275B5;
     color: $cor-branco-1;
     font-size: 1rem;
     font-weight: 600;
  }
  p{
     width: 220px;
     margin: 0 auto;
     padding: 20px 16px;
     background-color: $cor-branco-1;
     color: #1B6AA8;
     text-align: center;
     font-size: 1.125rem;
     font-weight: 700;
     border-radius: 0 20px 20px 50px;
     box-shadow: 0px 0px 17px rgba(255, 97, 56, 0.17);
  }
  */
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__infoextra {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 16px;
  position: absolute;
  top: -16px;
  left: 8px;
  display: flex;
  gap: 10px;
  border-radius: 62.4375rem;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__infoextra div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__infoextra div svg {
  flex-shrink: 0;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__infoextra p {
  color: #FFEFEB;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: normal;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__info {
  width: 252px;
  padding: 28px 14px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 17px rgba(255, 97, 56, 0.17);
  border-radius: 0 20px 20px 50px;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__info h1 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
}
.section1__posgraduacao .slide__container__itemsconteudo .itemsconteudo__info p {
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3125rem;
}
.section1__posgraduacao .slide__container__itemsconteudo .button {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 1rem;
}
.section1__posgraduacao .infoextra--azul {
  bottom: 77px;
}
.section1__posgraduacao .infoextra--azul .itemsconteudo__infoextra {
  background-color: #2275B5;
}
.section1__posgraduacao .infoextra--azul h1 {
  color: #1B6AA8;
}
.section1__posgraduacao .infoextra--laranja {
  bottom: 25px;
}
.section1__posgraduacao .infoextra--laranja .itemsconteudo__infoextra {
  background-color: #FF6138;
}
.section1__posgraduacao .infoextra--laranja h1 {
  color: #FF6138;
}
.section1__posgraduacao .infoextra--laranja .button {
  color: #FF6138;
}
.section1__posgraduacao .infoextra--roxo {
  bottom: 40px;
}
.section1__posgraduacao .infoextra--roxo .itemsconteudo__infoextra {
  background-color: #503D92;
}
.section1__posgraduacao .infoextra--roxo h1 {
  color: #503D92;
}
.section1__posgraduacao .infoextra--roxo .button {
  color: #503D92;
}
.section1__posgraduacao .infoextra--dark {
  bottom: 30px;
}
.section1__posgraduacao .infoextra--dark .itemsconteudo__infoextra {
  background-color: #8C351F;
}
.section1__posgraduacao .infoextra--dark h1 {
  color: #8C351F;
}
.section1__posgraduacao .infoextra--dark .button {
  color: #8C351F;
}
.section1__posgraduacao .infoextra--verde {
  bottom: 77px;
}
.section1__posgraduacao .infoextra--verde .itemsconteudo__infoextra {
  background-color: #168547;
}
.section1__posgraduacao .infoextra--verde h1 {
  color: #168547;
}
.section1__posgraduacao .infoextra--verde .button {
  color: #168547;
}
.section1__posgraduacao .glider-track {
  gap: 0px !important;
}
.section1__posgraduacao .arrow__nav {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
}
.section1__posgraduacao .arrow__nav .glider-prev {
  left: 0 !important;
}
.section1__posgraduacao .arrow__nav .glider-next {
  right: 0 !important;
}
@media screen and (min-width: 1740px) {
  .section1__posgraduacao .arrow__nav {
    visibility: hidden;
  }
}

.section2__posgraduacao {
  padding: 120px 48px;
  background-color: #1C8BCC;
  background-image: url("../../imgs/pos-graduacao/section2-posgraduacao.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 80rem) {
  .section2__posgraduacao {
    padding: 100px 24px;
  }
}
.section2__posgraduacao .section2__posgraduacao__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.section2__posgraduacao .section2__posgraduacao__info {
  max-width: 680px;
}
.section2__posgraduacao .section2__posgraduacao__info h1 {
  margin-bottom: 16px;
  color: #FFFFFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section2__posgraduacao .section2__posgraduacao__info p {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section2__posgraduacao .section2__posgraduacao__info p + p {
  margin-top: 24px;
}
.section3__posgraduacao {
  padding: 150px 48px;
  background-color: #2275B5;
  background-image: url("../../imgs/pos-graduacao/section3-posgraduacao.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  .section3__posgraduacao {
    padding: 100px 48px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section3__posgraduacao {
    padding: 80px 24px;
  }
}
.section3__posgraduacao .section3__posgraduacao__container {
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section3__posgraduacao .section3__posgraduacao__container > h1 {
  color: #FFFFFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.section3__posgraduacao .section3__posgraduacao__divflex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, auto));
  justify-content: center;
  gap: 23px 30px;
}
@media screen and (max-width: 33.75rem) {
  .section3__posgraduacao .section3__posgraduacao__divflex {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 8px;
  }
}
.section3__posgraduacao .section3__posgraduacao__divflex__items {
  width: 190px;
  height: 190px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 33.75rem) {
  .section3__posgraduacao .section3__posgraduacao__divflex__items {
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}
.section3__posgraduacao .section3__posgraduacao__divflex__items div {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CBEAFF;
  border-radius: 50%;
}
.section3__posgraduacao .section3__posgraduacao__divflex__items p {
  color: #3A3A3A;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .section3__posgraduacao .section3__posgraduacao__divflex__items p {
    font-size: 1rem;
  }
}

.section5__posgraduacao {
  padding: 150px 48px;
  background-color: #1B6AA8;
  background-image: url("../../imgs/pos-graduacao/section5-posgraduacao.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  .section5__posgraduacao {
    padding: 100px 24px;
  }
}
.section5__posgraduacao .section5__posgraduacao__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 80rem) {
  .section5__posgraduacao .section5__posgraduacao__container {
    gap: 60px;
  }
}
@media screen and (max-width: 64rem) {
  .section5__posgraduacao .section5__posgraduacao__container {
    gap: 40px;
  }
}
@media screen and (max-width: 48rem) {
  .section5__posgraduacao .section5__posgraduacao__container {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
}
.section5__posgraduacao .section5__posgraduacao__logos {
  flex: 1 0 180px;
}
@media screen and (max-width: 48rem) {
  .section5__posgraduacao .section5__posgraduacao__logos {
    flex: 1;
  }
}
.section5__posgraduacao .section5__posgraduacao__logos ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
@media screen and (max-width: 48rem) {
  .section5__posgraduacao .section5__posgraduacao__logos ul {
    gap: 24px;
    justify-content: center;
    flex-direction: row;
  }
}
@media screen and (max-width: 33.75rem) {
  .section5__posgraduacao .section5__posgraduacao__logos ul {
    gap: 12px;
  }
}
.section5__posgraduacao .section5__posgraduacao__info {
  display: flex;
  flex-direction: column;
  gap: 39px;
}
.section5__posgraduacao .section5__posgraduacao__info h1 {
  color: #FFFFFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section5__posgraduacao .posgraduacao__info__divflex {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, auto));
  gap: 30px;
}
@media screen and (max-width: 33.75rem) {
  .section5__posgraduacao .posgraduacao__info__divflex {
    grid-template-columns: 1fr;
  }
}
.section5__posgraduacao .posgraduacao__info__divflex__items {
  max-width: 410px;
  padding: 2rem 1.5rem;
  display: flex;
  gap: 22px;
  align-items: center;
  border-radius: 2rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
}
@media screen and (max-width: 33.75rem) {
  .section5__posgraduacao .posgraduacao__info__divflex__items {
    padding: 1.5rem;
  }
}
.section5__posgraduacao .posgraduacao__info__divflex__items div {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CBEAFF;
  border-radius: 50%;
}
.section5__posgraduacao .posgraduacao__info__divflex__items p {
  color: #2275B5;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .section5__posgraduacao .posgraduacao__info__divflex__items p {
    font-size: 1rem;
  }
}

.section6__posgraduacao {
  padding: 80px 24px 216px 24px;
  background-color: #1C8BCC;
  background-image: url("../../imgs/pos-graduacao/section6-posgraduacao.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 48rem) {
  .section6__posgraduacao {
    padding: 80px 24px 200px 24px;
  }
}
.section6__posgraduacao .section6__posgraduacao__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section6__posgraduacao .section6__posgraduacao__descricao {
  max-width: 746px;
  margin: 0 auto 62px auto;
}
.section6__posgraduacao .section6__posgraduacao__descricao h1 {
  max-width: 540px;
  margin: 0 auto 16px auto;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
}
.section6__posgraduacao .section6__posgraduacao__descricao p {
  max-width: 100%;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 2.15625rem;
}
@media screen and (max-width: 33.75rem) {
  .section6__posgraduacao .section6__posgraduacao__descricao p {
    font-size: 1.25rem;
  }
}
.section6__posgraduacao .section6__posgraduacao__descricao p strong {
  font-weight: 500;
}
.section6__posgraduacao .section6__posgraduacao__divflex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.section6__posgraduacao .section6__posgraduacao__divflex .cards-4 {
  flex: 1 1 370px;
}

.section7__posgraduacao {
  padding: 0 48px;
  position: relative;
}
@media screen and (max-width: 64rem) {
  .section7__posgraduacao {
    padding: 0 24px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section7__posgraduacao {
    padding-bottom: 24px;
  }
}
.section7__posgraduacao .section7__posgraduacao__container {
  max-width: 1290px;
  margin: 0 auto;
}
.newsletterIframe iframe{
height:160px!important;
}
@media screen and (max-width:68.75rem){
.newsletterIframe iframe{height:220px!important}
}
@media screen and (max-width:48rem){
.newsletterIframe iframe{height:300px!important}
}