* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body{
    overflow-x: auto !important;
}

body {
  background-color: #FFFFFF;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.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__small {
  padding: 9.5px 16px;
  font-weight: 600;
}

.mobile-content {
  display: none !important;
}
@media screen and (max-width: 33.75rem) {
  .mobile-content {
    display: inherit !important;
  }
}

.desktop-content {
  display: inherit;
}
@media screen and (max-width: 33.75rem) {
  .desktop-content {
    display: none !important;
  }
}

.mapa__container {
  max-width: 51.4375rem;
  min-height: 31.25rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
}
@media screen and (max-width: 48rem) {
  .mapa__container {
    border-radius: 0.5rem;
  }
}
.mapa__container #loading {
  width: 100%;
  height: 100%;
  flex: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #EBEBEB;
  transition: animation 0.3s;
  visibility: hidden;
  pointer-events: none;
}
.mapa__container #loading.active {
  animation: show-loading 0.8s forwards ease alternate infinite;
  visibility: visible;
}
.mapa__container #mapa {
  width: 100%;
  height: 100%;
  flex: 1;
}
.mapa__container #mapa iframe {
  width: 100%;
  min-height: 100%;
  display: block;
}

@keyframes show-loading {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.container__events {
  display: flex;
  gap: 1.5rem 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 48rem) {
  .container__events {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    align-items: initial;
  }
}

.card-events {
  flex: 1 1 15.625rem;
  max-width: 18.1875rem;
  background-color: #FFF;
  border-radius: 1rem;
  box-shadow: 0px 5px 16.6px 0px rgba(181, 198, 232, 0.28);
  overflow: hidden;
  scroll-snap-align: center;
}
@media screen and (max-width: 48rem) {
  .card-events {
    width: 18.1875rem;
    flex: initial;
    flex-shrink: 0;
    border-radius: 0.5rem;
  }
}
.card-events .card-events__img {
  overflow: hidden;
}
.card-events .card-events__img img {
  min-height: 12.25rem;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.card-events .card-events__img:hover img {
  transform: scale(1.1);
}
.card-events .card-events__information {
  padding: 1rem 1rem 1.19rem 1rem;
}
.card-events .card-events__information h2 {
  margin-bottom: 0.5rem;
  color: #262626;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: "Arvo", serif;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.card-events .card-events__information__dates {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.card-events .card-events__information__dates div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.card-events .card-events__information__dates svg {
  flex-shrink: 0;
}
.card-events .card-events__information__dates p {
  color: #262626;
  font-size: 1rem;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.card-events .card-events__information__social ul {
  display: flex;
  gap: 1rem;
}
.card-events .card-events__information__social a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-events .card-events__information__social svg:hover path {
  fill: #c83f19;
}

.section1__singleevent {
  margin-top: 10rem;
  margin-bottom: 5rem;
  padding: 0 1.5rem;
  position: relative;
}
@media screen and (max-width: 48rem) {
  .section1__singleevent {
    margin-bottom: 3.5rem;
  }
}
.section1__singleevent .section1__singleevent__container {
  max-width: 75.75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 21.75rem;
  gap: 2.5rem;
}
@media screen and (max-width: 48rem) {
  .section1__singleevent .section1__singleevent__container {
    grid-template-columns: 1fr;
  }
}
.section1__singleevent .section1__singleevent__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__img img {
  width: 100%;
  max-height: 26.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem;
}
@media screen and (max-width: 48rem) {
  .section1__singleevent .section1__singleevent__content .singleevent__content__img img {
    border-radius: 0.5rem;
  }
}
.section1__singleevent .section1__singleevent__content .singleevent__content__about h1 {
  margin-bottom: 1rem;
  color: #262626;
  font-size: 1.5625rem;
  line-height: 2.325rem;
  font-family: "Arvo", serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__about h1 strong {
  font-family: "Arvo", serif;
  font-weight: 700;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__about p {
  color: #262626;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__map h1 {
  color: #262626;
  font-size: 1.5625rem;
  line-height: 2.325rem;
  font-family: "Arvo", serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__map .singleevent__content__address {
  margin: 1rem 0 1.5rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__map .singleevent__content__address svg {
  flex-shrink: 0;
}
.section1__singleevent .section1__singleevent__content .singleevent__content__map .singleevent__content__address p {
  color: #262626;
  font-size: 1rem;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__information {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky !important;
  top: 9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 48rem) {
  .section1__singleevent .section1__singleevent__information {
    height: auto;
    position: initial;
  }
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details {
  padding: 1.5rem;
  background-color: #FFF;
  border-radius: 1.1875rem;
  box-shadow: 0px 5px 16.6px 0px rgba(181, 198, 232, 0.28);
}
@media screen and (max-width: 48rem) {
  .section1__singleevent .section1__singleevent__information .singleevent__information__details {
    border-radius: 0.5rem;
  }
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details h1 {
  margin-bottom: 1rem;
  color: #262626;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: "Arvo", serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__date {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__date div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 33.75rem) {
  .section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons {
    padding: 0;
  }
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons a:first-child {
  width: 100%;
  padding: 0.66rem;
  background: linear-gradient(0deg, #FF6237 0%, #FF6237 100%), #262626;
  color: #FFF;
  text-align: center;
  font-size: 0.875rem;
  line-height: normal;
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons a:first-child:hover {
  background: linear-gradient(0deg, #fc5628 0%, #fe6135 100%), #262626;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons a:last-child {
  color: #262626;
  font-size: 0.875rem;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__details .information__details__buttons a:last-child:hover {
  color: #000;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__share {
  padding: 1.0625rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.94rem;
  background-color: #FFF;
  box-shadow: 0px 5px 16.6px 0px rgba(181, 198, 232, 0.28);
  border-radius: 1.1875rem;
}
@media screen and (max-width: 48rem) {
  .section1__singleevent .section1__singleevent__information .singleevent__information__share {
    flex-wrap: wrap;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 33.75rem) {
  .section1__singleevent .section1__singleevent__information .singleevent__information__share {
    padding: 1.0625rem 1.5rem;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
.section1__singleevent .section1__singleevent__information .singleevent__information__share p {
  color: #262626;
  font-size: 1.25rem;
  line-height: 2.325rem;
  font-family: "Arvo", serif;
  font-weight: 400;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__share ul {
  display: flex;
  gap: 1rem;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__share a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section1__singleevent .section1__singleevent__information .singleevent__information__share a svg:hover path {
  fill: #c83f19;
}

.section2__singleevent {
  padding: 5rem 1.5rem;
  background-color: #FBFBFB;
  content-visibility: auto;
}
@media screen and (max-width: 48rem) {
  .section2__singleevent {
    padding: 3.5rem 1.5rem;
  }
}
.section2__singleevent .section2__singleevent__container {
  max-width: 75.75rem;
  margin: 0 auto;
}
.section2__singleevent .section2__singleevent__container > h1 {
  margin-bottom: 1.5rem;
  color: #262626;
  font-size: 1.5625rem;
  line-height: 2.325rem;
  font-family: "Arvo", serif;
  font-weight: 400;
}
.section2__singleevent .section2__singleevent__container > h1 strong {
  font-family: "Arvo", serif;
  font-weight: 700;
}

.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");
}
.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}
}