@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 {
  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: 500px;
  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;
  }
}
.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-3 {
  min-height: 70vh;
  padding: 0 0 0 32px;
  background-color: #FF6138;
  background-image: url("../../imgs/img/main-hero-banner-2.webp");
}
@media screen and (max-width: 80rem) {
  .main--laranja-3 {
    padding: 0 24px;
    background-position: center;
  }
}
.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;
  }
}
.sections__introducao {
  padding: 100px 48px 130px 48px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 64rem) {
  .sections__introducao {
    padding: 100px 24px 0 24px;
  }
}
.sections__introducao::after {
  content: "";
  width: 50%;
  height: 160px;
  position: absolute;
  right: 0;
  top: 15%;
  display: block;
  z-index: -1;
  background-image: url("../../imgs/vetores/linha-5.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
@media screen and (max-width: 48rem) {
  .sections__introducao::after {
    display: none;
  }
}
.sections__introducao .sections__introducao__container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  gap: 125px;
}
@media screen and (max-width: 80rem) {
  .sections__introducao .sections__introducao__container {
    gap: 80px;
  }
}
@media screen and (max-width: 64rem) {
  .sections__introducao .sections__introducao__container {
    gap: 40px;
    flex-direction: column;
  }
}
@media screen and (max-width: 33.75rem) {
  .sections__introducao .sections__introducao__container {
    gap: 24px;
  }
}
.sections__introducao .sections__introducao__container h1 {
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
}
.sections__introducao .sections__introducao__container p {
  max-width: 410px;
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
@media screen and (max-width: 64rem) {
  .sections__introducao .sections__introducao__container p {
    max-width: 768px;
  }
}
@media screen and (max-width: 33.75rem) {
  .sections__introducao .sections__introducao__container p {
    font-size: 1.125rem;
  }
}
.sections__introducao .sections__introducao__container p + p {
  margin-top: 24px;
}
.sections__introducao .sections__introducao__info2 {
  position: relative;
  top: 80px;
  display: flex;
  gap: 125px;
}
@media screen and (max-width: 80rem) {
  .sections__introducao .sections__introducao__info2 {
    top: 0px;
    gap: 24px;
  }
}
@media screen and (max-width: 48rem) {
  .sections__introducao .sections__introducao__info2 {
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 33.75rem) {
  .sections__introducao .sections__introducao__info2 {
    gap: 42px;
    flex-direction: column;
  }
}
.sections__introducao .sections__introducao__info2 .sections__introducao__divimg {
  flex-shrink: 0;
  animation: home-vetor 3000ms linear forwards infinite alternate;
}
.sections__introducao .sections__introducao__info2 .sections__introducao__divinfo {
  margin-top: 80px;
}
@media screen and (max-width: 48rem) {
  .sections__introducao .sections__introducao__info2 .sections__introducao__divinfo {
    margin-top: 0;
  }
}

.sections__introducao--azul-2::after {
  background-image: url("../../imgs/vetores/linha-6.svg");
}
.sections__introducao--azul-2 .sections__introducao__container h1 {
  color: #338CC8;
}
.sections__introducao--azul-2 .sections__introducao__info2 .sections__introducao__divinfo {
  margin-top: 50px;
}
@media screen and (max-width: 48rem) {
  .sections__introducao--azul-2 .sections__introducao__info2 .sections__introducao__divinfo {
    margin-top: 0;
  }
}

.sections__introducao--azul-3::after {
  top: 10%;
  background-image: url("../../imgs/vetores/linha-5.svg");
  filter: invert(13%) sepia(99%) saturate(2802%) hue-rotate(206deg) brightness(95%) contrast(92%);
}
.sections__introducao--azul-3 .sections__introducao__container h1 {
  color: #0A4793;
}

.sections__introducao--amarelo::after {
  top: 40%;
  background-image: url("../../imgs/vetores/linha-7.svg");
}
.sections__introducao--amarelo .sections__introducao__container h1 {
  color: #E0B109;
}
.sections__introducao--amarelo .sections__introducao__info2 .sections__introducao__divinfo {
  margin-top: 50px;
}
@media screen and (max-width: 48rem) {
  .sections__introducao--amarelo .sections__introducao__info2 .sections__introducao__divinfo {
    margin-top: 0;
  }
}

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

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

.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--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--azulclaro-3 {
  color: #2275B5;
}

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

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

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

.section1__palestras {
  margin-top: -200px;
  padding: 320px 48px 143px 48px;
  background-image: url("../../imgs/palestras/section1-palestras.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 80rem) {
  .section1__palestras {
    margin-top: -150px;
    padding: 240px 48px 143px 48px;
  }
}
@media screen and (max-width: 64rem) {
  .section1__palestras {
    margin-top: -10px;
    padding: 200px 24px 143px 24px;
  }
}
@media screen and (max-width: 48rem) {
  .section1__palestras {
    padding: 150px 24px 143px 24px;
    margin-top: 32px;
  }
}
.section1__palestras .section1__palestras__conteudo h1 {
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: center;
}
.section1__palestras .section1__palestras__conteudo p {
  color: #3A3A3A;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
.section1__palestras .section1__palestras__conteudo .section1__palestras__divflex {
  margin: 40px 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 64rem) {
  .section1__palestras .section1__palestras__conteudo .section1__palestras__divflex {
    flex-wrap: wrap;
  }
}
.section1__palestras .section1__palestras__conteudo .section1__palestras__divflex__divitems {
  width: 190px;
  height: 190px;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 64rem) {
  .section1__palestras .section1__palestras__conteudo .section1__palestras__divflex__divitems {
    flex: 1 1 210px;
  }
}
.section1__palestras .section1__palestras__conteudo .section1__palestras__divflex__divitems div {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(247, 88, 48, 0.2);
  border-radius: 50%;
}
.section1__palestras .section1__palestras__conteudo .section1__palestras__divflex__divitems p {
  color: #3A3A3A;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 33.75rem) {
  .section1__palestras .section1__palestras__conteudo .section1__palestras__divflex__divitems p {
    font-size: 1rem;
  }
}
.section1__palestras .section1__palestras__conteudo > p {
  max-width: 800px;
  margin: 0 auto 32px auto;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.section1__palestras .section1__palestras__conteudo .div--button {
  display: flex;
  justify-content: center;
}

.section2__palestras {
  padding: 0 48px;
  position: relative;
}
@media screen and (max-width: 64rem) {
  .section2__palestras {
    padding: 0 24px;
  }
}
.section2__palestras::before {
  content: "";
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-image: url("../../imgs/vetores/linha-4.svg");
  background-repeat: no-repeat;
  background-position: left center;
}
.section2__palestras .section2__palestras__container {
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
  top: -53px;
}
.newsletterIframe iframe{
    height:180px!important;
}
@media screen and (max-width:68.75rem){
    .newsletterIframe iframe{height:220px!important}
}
@media screen and (max-width:48rem){
    .newsletterIframe iframe{height:300px!important}
}
/*# sourceMappingURL=style.css.map */