@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--laranja {
  background-color: #FF6138;
  background-image: url("../../imgs/home/footer-hero-banner.webp");
}

.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;
}
@media screen and (max-width: 33.75rem) {
  .cards-2 {
      border-radius: 1.5rem;
    }
}
.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;
  margin-left: 24px;
  overflow: hidden;
}
@media screen and (max-width: 33.75rem) {
    .cards-2 .cards-2__divimg {
      height: 200px;
    }
}
.cards-2 .cards-2__divimg img {
  width: 100%;
  height: 100%;
   border-bottom-left-radius: 500px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards-2 .cards-2__descricao {
  padding: 8px 16px 34px 18px;
}
@media screen and (max-width: 33.75rem) {
    .cards-2 .cards-2__descricao {
      padding: 12px 24px 24px 24px;
    }
}
.cards-2 .cards-2__descricao h2 {
  color: #FF6138;
  font-size: 1.25rem;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 33.75rem) {
    .cards-2 .cards-2__descricao h2 {
      font-size: 1.125rem;
      line-height: 24px;
      font-weight: 500;
    }
}
.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;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.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__contato {
  margin-top: 78px;
  padding: 0 48px;
  min-height: 80vh;
  background-color: #FF6138;
  background-image: url("../../imgs/contato/main-hero-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 48rem) {
  .main__contato {
    padding: 0 24px;
    background-image: none;
  }
}
.main__contato .main__contato__container {
  width: 960px;
  max-width: 1290px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
}
.main__contato .main__contato__container > h1 {
  margin-bottom: 10px;
  color: #FFF;
  text-align: center;
  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__contato .main__contato__container > h1 {
    font-size: 2.25rem;
    max-width: 380px;
    margin: 0 auto 10px auto;
  }
}
@media screen and (max-width: 48rem) {
  .main__contato .main__contato__container > h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 33.75rem) {
  .main__contato .main__contato__container > h1 {
    font-size: 1.75rem;
    line-height: 2.1rem;
  }
}
.main__contato .main__contato__divimg {
  flex-shrink: 0;
  justify-self: flex-end;
  animation: efeito-opacity 1s ease-out forwards;
}
.main__contato .main__contato__divimg img {
  margin: 0 auto;
}

@media screen and (max-height: 768px) {
  .main__contato {
    min-height: 100vh;
  }
}
.nav__contato {
  max-width: 1034px;
  margin: 0 auto;
  padding: 5px;
  position: relative;
  top: -30px;
  z-index: 2;
  background-color: #EE522A;
  border-radius: 3.875rem;
  overflow: hidden;
}
.nav__contato .nav__contato__ul {
  display: flex;
}
@media screen and (max-width: 48rem) {
  .nav__contato .nav__contato__ul {
    width: 100%;
    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
}
.nav__contato .nav__contato__ul li {
  flex: 1;
}
.nav__contato .nav__contato__ul a {
  padding: 0.625rem 2rem;
  display: block;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  border-radius: 3.4375rem;
  white-space: nowrap;
  text-align: center;
  transition: 0.3s ease-out;
}
.nav__contato .nav__contato__ul a:hover {
  background-color: #FFFFFF;
  color: #FF6138;
}
@media screen and (max-width: 64rem) {
  .nav__contato .nav__contato__ul a {
    padding: 0.625rem 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 48rem) {
  .nav__contato .nav__contato__ul a {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.nav__contato .nav__contato__ul .active {
  background-color: #FFFFFF;
  color: #FF6138;
}

.section1__contatoparcerias {
  margin-top: 48px;
}
.section1__contatoparcerias .section1__contatoparcerias__article1 {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 64rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article1 {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__info {
  flex: 1 0 350px;
  max-width: 520px;
}
@media screen and (max-width: 47rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__info {
    flex: 1;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__info h1 {
  max-width: 400px;
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__info p {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__info p + p {
  margin-top: 24px;
}
@media screen and (max-width: 33.75rem) {
    .section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__form {
        width: 100% !important;
    }
    .section1__contatoparcerias .section1__contatoparcerias__article1 .section1__contatoparcerias__article1__form iframe {
        width: 100% !important;
    }
}
.section1__contatoparcerias .section1__contatoparcerias__article2 {
  margin-top: -240px;
  padding: 0 0 66px 0;
  background-image: url("../../imgs/contato/section2-parcerias.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 {
    margin-top: -140px;
  }
}
@media screen and (max-width: 48rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 {
    margin-top: -80px;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__contatoparcerias__article2__container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 380px 24px 0 24px;
}
@media screen and (max-width: 64rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 .section1__contatoparcerias__article2__container {
    margin-top: -200px;
    padding: 280px 24px 0 24px;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__contatoparcerias__article2__items {
  max-width: 430px;
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__contatoparcerias__article2__items h1 {
  max-width: 410px;
  margin-bottom: 32px;
  color: #FFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex {
  max-width: 410px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 33.75rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex {
    grid-template-columns: 1fr;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex__divitems {
  width: 190px;
  height: 190px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 64rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex__divitems {
    flex: 1 1 210px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex__divitems {
    margin: 0 auto;
  }
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__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__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex__divitems p {
  color: #3A3A3A;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
.section1__contatoparcerias .section1__contatoparcerias__article2 .section1__divflex__divitems:nth-child(1) {
  grid-column: 1/-1;
}

.section2__contatofornecedores {
  margin-top: 48px;
}
.section2__contatofornecedores .section2__contatofornecedores__article1 {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 64rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article1 {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__info {
  flex: 1 0 300px;
  max-width: 520px;
}
@media screen and (max-width: 48rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__info {
    flex: 1;
  }
}
.section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__info h1 {
  max-width: 400px;
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__info p {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__info p + p {
  margin-top: 24px;
}
@media screen and (max-width: 33.75rem) {
    .section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__form {
        width: 100% !important;
    }
    .section2__contatofornecedores .section2__contatofornecedores__article1 .section2__contatofornecedores__article1__form iframe {
        width: 100% !important;
    }
}
.section2__contatofornecedores .section2__contatofornecedores__article2 {
  margin-top: -340px;
  padding: 0 0 114px 0;
  background-image: url("../../imgs/contato/section2-fornecedores.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article2 {
    margin-top: -240px;
  }
}
@media screen and (max-width: 48rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article2 {
    margin-top: -140px;
    padding: 0 0 72px 0;
  }
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__article2__container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 380px 24px 0 24px;
}
@media screen and (max-width: 64rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__article2__container {
    padding: 240px 24px 0 24px;
  }
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info h1 {
  margin-bottom: 32px;
  color: #FFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista {
  display: flex;
  gap: 100px;
  flex-direction: column;
}
@media screen and (max-width: 33.75rem) {
  .section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista {
    gap: 60px;
  }
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista span {
  width: 3.75rem;
  height: 3.75rem;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFEFEB;
  color: #DE4A24;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
  border-radius: 1rem;
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista li:nth-child(1) span:nth-child(1)::before,
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista li:nth-child(2) span:nth-child(1)::before {
  content: "";
  width: 1px;
  height: 110px;
  position: absolute;
  left: 50%;
  bottom: -105px;
  transform: translateX(-50%);
  display: block;
  background-color: #FFEFEB;
}
.section2__contatofornecedores .section2__contatofornecedores__article2 .section2__contatofornecedores__info__lista h2 {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
}

.section3__contatoouvidoria {
  margin-top: 48px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.section3__contatoouvidoria::before {
  content: "";
  width: 76%;
  height: 287px;
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: -1;
  background-image: url("../../imgs/vetores/linha-10.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width: 64rem) {
  .section3__contatoouvidoria::before {
    width: 100%;
    bottom: 10%;
  }
}
.section3__contatoouvidoria .section3__contatoouvidoria__container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 64rem) {
  .section3__contatoouvidoria .section3__contatoouvidoria__container {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section3__contatoouvidoria .section3__contatoouvidoria__info {
  flex: 1 0 300px;
  max-width: 520px;
}
@media screen and (max-width: 48rem) {
  .section3__contatoouvidoria .section3__contatoouvidoria__info {
    flex: 1;
  }
}
.section3__contatoouvidoria .section3__contatoouvidoria__info h1 {
  max-width: 400px;
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section3__contatoouvidoria .section3__contatoouvidoria__info p {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section3__contatoouvidoria .section3__contatoouvidoria__info p + p {
  margin-top: 24px;
}
@media screen and (max-width: 33.75rem) {
    .section3__contatoouvidoria .section3__contatoouvidoria__form {
        width: 100% !important;
    }
    .section3__contatoouvidoria .section3__contatoouvidoria__form iframe {
        width: 100% !important;
    }
}
.section4__contatoassessoria {
  margin-top: 48px;
}
.section4__contatoassessoria .section4__contatoassessoria__container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 64rem) {
  .section4__contatoassessoria .section4__contatoassessoria__container {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section4__contatoassessoria .section4__contatoassessoria__info {
  flex: 1 0 300px;
  max-width: 520px;
}
@media screen and (max-width: 48rem) {
  .section4__contatoassessoria .section4__contatoassessoria__info {
    flex: 1;
  }
}
.section4__contatoassessoria .section4__contatoassessoria__info h1 {
  max-width: 400px;
  margin-bottom: 16px;
  color: #FF6138;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: normal;
}
.section4__contatoassessoria .section4__contatoassessoria__info p {
  color: #3A3A3A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59375rem;
}
.section4__contatoassessoria .section4__contatoassessoria__info p + p {
  margin-top: 24px;
}
@media screen and (max-width: 33.75rem) {
    .section4__contatoassessoria .section4__contatoassessoria__forms {
        width: 100% !important;
    }
    .section4__contatoassessoria .section4__contatoassessoria__forms iframe {
        width: 100% !important;
    }
}
.section4__contatoassessoria .section4__contatoassessoria__article2 {
  margin-top: -400px;
  padding: 0 0 70px 0;
  background-image: url("../../imgs/contato/section2-acessoria.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 {
    margin-top: -240px;
  }
}
@media screen and (max-width: 48rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 {
    margin-top: -180px;
    padding: 0 0 72px 0;
  }
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__article2__container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 380px 24px 0 24px;
}
@media screen and (max-width: 64rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__article2__container {
    padding: 300px 24px 0 24px;
  }
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__article__info {
  max-width: 480px;
  margin-bottom: 32px;
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__article__info h1 {
  margin-bottom: 16px;
  color: #FFF;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.25rem;
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__article__info p {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 64rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
}
.section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex .cards-2 {
    width: 410px;
    scroll-snap-align: center;
}
@media screen and (max-width: 64rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex .cards-2 {
    width: 410px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 48rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex .cards-2 {
    width: 375px;
  }
}
@media screen and (max-width: 33.75rem) {
  .section4__contatoassessoria .section4__contatoassessoria__article2 .section4__contatoassessoria__articleflex .cards-2 {
    width: 335px;
  }
}

.section__content {
  display: none;
}

.section__content.active {
  display: block;
}
.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}
}
/*# sourceMappingURL=style.css.map */