@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;
}

.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--azul-2 {
  background-color: #1C8BCC;
  background-image: url("../../imgs/ensino-superior/footer-superior.png");
}

.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--azul-6 {
  background-color: #1E5A88;
  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;
}

.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;
  }
}
@media screen and (max-width: 48rem) {
  .main {
    background-position: center;
  }
}
.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: 64rem) {
  .main .main__articletitulo {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 48rem) {
  .main .main__articletitulo {
    margin: 0;
  }
}
.main .main__articletitulo h1 {
  max-width: 529px;
  color: #FFFFFF;
  font-size: 2.75rem;
  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: 2.5rem;
    line-height: 3.125rem;
  }
}
@media screen and (max-width: 33.75rem) {
  .main .main__articletitulo h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.main .main__articletitulo p {
  max-width: 591px;
  margin: 16px 0 24px 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 {
    font-weight: 400;
  }
}
@media screen and (max-width: 33.75rem) {
  .main .main__articletitulo p br {
    display: none;
  }
}
.main .main__articletitulo .main__articletitulo__detalhes {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.main .main__articletitulo .main__articletitulo__detalhes li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #FFF;
}

.main .main__articletitulo a {
  animation: efeito-entrada 1.2s ease-out forwards;
  color: #1C8BCC;
}
.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--azul {
  min-height: 60vh;
  background-color: #1C8BCC;
  background-image: url("../../imgs/pos-graduacoes/main-hero-banner.png");
}
.main--azul .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--azul .main__container::before {
    right: calc(100% - 768px);
    background-size: 100%;
    background-position: center 20px;
  }
}
@media screen and (max-width: 33.75rem) {
  .main--azul .main__container::before {
    display: none;
  }
}

.section1__mestrado {
  background-color: #2275B5;
  background-image: url("../../imgs/pos-graduacoes/section1-mestrado.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.section1__mestrado .section1__pos__info h1 {
  color: #FFF !important;
}
.section1__mestrado .section1__pos__info p {
  color: #FFF !important;
}

.section1__pos {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 48rem) {
  .section1__pos {
    padding: 80px 24px;
  }
}
.section1__pos .section1__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 740px;
  align-content: flex-start;
}
@media screen and (max-width: 80rem) {
  .section1__pos .section1__pos__container {
    gap: 32px;
    grid-template-columns: 1fr 640px;
  }
}
@media screen and (max-width: 64rem) {
  .section1__pos .section1__pos__container {
    grid-template-columns: 1fr;
  }
}
.section1__pos .section1__pos__info h1 {
  margin-bottom: 16px;
  color: #2B82BC;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section1__pos .section1__pos__info p {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section1__pos .section1__pos__info p + p {
  margin-top: 24px;
}
.section1__pos .section1__pos__info div {
  margin-top: 24px;
}
.section1__pos .section1__pos__info div p {
  margin-bottom: 16px;
}
.section1__pos .section1__pos__info div ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section1__pos #players {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
}

.section2__mestrado {
  background-color: #1B6AA8 !important;
  background-image: url("../../imgs/pos-graduacoes/section2-mestrado.png") !important;
  background-position: center top;
}

.section2__pos {
  padding: 65px 48px;
  background-color: #1C8BCC;
  background-image: url("../../imgs/pos-graduacoes/bg-section2.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 64rem) {
  .section2__pos {
    padding: 65px 24px;
    background-position: center;
  }
}
.section2__pos .section2__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: flex-end;
}
@media screen and (max-width: 64rem) {
  .section2__pos .section2__pos__container {
    gap: 40px;
    flex-direction: column-reverse;
  }
}
.section2__pos .section2__pos__ul {
  flex-shrink: 0;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 64rem) {
  .section2__pos .section2__pos__ul {
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (max-width: 33.75rem) {
  .section2__pos .section2__pos__ul {
    gap: 12px;
  }
}
.section2__pos .section2__pos__article {
  display: flex;
  flex-direction: column;
  gap: 39px;
}
@media screen and (max-width: 48rem) {
  .section2__pos .section2__pos__article {
    gap: 24px;
  }
}
.section2__pos .section2__pos__article h1 {
  color: #FFFFFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section2__pos .section2__pos__article__divflex {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, auto));
  gap: 30px;
}
@media screen and (max-width: 64rem) {
  .section2__pos .section2__pos__article__divflex {
    gap: 24px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section2__pos .section2__pos__article__divflex {
    grid-template-columns: 1fr;
  }
}
.section2__pos .pos__article__divflex__items {
  max-width: 410px;
  padding: 2rem 1.5rem;
  position: relative;
  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) {
  .section2__pos .pos__article__divflex__items {
    padding: 1.5rem;
  }
}
.section2__pos .pos__article__divflex__items::before {
  content: "";
  width: 89px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-color: #2275B5;
}
.section2__pos .pos__article__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%;
}
.section2__pos .pos__article__divflex__items p {
  color: #2275B5;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .section2__pos .pos__article__divflex__items p {
    font-size: 1rem;
  }
}

.section3__pos {
  background-color: #1C8BCC;
  position: relative;
  overflow: hidden;
}
.section3__pos::before {
  content: "";
  width: 319px;
  height: 261px;
  display: block;
  position: absolute;
  left: -2px;
  bottom: -2px;
  z-index: 2;
  background-image: url("../../imgs/pos-graduacoes/destaque-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 64rem) {
  .section3__pos::before {
    width: 261px;
    height: 200px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section3__pos::before {
    width: 161px;
    height: 100px;
  }
}
.section3__pos::after {
  content: "";
  width: 319px;
  height: 261px;
  display: block;
  position: absolute;
  right: -10px;
  bottom: -2px;
  z-index: 2;
  background-image: url("../../imgs/pos-graduacoes/destaque-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 64rem) {
  .section3__pos::after {
    width: 261px;
    height: 200px;
    right: -30px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section3__pos::after {
    width: 161px;
    height: 100px;
    right: -45px;
  }
}
.section3__pos .section3__pos__linha {
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 5;
}
@media screen and (max-width: 64rem) {
  .section3__pos .section3__pos__linha {
    bottom: -100px;
  }
}
@media screen and (max-width: 48rem) {
  .section3__pos .section3__pos__linha {
    display: none;
  }
}
.section3__pos .section3__pos__linha::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../../imgs/pos-graduacoes/linha.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.section3__pos .section3__pos__ul {
  display: flex;
  animation: marquee-effect 20100ms linear infinite;
}
@media screen and (max-width: 48rem) {
  .section3__pos .section3__pos__ul {
    animation: marquee-effect-2 20000ms linear infinite;
  }
}
.section3__pos .section3__pos__ul:hover {
  animation-play-state: paused;
}
.section3__pos .section3__pos__li {
  flex-shrink: 0;
  width: 463px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 48rem) {
  .section3__pos .section3__pos__li {
    width: 350px;
  }
}
.section3__pos .section3__pos__li .section3__pos__li__img {
  transform: skewX(-3.8deg);
}
.section3__pos .section3__pos__li .section3__pos__li__info {
  height: 110px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.section3__pos .section3__pos__li .section3__pos__li__info p {
  color: #FFF;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
}
@media screen and (max-width: 80rem) {
  .section3__pos .section3__pos__li .section3__pos__li__info p {
    font-size: 1.5rem;
    line-height: 1.3125rem;
  }
}

.section4__pos {
  padding: 80px 24px 168px 24px;
  background-color: #1C8BCC;
  background-image: url("../../imgs/pos-graduacoes/bg-section4.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  .section4__pos {
    background-position: center;
  }
}
.section4__pos .section4__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}
.section4__pos .section4__pos__descricao h1 {
  max-width: 700px;
  margin: 0 auto 16px auto;
  color: #FFF;
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section4__pos .section4__pos__descricao p {
  max-width: 790px;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 2.15625rem;
}
@media screen and (max-width: 33.75rem) {
  .section4__pos .section4__pos__descricao p {
    font-size: 1.25rem;
  }
}
.section4__pos .section4__pos__divflex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.section4__pos .section4__pos__divflex .cards-4 {
  flex: 1 1 370px;
}
@media screen and (max-width: 33.75rem) {
  .section4__pos .section4__pos__divflex .cards-4 {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 33.75rem) {
  .section4__pos .section4__pos__divflex .cards-4::before {
    display: none;
  }
}
@media screen and (max-width: 33.75rem) {
  .section4__pos .section4__pos__divflex .cards-4 .cards-4__info__descricao {
    font-size: 0.875rem;
  }
}
.section5__mestrado {
  background-position: center bottom !important;
}
@media screen and (max-width: 64rem) {
  .section5__mestrado {
    padding: 80px 24px 100px 24px !important;
  }
}
.section5_tecnologia {
  background-position: center bottom !important;
}
@media screen and (max-width: 64rem) {
  .section5_tecnologia {
    padding: 100px 24px !important;
  }
}
.section5_tecnologia > h1 {
  max-width: 50rem; 
  margin: 0 auto 8rem auto; 
  color: #FFF; 
  text-align: center; 
  font-size: 1.9375rem; 
  font-weight: 700; 
  line-height: normal;
}
@media screen and (max-width: 64rem) {
    .section5_tecnologia > h1 {
      margin: 0 auto 6rem auto; 
      font-size: 1.75rem;
    }
}
.section5_tecnologia .section5__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(600px, 700px) minmax(350px, 1fr);
}
@media screen and (max-width: 64rem) {
  .section5_tecnologia .section5__pos__container {
    grid-template-columns: 620px;
  }
}
@media screen and (max-width: 48rem) {
  .section5_tecnologia .section5__pos__container {
    grid-template-columns: 1fr;
  }
}
.section5_tecnologia .section5__pos__semestre__tabs {
  position: relative;
}
.section5_tecnologia .section5__pos__semestre__tabs li {
  position: relative;
}
.section5_tecnologia .section5__pos__semestre__tabs li a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 24px;
  position: absolute;
  top: -63px;
  border-radius: 24px 24px 0 0;
  color: #2B82BC;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 48rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li a {
    top: -61px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li a {
    top: -66px;
    font-size: 1.25rem;
    border-radius: 14px 14px 0 0;
  }
}
.section5_tecnologia .section5__pos__semestre__tabs li a.active {
  z-index: 5 !important;
  background-color: #FFFFFF !important;
  color: #2B82BC;
}
.section5_tecnologia .section5__pos__semestre__tabs li span {
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li span {
    display: none;
  }
}
.section5_tecnologia .section5__pos__semestre__tabs li:nth-child(1) a {
  left: 0;
  z-index: 4;
  background-color: #1C8BCC;
}
.section5_tecnologia .section5__pos__semestre__tabs li:nth-child(2) a {
  left: 115px;
  background-color: #2B82BC;
  z-index: 3;
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li:nth-child(2) a {
    left: 64px;
  }
}
.section5_tecnologia .section5__pos__semestre__tabs li:nth-child(3) a {
  left: 234px;
  background-color: #126BA7;
  z-index: 2;
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li:nth-child(3) a {
    left: 132px;
  }
}
.section5_tecnologia .section5__pos__semestre__tabs li:nth-child(4) a {
  left: 350px;
  background-color: #0A5588;
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__semestre__tabs li:nth-child(4) a {
    left: 200px;
  }
}
.section5_tecnologia .section5__pos__semestre__grade {
  height: 100% !important;
}
@media screen and (max-width: 64rem) {
  .section5_tecnologia .section5__pos__semestre__grade {
    height: auto !important;
  }
}
.section5_tecnologia .section5__pos__semestre__grade ul {
  display: none !important;
}
.section5_tecnologia .section5__pos__semestre__grade ul.active {
  display: flex !important;
}
@media screen and (max-width: 80rem) {
  .section5_tecnologia .section5__pos__descricao__mensalidade {
    padding: 40px 24px 72px 24px !important;
  }
}
@media screen and (max-width: 64rem) {
  .section5_tecnologia .section5__pos__descricao__mensalidade {
    padding: 32px 48px 64px 32px !important;
  }
}
@media screen and (max-width: 33.75rem) {
  .section5_tecnologia .section5__pos__descricao__mensalidade {
    padding: 32px 24px 42px 24px !important;
  }
}

.section5__pos {
  padding: 93px 48px 55px 48px;
  background-color: #2275B5;
  background-image: url("../../imgs/pos-graduacoes/bg-section5.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 80rem) {
  .section5__pos {
    padding: 80px 24px 55px 24px;
  }
}
.section5__pos .section5__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 64rem) {
  .section5__pos .section5__pos__container {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.section5__pos .section5__pos__semestre {
  position: relative;
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade {
  height: 100%;
  padding: 40px 80px 40px 45px;
  background-color: #fff;
  border-radius: 0px 24px 24px 24px;
}
@media screen and (max-width: 48rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 48rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade::-webkit-scrollbar {
    width: 16px;
  }
}
@media screen and (max-width: 48rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade::-webkit-scrollbar-thumb {
    background-color: #2B82BC;
    border: 4px solid #fff;
    border-radius: 132px;
  }
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade h2 {
  margin-bottom: 16px;
  color: #2B82BC;
  font-size: 1.9375rem;
  font-weight: 600;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade h2 {
    font-size: 1.5rem;
  }
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3A3A3A;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
@media screen and (max-width: 48rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade li {
    font-size: 1.125rem;
  }
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade li::before {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  flex-shrink: 0;
  background-image: url("../../imgs/pos-graduacoes/lista.png");
  background-position: center;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__semestre .section5__pos__semestre__grade li br {
    display: none;
  }
}
.section5__pos .section5__pos__semestre .section5__pos__semestre__grade span {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 62.4375rem;
  background-color: #2B82BC;
  color: #FFF;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 156.879%;
}
.section5__pos .section5__pos__descricao {
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: fit-content;
  position: sticky !important;
  top: 9rem;
}
@media screen and (max-width: 64rem) {
  .section5__pos .section5__pos__descricao {
      position: initial !important;
      top: 0;
    }
}

.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade {
  padding: 40px 70px 72px 40px;
  position: relative;
  border-radius: 2rem;
  background-color: #FFF;
  box-shadow: 0px 0px 17px 0px rgba(255, 97, 56, 0.17);
}
@media screen and (max-width: 48rem) {
  .section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade {
    padding: 32px 48px 64px 32px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade {
    padding: 32px 24px 42px 24px;
  }
}
.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade a {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  color: #1C8BCC;
  text-wrap: nowrap;
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__titulo {
  margin-bottom: 24px;
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__titulo h1 {
  margin-bottom: 8px;
  color: #2B82BC;
  font-size: 1.9375rem;
  font-weight: 600;
  line-height: 2rem;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .pos__descricao__mensalidade__titulo h1 {
    font-size: 1.5rem;
  }
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__titulo p {
  max-width: 440px;
  color: #2B82BC;
  font-size: 2.75rem;
  font-weight: 700;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .pos__descricao__mensalidade__titulo p {
    font-size: 2.25rem;
  }
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__preco h2 {
  margin-bottom: 8px;
  color: #2B82BC;
  font-size: 1.9375rem;
  font-weight: 600;
  line-height: 2rem;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .pos__descricao__mensalidade__preco h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__preco p {
  color: #2B82BC;
  font-size: 2.75rem;
  font-weight: 700;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .pos__descricao__mensalidade__preco p {
    font-size: 2.25rem;
  }
}
.section5__pos .section5__pos__descricao .pos__descricao__mensalidade__preco small {
  color: #3A3A3A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.59375rem;
  display: block;
  max-width: 482px;
}
.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div {
  max-width: 410px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard {
  width: 100%;
  flex-shrink: 0;
  max-width: 410px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  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__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard {
    padding: 1.5rem;
  }
}
.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard::before {
  content: "";
  width: 89px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-color: #2275B5;
}
.section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard 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__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard p {
  color: #2275B5;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .section5__pos .section5__pos__descricao .section5__pos__descricao__mensalidade__div .pos__descricao__mensalidade__divcard p {
    font-size: 1rem;
  }
}
.section5_doutorado {
  background-position: center bottom !important;
}
@media screen and (max-width: 64rem) {
  .section5_doutorado {
    padding: 80px 24px 100px 24px !important;
  }
}
.section__pos {
  padding: 100px 48px 0 48px;
  position: relative;
}
@media screen and (max-width: 64rem) {
  .section__pos {
    padding: 80px 24px 0 24px;
  }
}
.section__pos::before {
  content: "";
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-image: url("../../imgs/vetores/linha-4.svg");
  background-repeat: no-repeat;
  filter: invert(35%) sepia(63%) saturate(906%) hue-rotate(170deg) brightness(96%) contrast(88%);
}
.section__pos .section__pos__container {
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.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;
  }
}

@keyframes marquee-effect {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-4630px);
  }
}
@keyframes marquee-effect-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3500px);
  }
}
.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}
}
/*Carrosel*/
.embla__carrosel {
  max-width: 75.75rem;
  margin: 3.25rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  position: relative;
}
.embla__carrosel .embla__container {
  display: flex;
}
.embla__carrosel .embla__cards-4 {
  flex-shrink: 0;
  max-width: 31.25rem;
  padding: 1.5rem 1.5rem 4rem 1.5rem;
  margin-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__cards-4 {
    max-width: 21.5625rem;
    margin-left: 1rem;
    gap: 1.25rem;
  }
}
.embla__carrosel .embla__cards-4::before {
  content: "";
  width: 4rem;
  height: 3.25rem;
  position: absolute;
  bottom: 0;
  background-image: url(../../imgs/vetores/destaque.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.embla__carrosel .embla__cards-4 .embla__cards-4__info__header {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}
.embla__carrosel .embla__cards-4 .embla__cards-4__info__header div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.embla__carrosel .embla__cards-4 .embla__cards-4__info__header h1 {
  color: #074087;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__cards-4 .embla__cards-4__info__header h1 {
    font-size: 1.0625rem;
  }
}
.embla__carrosel .embla__cards-4 .embla__cards-4__img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__cards-4 .embla__cards-4__img {
    width: 3rem;
    height: 3rem;
  }
}
.embla__carrosel .embla__cards-4 .embla__cards-4__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.embla__carrosel .embla__cards-4 .embla__cards-4__info__descricao {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__cards-4 .embla__cards-4__info__descricao {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.embla__carrosel button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6237;
  border: none;
  outline: #FF6237;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s;
}
.embla__carrosel button:hover {
  opacity: 1;
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel button {
    opacity: 1;
  }
}
.embla__carrosel button svg {
  pointer-events: none;
}
.embla__carrosel .embla__prev {
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__prev {
    top: calc(100% + 1rem);
    left: 0;
    transform: none;
  }
}
.embla__carrosel .embla__next {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 33.75rem) {
  .embla__carrosel .embla__next {
    top: calc(100% + 1rem);
    right: 0;
    transform: none;
  }
}
@media screen and (max-width: 21.5625rem) {
  .embla__carrosel .embla__cards-4 {
    max-width: 18rem;
    margin-left: 0.5rem;
  }
}
/*Carrosel*/

.container-videos{
    max-width: 80.625rem; 
    width: 100%;
    margin: 3rem auto 0 auto; 
    display: flex; 
    gap: 1.5rem;
}

@media screen and (max-width: 48rem) {
  .container-videos{
        margin: 5rem auto 0 auto;
        flex-direction: column;
    }
}





