:root {
  --white: white;
  --light-blue: #499eb4;
  --yellow: #ffd303;
  --red: #ef4823;
  --black: black;
  --blue: #006482;
  --mostarda: #febf10;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--white);
  color: var(--white);
  background-image: url('../images/bg-pattern.svg');
  background-position: 0 0;
  background-size: 50px;
  flex-direction: column;
  font-family: DM Mono, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
}

h1 {
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Rum Raisin, sans-serif;
  font-size: 121.5px;
  font-weight: 400;
  line-height: 1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Rum Raisin, sans-serif;
  font-size: 81px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Rum Raisin, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rum Raisin, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rum Raisin, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rum Raisin, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--light-blue);
  text-decoration: underline;
}

label {
  margin-bottom: 5px;
  display: block;
}

blockquote {
  border: 2px solid var(--light-blue);
  background-color: var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  font-size: 18px;
  line-height: 22px;
}

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container.relative {
  position: relative;
}

.bg-pinkish {
  background-color: var(--yellow);
}

.brand-logo {
  max-width: 129px;
}

.brand-logo.in-footer {
  position: absolute;
  bottom: -24px;
}

.brand {
  align-items: center;
  padding-left: 0;
  display: flex;
}

.text-next-to-logo {
  color: var(--white);
  font-family: Rum Raisin, sans-serif;
  font-size: 40px;
}

.nav-link {
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 20px;
  font-family: DM Mono, sans-serif;
  font-weight: 500;
  transition: all .2s;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--light-blue);
  text-decoration: underline;
}

.button {
  border: 2px solid var(--white);
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  justify-content: center;
  padding: 16px 24px;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button:hover {
  background-color: var(--yellow);
}

.button.in-navbar {
  margin-left: auto;
}

.button.in-navbar.hidden-mobile, .button.in-navbar.hidden-desktop {
  display: none;
}

.button.secondary {
  border-color: var(--black);
  background-color: var(--white);
  color: var(--black);
}

.button.secondary:hover {
  background-color: var(--yellow);
}

.button.submit {
  height: 56px;
  background-color: var(--red);
}

.button.submit:hover {
  background-color: var(--yellow);
}

.button.m-auto {
  margin-top: 56px;
}

.navbar-wrap {
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-menu {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  display: flex;
}

.section {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

.section.footer {
  z-index: 1;
  background-color: var(--light-blue);
  color: var(--white);
  margin-top: auto;
  padding: 24px 28px;
  position: relative;
}

.section.bg-blue {
  color: var(--white);
}

.section.cardapio {
  padding-left: 100px;
  padding-right: 100px;
}

.section.atracoes, .section.padding {
  padding-left: 60px;
  padding-right: 60px;
}

.section.padding-inline {
  padding: 0 60px;
}

.section.padding-inline.margin-top.paddling-bottom {
  padding-bottom: 120px;
}

.section.hero {
  padding-top: 120px;
  padding-bottom: 136px;
}

.section.lista-desconto {
  padding-top: 120px;
  padding-bottom: 148px;
}

.section.plus-padding {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.galeria {
  padding: 120px 60px;
}

.homepage-hero-wrap {
  width: 100%;
  height: 120vh;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.background-shape {
  width: 100%;
  max-width: 85%;
  align-self: center;
}

.background-shape.obar {
  width: 10%;
}

.sticky-hero-text {
  width: 100%;
  height: 100vh;
  max-width: 80%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sticky-hero-text.texto {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.hero-images-wrap {
  width: 100%;
  height: 90%;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-image {
  width: 100%;
  max-width: 40%;
  position: absolute;
}

.hero-image._1 {
  max-width: 35%;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 3%;
  transform: rotate(1deg)translate(0);
}

.hero-image._1:hover {
  border: 20px solid #ffbf10;
}

.hero-image._1.obar {
  border: 20px solid var(--mostarda);
}

.hero-image._2 {
  top: auto;
  bottom: 0%;
  left: 5%;
  right: auto;
  transform: rotate(1deg);
}

.hero-image._2:hover {
  border: 20px solid #ffbf10;
}

.hero-image._2.obar {
  border: 20px solid var(--mostarda);
}

.icon {
  max-width: 100px;
  flex: none;
}

.icon.on-the-festival-page {
  max-width: 60px;
  margin-top: 40px;
  position: absolute;
  top: 15%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: rotate(20deg);
}

.max-17ch {
  max-width: 17ch;
  color: var(--mostarda);
}

.background-shape-wrap {
  z-index: 0;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.background-shape-wrap.hide {
  display: none;
}

.infinite-marquee-wrap {
  width: 100%;
  max-width: 100%;
  background-color: var(--light-blue);
  color: var(--white);
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  overflow: hidden;
}

.infinite-marquee-wrap.pinkish-bg-with-black-text {
  background-color: var(--yellow);
  color: var(--light-blue);
}

.infinite-marquee-text-block {
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  margin-left: 40px;
  font-family: Rum Raisin, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.festivals-clw, .festivals-cl {
  width: 100%;
}

.festival-card {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  overflow: hidden;
}

.festival-card:nth-child(2n), .festival-card.reverse {
  flex-direction: row-reverse;
}

.festival-card.reverse.pt-180 {
  padding-top: 180px;
}

.festival-card.hidden {
  display: none;
}

.festival-card.pad-bottom {
  align-items: flex-start;
  margin-top: 120px;
  padding-bottom: 260px;
}

.festival-main-image-wrap {
  width: 50%;
  flex: none;
  padding-top: 50%;
  position: relative;
}

.absolute-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.absolute-image.opacity-0 {
  opacity: 0;
}

.festival-info-card {
  width: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 60px 60px;
  display: flex;
  position: relative;
}

.festival-info-card.hero {
  justify-content: flex-start;
}

.buttons-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.festival-date {
  font-size: 24px;
}

.festival-icon {
  max-width: 80px;
  flex: none;
  position: absolute;
  top: auto;
  bottom: -30%;
  left: auto;
  right: 15%;
  transform: rotate(20deg);
}

.festival-info-card-content {
  width: 100%;
  max-width: 550px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.centred-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 80px;
}

.centred-heading.no-bottom-margin {
  margin-bottom: 0;
}

.blog-clw {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cl {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: start;
  justify-items: center;
  display: grid;
}

.blog-cli {
  width: 100%;
  max-width: 400px;
  transition: all .4s;
}

.blog-cli:nth-child(2n+1) {
  transform: rotate(-2deg);
}

.blog-cli:first-child {
  transform: rotate(3deg);
}

.blog-card {
  width: 100%;
  background-color: var(--white);
  color: var(--light-blue);
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.blog-card-info {
  width: 100%;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: flex;
}

.square-image-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.blog-card-heading {
  margin-bottom: 12px;
  font-size: 28px;
}

.pin-icon {
  max-width: 60px;
  position: absolute;
  top: -5%;
}

.centred-button {
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.star-icon {
  max-width: 60px;
  position: absolute;
  top: -60px;
  bottom: auto;
  left: auto;
  right: -48px;
  transform: rotate(20deg);
}

.star-icon.on-festival-page {
  top: 5%;
  bottom: auto;
  left: 10%;
  right: auto;
}

.star-icon.bottom {
  top: auto;
  bottom: -30%;
  left: 0%;
  right: auto;
  transform: rotate(-14deg);
}

.star-icon.topo {
  right: 40px;
}

.star-icon.pin-image {
  top: -140px;
  left: 200px;
  right: auto;
}

.star-icon.galery {
  align-self: flex-start;
  position: static;
}

.star-icon.heo-galery {
  right: 40%;
}

.star-icon.boneco {
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.stacked-heading-wrap {
  width: 100%;
  max-width: 100ch;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rating {
  font-family: Rum Raisin, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.rating-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.stars-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.star {
  height: 28px;
}

.google-icon {
  height: 48px;
  border: 2px solid var(--light-blue);
  background-color: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.google-icon.small {
  height: 24px;
}

.reviews-slider {
  width: 100%;
  height: auto;
  max-width: 1280px;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.left-arrow {
  width: 10%;
  background-image: url('../images/Skip-to-Start.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 54px;
}

.right-arrow {
  width: 10%;
  background-image: url('../images/Fast-Forward.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 54px;
}

.slide {
  width: 100%;
}

.mask {
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.slide-nav {
  position: relative;
}

.slide-wrap {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.polaroid-styled-image-wrap {
  width: 100%;
  max-width: 80%;
  background-color: var(--white);
  margin: 32px;
  padding: 20px;
  position: relative;
  transform: rotate(3deg);
}

.polaroid-styled-image-wrap:hover {
  transform: rotate(-4deg);
}

.polaroid-styled-image-wrap.rotate--3-deg {
  transform: rotate(-2deg);
}

.polaroid-styled-image-wrap.rotate-1-deg {
  transform: rotate(1deg);
}

.polaroid-styled-image-wrap.in-blog-page {
  z-index: 1;
  max-width: 30%;
  border: 2px solid var(--light-blue);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.review-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.review-meta-data-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 20px;
  display: grid;
}

.huge-text {
  text-align: center;
  text-transform: uppercase;
  font-family: Rum Raisin, sans-serif;
  font-size: 254px;
  font-weight: 400;
  line-height: 1;
}

.sponsors-clw {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors-cl {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.sponsors-cli {
  width: 100%;
  background-color: var(--white);
}

.sponsors-cli:nth-child(2n+1) {
  background-image: url('../images/decor-icon-3.svg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.sponsors-cli:nth-child(2n) {
  background-image: url('../images/decor-icon-2.svg');
  background-position: 60% 20%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.sponsors-cli:first-child {
  background-image: url('../images/decor-icon-1.svg');
  background-position: 20px 60%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.sponsors-cli:last-child {
  background-image: url('../images/decor-icon-4.svg'), url('../images/decor-icon-1.svg');
  background-position: 20px 60%, 95% 25%;
  background-repeat: no-repeat, no-repeat;
  background-size: 40px, 40px;
}

.sponsor-card {
  width: 100%;
  height: 100%;
  min-height: 480px;
  color: var(--light-blue);
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.sponsor-heading {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 240px;
  font-size: 40px;
  line-height: 1.1;
  position: relative;
}

.sponsor-description {
  margin-bottom: 0;
  font-size: 14px;
  position: relative;
}

.sponsor-logo {
  z-index: 1;
  max-height: 60px;
  max-width: 90px;
  position: absolute;
}

.sponsor-logo.static {
  position: static;
}

.sponsor-logo-wrap {
  z-index: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, .2);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.newsletter-heading {
  font-size: 48px;
}

.newsletter-form-block {
  width: 100%;
}

.text-field-linha {
  height: 56px;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--white);
  color: var(--light-blue);
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 42px;
  padding: 12px;
}

.text-field-linha:focus {
  border-color: var(--blue);
}

.text-field-linha::-ms-input-placeholder {
  color: var(--mostarda);
}

.text-field-linha::placeholder {
  color: var(--mostarda);
}

.text-field-linha.area {
  height: auto;
  min-height: 112px;
}

.socials-wrap {
  width: 100%;
  max-width: 440px;
  align-items: center;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.social-link {
  flex: none;
  margin-left: 4px;
  margin-right: 4px;
  transition: all .2s;
}

.social-link:hover {
  transform: translate(0, -4px);
}

.social-icon {
  height: 54px;
}

.socials-heading {
  margin-right: 20px;
  font-size: 28px;
}

.sun-icon {
  max-width: 90px;
  position: absolute;
  top: -72px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.success-message {
  border: 2px solid var(--light-blue);
  color: var(--light-blue);
  text-align: center;
  background-color: #f4e9dd;
}

.error-message {
  border: 2px solid var(--red);
  background-color: var(--white);
  color: var(--light-blue);
  margin-top: 12px;
  padding: 12px 20px;
}

.footer-wrap {
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.footer-links {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.footer-links.align-right {
  justify-content: end;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--light-blue);
}

.bg-green {
  background-color: var(--blue);
}

.festival-page-hero-wrap {
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.max-10ch {
  max-width: 10ch;
}

.poster-wrap {
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-top: 40px;
}

.festial-hero-wrap {
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.video {
  width: 100%;
  max-width: 1440px;
  flex: none;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.artist-clw {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.artist-cl {
  width: 100%;
}

.artist-card {
  z-index: 1;
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 2px solid var(--light-blue);
  color: var(--light-blue);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: stretch;
  text-decoration: none;
  display: grid;
  position: relative;
}

.artist-image {
  width: 50%;
  flex: none;
  position: absolute;
}

.artist-image-wrap {
  z-index: 0;
  width: 100%;
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10%;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.artist-link-block {
  width: 100%;
  color: var(--light-blue);
  text-decoration: none;
  position: relative;
}

.cta-wrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ticket-image {
  width: 100%;
}

.ticket-image.mobile {
  display: none;
}

.cta-content-wrap {
  z-index: 1;
  width: 77%;
  height: 100%;
  color: var(--yellow);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.cta-heading {
  margin-top: 8px;
  font-size: 60px;
}

.ticket-tail {
  width: 23%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.rotated-text {
  width: 100%;
  transform-origin: 100% 100%;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  right: 65%;
  transform: rotate(-90deg);
}

.ticket-tail-heading {
  text-align: center;
  white-space: nowrap;
  font-family: Rum Raisin, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.font-size-smaller {
  text-align: center;
  font-size: 14px;
}

.festival-hero-images-wrap {
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.artist-page-wrap {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.short-bio {
  max-width: 28ch;
  font-size: 24px;
}

.artist-main-image {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.artist-image-big {
  max-width: 135%;
  position: absolute;
}

.artist-info-wrap {
  z-index: 1;
  width: 100%;
  max-width: 520px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.column-centre {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-wrap {
  width: 100vw;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 440px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.sponsor-page-wrap {
  width: 100%;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  display: flex;
}

.sponsor-image {
  width: 100%;
  max-width: 35%;
  object-fit: cover;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  display: block;
}

.sponsor-info-wrap {
  width: 100%;
  max-width: 75%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.sponsor-page-description {
  max-width: 35ch;
  margin-bottom: 20px;
  font-size: 21px;
}

.sponsors-cta-text {
  margin-top: 40px;
  margin-bottom: 20px;
}

.sponsor-page-content-wrap {
  width: 100%;
  max-width: 600px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.decorative-icon {
  z-index: 1;
  max-width: 60px;
  position: absolute;
}

.decorative-icon.top-left {
  top: -15%;
  bottom: auto;
  left: -20%;
  right: auto;
}

.decorative-icon.bottom-right {
  top: auto;
  bottom: 5%;
  left: auto;
  right: 0%;
}

.decorative-icon.top-right {
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.h1-on-blog-page {
  width: 100%;
  max-width: 85%;
  font-size: 81px;
}

.blog-content-wrap {
  width: 100%;
  max-width: 80%;
  background-color: var(--white);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  padding: 80px;
  display: flex;
}

.blog-page-grid {
  width: 100%;
  max-width: 1280px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.empty-state {
  background-color: var(--mostarda);
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  font-family: Rum Raisin, sans-serif;
  font-size: 48px;
  display: flex;
}

.max-25ch {
  max-width: 25ch;
}

.past-festival-button-no-active {
  border: 2px solid var(--white);
  background-color: var(--mostarda);
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 24px;
  font-size: 20px;
}

.pagination {
  margin-top: 40px;
}

.contact-page-wrap {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.contact-form-block {
  z-index: 1;
  width: 100%;
  max-width: 720px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 40px;
  display: flex;
  position: relative;
}

.contact-form {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.contact-links-wrap {
  width: 100%;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
}

.contact-page-image-wrap {
  width: 50%;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  flex: none;
  align-self: flex-start;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.ribbon-below-footer {
  width: 100%;
  text-align: center;
  background-color: #000;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 8px 20px;
  font-size: 12px;
  display: flex;
}

.error-message-2 {
  color: red;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 12px;
  padding: 0;
  font-size: .75em;
}

.style-guide-block {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.success-message-2 {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.style-guide-wrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .75rem;
  font-weight: 600;
}

.licencing-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.subheading {
  max-width: 50ch;
}

.icons-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.sponsor-page-heading {
  font-size: 81px;
}

.page-wrapper {
  width: 100%;
  max-width: 1920px;
  background-color: var(--blue);
  flex-direction: column;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.page-wrapper.artist-page {
  background-color: var(--blue);
  overflow: hidden;
}

.page-wrapper.festival-page, .bg-blue {
  background-color: var(--blue);
}

.bg-mostarda {
  background-color: var(--mostarda);
}

.d-flex {
  display: flex;
}

.d-flex.align-content-end {
  align-items: flex-end;
}

.d-flex.space-between {
  justify-content: space-between;
}

.d-flex.space-between.align-center._w-100 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.d-flex.gap-8 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.d-flex.flex-column, .d-flex.flex-column.align-content-center.reverse {
  flex-direction: column;
}

.d-flex.flex-column.footer-links {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

.d-flex.justify-content-center {
  justify-content: center;
}

.d-flex.reverse {
  flex-direction: row-reverse;
}

.d-flex.gap-80 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  text-align: center;
}

.d-flex.gap-80.ml-auto {
  flex: none;
}

.d-flex.flex-wrap {
  flex-wrap: wrap;
}

.d-flex.gap-32 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.d-flex.align-content-center {
  align-items: center;
}

.d-flex.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.fs-1 {
  font-size: 120px;
}

.fs-2 {
  font-size: 81px;
}

.fs-3 {
  font-size: 54px;
}

.fs-4 {
  font-size: 36px;
}

.fs-5 {
  font-size: 20px;
}

.fs-6 {
  font-size: 16px;
}

.fs-6.no-margins {
  font-size: 20px;
}

.pin-photo {
  border: 20px solid #fff;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
}

.pin-photo:hover {
  transform: rotate(7deg);
}

.pin-photo.margin-for-effect {
  object-fit: cover;
  margin-top: 80px;
  margin-bottom: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.new-sun-icon {
  max-width: 170px;
  position: absolute;
  top: -56px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.new-sun-icon.on-festival-page {
  top: 5%;
  bottom: auto;
  left: 10%;
  right: auto;
}

.brand-name {
  margin-left: -15px;
}

.pin-image-wrap {
  width: 50%;
  flex: none;
  display: flex;
  position: relative;
}

.pin-image-wrap.right {
  padding-left: 20px;
  padding-right: 64px;
}

.pin-image-wrap.left {
  padding-left: 64px;
  padding-right: 64px;
}

.pin-image-wrap.left.relative {
  width: 50%;
  padding-right: 64px;
}

.pin-image-wrap.left.overflow-visible {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pin-image-wrap.hero-o-bar {
  width: 60%;
  margin-right: 0;
  padding-right: 64px;
}

.cardapio-image-wrap {
  width: 50%;
  flex: none;
  position: relative;
}

.cardapio-image {
  padding: 40px 40px 60px;
}

.cardapio-image._1 {
  transform: rotate(-3deg);
}

.cardapio-image._2 {
  transform: rotate(3deg);
}

.bg-white {
  background-color: var(--white);
}

.text-black {
  color: var(--black);
}

._w-100 {
  width: 100%;
}

.overflow-visible {
  overflow: visible;
}

.footer-logo {
  max-width: 284px;
  position: absolute;
  top: auto;
  bottom: 82%;
  left: auto;
  right: 4%;
}

.footer-content-wrap {
  width: 100%;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.atracoes-grid {
  max-width: 1440px;
  grid-column-gap: 16px;
  grid-row-gap: 96px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.atracao-wrap {
  max-width: 460px;
  padding: 24px 24px 40px;
}

.cardapio-block-wrap {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  overflow: hidden;
}

.cardapio-block-wrap:nth-child(2n) {
  flex-direction: row-reverse;
}

.cardapio-block-wrap.overflow-visible {
  overflow: visible;
}

.cardapio-pratos-wrap {
  width: 50%;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
  position: relative;
}

.mt-24 {
  margin-top: 24px;
}

.data-evento-wrap.d-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  padding: 8px;
}

.bg-light-blue {
  background-color: #499eb4;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.ml-auto {
  margin-left: auto;
}

.text-white {
  color: var(--white);
  text-decoration: none;
}

.fs-7 {
  font-size: 12px;
}

.text-right {
  text-align: right;
}

.dancing-icon {
  width: 100%;
  max-width: 300px;
  margin-left: 10%;
}

.text-center {
  text-align: center;
}

.seu-evento-info-wrap {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  align-items: center;
  display: flex;
}

.contact-page-wrap-copy {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.lista-de-desconto-wrap {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 40px;
  display: flex;
  position: relative;
}

.fale-conosco {
  max-width: 750px;
}

.m-auto {
  margin: auto;
}

.button-especil {
  color: var(--white);
  background-color: rgba(56, 152, 236, 0);
  position: absolute;
}

.button-especial-img {
  z-index: -1;
  width: 67px;
  position: absolute;
}

.button-especial-img.bigger {
  width: 120px;
}

.button-especial-img.medium {
  width: 96px;
}

.button-especial {
  width: 130px;
  height: 67px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.button-especial-text {
  text-align: center;
}

.email-text-field {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  padding-left: 180px;
  display: flex;
}

.hero-star {
  width: 60px;
  position: absolute;
}

.hero-star._1 {
  top: -70px;
  right: 24%;
  transform: rotate(28deg);
}

.hero-star._2 {
  left: 20%;
  transform: rotate(-24deg);
}

.hero-star._3 {
  right: 15%;
  transform: rotate(15deg);
}

.relative {
  width: 100%;
  margin: auto;
  position: relative;
}

.lista-icon {
  width: 120px;
  position: absolute;
}

.lista-icon._1 {
  top: -40px;
  right: 80px;
}

.lista-icon._2 {
  width: 64px;
  top: 120px;
  right: 40px;
  transform: rotate(12deg);
}

.lista-icon._3 {
  bottom: 17%;
  left: 10%;
  transform: rotate(15deg);
}

.seu-proprio-evento-icon {
  position: absolute;
  bottom: 0;
  left: 20%;
}

.onde-estamos-icon {
  position: absolute;
  bottom: -32px;
  right: 40px;
}

.atracao-icon-pin {
  width: 62px;
  position: absolute;
  top: -30px;
  bottom: auto;
  left: auto;
  right: -30px;
}

.atracao-icon-pin.pagina-atracoes {
  margin-left: auto;
  margin-right: auto;
  top: -50px;
  left: 0;
  right: -20px;
}

.mb-32 {
  margin-bottom: 32px;
}

.email-text-description {
  max-width: 415px;
}

.email-text-wrap, .email-wrap {
  width: 100%;
}

.m-md-auto {
  margin: auto;
}

.mt-48 {
  margin-top: 48px;
}

.overflow-hidden {
  overflow: hidden;
}

._65px {
  width: 65px;
}

.infinite-marquee-text-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  align-items: center;
  font-family: Rum Raisin, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: relative;
}

.text-field-linha-email {
  height: 56px;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--white);
  color: var(--light-blue);
  background-color: rgba(255, 255, 255, 0);
  margin-top: 64px;
  margin-bottom: 42px;
  padding: 12px;
}

.text-field-linha-email:focus {
  border-color: var(--blue);
}

.text-field-linha-email::-ms-input-placeholder {
  color: var(--mostarda);
}

.text-field-linha-email::placeholder {
  color: var(--mostarda);
}

.text-field-linha-email.area {
  height: auto;
  min-height: 112px;
}

.rotate-data {
  transform: rotate(6deg);
}

.hero-o-bar {
  width: 100%;
  transform-style: preserve-3d;
  border-radius: 0;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
}

.hero-o-bar:hover {
  transform: rotateX(-4deg)rotateY(0)rotateZ(9deg);
}

.galery-icon-wrap {
  width: 40%;
}

.galery-icon-wrap.d-flex.relative {
  min-width: 500px;
}

.galery-icon {
  width: 100%;
  max-width: 377px;
  margin-left: 32px;
}

.hidden {
  display: none;
}

.text-span {
  text-decoration: underline;
}

.div-block {
  padding-top: 124px;
  transform: rotate(-4deg);
}

.div-block:hover {
  transform: none;
}

.home-icon {
  max-width: 160px;
  flex: none;
}

.home-icon.on-the-festival-page {
  max-width: 60px;
  margin-top: 40px;
  position: absolute;
  top: 15%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: rotate(20deg);
}

.aspect-ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-ratio-4-3.cover._w-100.ocultar {
  display: none;
}

.cover {
  object-fit: cover;
}

.no-shrink {
  flex: none;
}

.pb-96 {
  padding-bottom: 96px;
}

.success-message-3 {
  background-color: var(--light-blue);
}

.preloader {
  z-index: 999;
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preload__star {
  width: 40%;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.preload__logo {
  width: 16%;
  max-width: 550px;
  margin: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mb-64 {
  margin-bottom: 64px;
}

.paragraph, .paragraph-2, .paragraph-3 {
  display: block;
}

.ocultar {
  display: none;
}

.paragraph-4 {
  display: block;
}

.div-block-2 {
  display: none;
}

@media screen and (min-width: 1280px) {
  .section.no-paddings.margin-bottom {
    margin-bottom: 120px;
  }

  .section.bg-pinkish {
    display: none;
  }

  .section.padding.bg-yellow {
    background-color: var(--mostarda);
  }

  .section.padding-inline.margin-top {
    margin-top: 120px;
  }

  .festival-card.pad-bottom.overflow-visible.vertical {
    flex-direction: column;
    align-items: center;
  }

  .fs-6.mt-24 {
    font-size: 20px;
  }

  .fs-6.no-margins {
    font-size: 24px;
  }

  .pin-photo.margin-for-effect {
    object-fit: cover;
  }

  .pin-image-wrap.left {
    padding-right: 64px;
  }

  .pin-image-wrap.left.full-width {
    width: 90%;
    justify-content: center;
  }

  .mt-8.fs-7 {
    display: none;
  }

  .dancing-icon {
    max-width: 300px;
    flex: 0 auto;
  }
}

@media screen and (min-width: 1440px) {
  .fs-6.no-margins {
    font-size: 24px;
  }

  .dancing-icon {
    max-width: 340px;
  }
}

@media screen and (min-width: 1920px) {
  .section.padding-inline {
    padding-left: 140px;
    padding-right: 140px;
  }

  .background-shape {
    max-width: 75%;
  }

  .hero-image._2 {
    max-width: 35%;
  }

  .page-wrapper {
    max-width: 1840px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .fs-6.no-margins {
    font-size: 24px;
  }

  .pin-photo {
    width: 100%;
  }

  .pin-photo.margin-for-effect {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .onde-estamos-icon {
    right: 10%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 67.34px;
  }

  h2 {
    font-size: 50.52px;
  }

  h3 {
    font-size: 37.9px;
  }

  .brand-logo.in-footer {
    top: -50%;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .nav-link {
    text-align: center;
  }

  .button {
    font-size: 16px;
  }

  .button.in-navbar.hidden-mobile {
    display: none;
  }

  .button.in-navbar.hidden-desktop {
    display: block;
  }

  .nav-menu {
    background-color: var(--blue);
    margin-left: 0;
  }

  .section.cardapio {
    padding-left: 60px;
    padding-right: 60px;
  }

  .homepage-hero-wrap {
    height: auto;
    padding-top: 7.5em;
    padding-bottom: 7.5em;
  }

  .sticky-hero-text {
    height: auto;
    max-width: 100%;
    position: relative;
  }

  .hero-image._1 {
    top: -2%;
    transform: rotate(1deg);
  }

  .hero-image._2 {
    bottom: 3%;
    transform: rotate(5deg);
  }

  .infinite-marquee-text-block {
    font-size: 37.9px;
  }

  .festival-card.reverse.pt-180 {
    padding-top: 80px;
  }

  .festival-card.pad-bottom {
    padding-bottom: 160px;
  }

  .festival-info-card.hero {
    width: 50%;
  }

  .festival-date {
    font-size: 16px;
  }

  .blog-cl {
    grid-column-gap: 20px;
  }

  .blog-card-heading {
    font-size: 21.33px;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .mask {
    max-width: 100%;
  }

  .polaroid-styled-image-wrap.in-blog-page {
    max-width: 320px;
    right: auto;
  }

  .review-content {
    font-size: 14px;
  }

  .huge-text {
    font-size: 128px;
  }

  .sponsors-cl {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-heading {
    font-size: 32px;
  }

  .text-field-linha {
    margin-top: 22px;
  }

  .socials-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding-top: 60px;
    display: flex;
  }

  .footer-links, .footer-links.align-right {
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }

  .artist-card {
    grid-template-columns: 1fr 50%;
    padding-left: 100px;
  }

  .artist-image {
    width: 80px;
  }

  .artist-image-wrap {
    opacity: 1;
    padding-left: 0%;
  }

  .cta-heading {
    font-size: 50.52px;
  }

  .ticket-tail-heading {
    font-size: 21.33px;
  }

  .font-size-smaller {
    font-size: 12px;
  }

  .short-bio {
    font-size: 21.33px;
  }

  .sponsor-page-description {
    font-size: 16px;
  }

  .h1-on-blog-page {
    max-width: 100%;
    font-size: 67.34px;
  }

  .blog-content-wrap {
    max-width: 100%;
    margin-top: 320px;
  }

  .blog-page-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-page-image-wrap {
    width: 35%;
  }

  .sponsor-page-heading {
    font-size: 67.34px;
  }

  .menu-button {
    width: 80px;
    height: 80px;
    flex: none;
    padding: 16px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .lottie-animation {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .d-flex.flex-column.footer-links {
    align-items: stretch;
  }

  .new-sun-icon {
    max-width: 30%;
  }

  .footer-logo {
    max-width: 15%;
  }

  .atracoes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cardapio-pratos-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .seu-evento-info-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
  }

  .email-text-field {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .seu-proprio-evento-icon, .onde-estamos-icon {
    width: 300px;
  }

  .email-text-description {
    max-width: 315px;
  }

  .infinite-marquee-text-wrap {
    font-size: 37.9px;
  }

  .text-field-linha-email {
    margin-top: 22px;
  }

  .galery-icon-wrap.d-flex.relative {
    min-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .brand-logo {
    max-width: 100px;
    margin-right: 15px;
  }

  .section.padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon.hidden-mobile {
    display: none;
  }

  .festival-card, .festival-card:nth-child(2n), .festival-card.reverse {
    flex-direction: column;
  }

  .festival-card.pad-bottom {
    padding-bottom: 60px;
  }

  .festival-main-image-wrap {
    width: 100%;
  }

  .festival-info-card {
    width: 100%;
    padding-left: 20px;
  }

  .festival-info-card.hero {
    width: 100%;
    padding-top: 0;
  }

  .blog-cl {
    grid-template-columns: auto;
  }

  .star-icon.pin-image {
    top: -70px;
  }

  .reviews-slider {
    margin-top: 40px;
  }

  .slide-wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .review-content {
    text-align: center;
    align-items: center;
  }

  .review-meta-data-wrap {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .socials-wrap {
    flex-direction: row;
    align-items: center;
  }

  .cta-heading {
    margin-bottom: 12px;
    font-size: 37.9px;
  }

  .ticket-tail-heading {
    font-size: 16px;
  }

  .font-size-smaller {
    font-size: 10px;
  }

  .artist-main-image {
    align-items: flex-start;
  }

  .sponsor-page-wrap {
    flex-direction: column;
    align-items: center;
  }

  .sponsor-image {
    height: 500px;
    max-width: 100%;
  }

  .sponsor-info-wrap {
    max-width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-content-wrap {
    padding: 60px 24px;
  }

  .contact-form-block {
    max-width: 100%;
  }

  .contact-page-image-wrap {
    z-index: 0;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .artist-short-bio {
    font-size: 12px;
  }

  .d-flex.gap-80.flex-wrap.justify-content-center {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .pin-photo {
    width: 100%;
  }

  .pin-image-wrap {
    width: 100%;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pin-image-wrap.right {
    padding-right: 20px;
  }

  .pin-image-wrap.left {
    padding-left: 20px;
  }

  .pin-image-wrap.hero-o-bar {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    right: -100px;
  }

  .cardapio-image-wrap {
    width: 100%;
  }

  .footer-logo {
    max-width: 40%;
  }

  .atracoes-grid {
    grid-template-columns: 1fr;
  }

  .cardapio-block-wrap, .cardapio-block-wrap:nth-child(2n) {
    flex-direction: column;
  }

  .cardapio-pratos-wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .lista-de-desconto-wrap {
    max-width: 100%;
  }

  .fale-conosco {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }

  .button-especial.galeria {
    width: 96px;
  }

  .email-text-field {
    padding-left: 0;
  }

  .hero-star._1 {
    right: 10%;
  }

  .hero-star._2 {
    left: 10%;
  }

  .hero-star._3 {
    right: 0%;
  }

  .lista-icon._1 {
    width: 60px;
  }

  .lista-icon._2 {
    max-width: 40px;
    top: 40px;
  }

  .lista-icon._3 {
    width: 60px;
  }

  .seu-proprio-evento-icon {
    left: 45%;
  }

  .email-text-description.text-right {
    max-width: 100%;
    text-align: left;
  }

  .m-md-auto {
    margin: 0;
  }

  .hero-o-bar {
    width: 100%;
    position: relative;
  }

  .home-icon.hidden-mobile {
    display: none;
  }

  .preload__star {
    width: 100%;
    max-width: 70%;
  }

  .preload__logo {
    width: 32%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
  }

  .container.blog-page, .container.reviews {
    padding-left: 0;
    padding-right: 0;
  }

  .brand-logo.in-footer {
    top: -15%;
  }

  .section.no-paddings.relative-front {
    z-index: 999;
    position: relative;
  }

  .section.no-top-padding-on-mobile {
    padding-top: 0;
  }

  .section.cardapio, .section.atracoes, .section.padding-inline {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.plus-padding {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section.galeria {
    padding-left: 20px;
    padding-right: 20px;
  }

  .homepage-hero-wrap {
    height: 100vh;
    justify-content: center;
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .background-shape.obar {
    padding-bottom: 20px;
  }

  .sticky-hero-text {
    justify-content: flex-end;
    overflow: visible;
  }

  .hero-images-wrap {
    height: auto;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: flex-end;
  }

  .hero-image._1 {
    max-width: 70vw;
    top: 3%;
  }

  .hero-image._1.obar {
    height: 30vh;
    max-width: 80%;
    object-fit: cover;
  }

  .hero-image._2 {
    max-width: 70vw;
    left: 0%;
  }

  .hero-image._2.obar {
    max-width: 80%;
  }

  .icon {
    max-width: 60px;
  }

  .icon.on-the-festival-page {
    top: -15%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .background-shape-wrap {
    flex-direction: column;
    display: flex;
    overflow: visible;
  }

  .background-shape-wrap.o-bar.ocultar {
    display: none;
  }

  .festival-main-image-wrap {
    padding-top: 66.66%;
  }

  .festival-info-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .festival-icon {
    max-width: 70px;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .centred-heading {
    margin-bottom: 40px;
  }

  .star-icon {
    max-width: 40px;
    top: -48px;
    left: 0;
  }

  .star-icon.on-festival-page {
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .star-icon.topo {
    left: 230px;
  }

  .star-icon.heo-galery {
    left: 206px;
  }

  .polaroid-styled-image-wrap.in-blog-page {
    max-width: 280px;
  }

  .huge-text {
    font-size: 67.34px;
  }

  .sponsors-cl {
    grid-template-columns: 1fr;
  }

  .text-field-linha {
    margin-top: 0;
  }

  .socials-wrap {
    display: block;
  }

  .footer-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
  }

  .footer-links {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    align-items: flex-start;
    display: flex;
  }

  .footer-links.align-right {
    align-items: flex-start;
  }

  .artist-card {
    grid-template-columns: 1fr;
  }

  .ticket-image.desktop {
    display: none;
  }

  .ticket-image.mobile {
    display: block;
  }

  .cta-content-wrap {
    width: 100%;
    height: 67%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cta-heading {
    font-size: 50.52px;
  }

  .ticket-tail {
    width: 100%;
    height: 33%;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .rotated-text {
    height: 50%;
    transform-origin: 50%;
    justify-content: center;
    right: 0%;
    transform: none;
  }

  .ticket-tail-heading {
    margin-top: 4px;
    font-size: 28.43px;
  }

  .font-size-smaller {
    font-size: 14px;
  }

  .artist-page-wrap {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .artist-main-image {
    justify-content: center;
    align-items: center;
    padding-top: 125%;
  }

  .artist-image-big {
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .sponsor-info-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .decorative-icon {
    max-width: 40px;
  }

  .decorative-icon.top-left {
    top: -15%;
    left: 5%;
  }

  .decorative-icon.bottom-right {
    top: auto;
    bottom: 1%;
    left: auto;
    right: 5%;
  }

  .decorative-icon.top-right {
    top: 5%;
    right: 5%;
  }

  .h1-on-blog-page {
    font-size: 60px;
  }

  .blog-content-wrap {
    margin-top: 280px;
  }

  .contact-page-wrap {
    flex-direction: column-reverse;
  }

  .contact-form-block {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-links-wrap {
    margin-top: 0;
  }

  .contact-page-image-wrap {
    width: 95%;
    margin-left: auto;
    position: relative;
  }

  .sponsor-page-heading {
    font-size: 52px;
  }

  .artist-short-bio {
    margin-bottom: 20px;
  }

  .d-flex.desenvolvido-por {
    order: 0;
  }

  .fs-3.diminuir-texto {
    font-size: 30px;
  }

  .fs-6.no-margins {
    font-size: 24px;
  }

  .pin-photo.margin-for-effect {
    height: 360px;
    object-fit: cover;
    margin-top: 0;
    margin-bottom: 0;
  }

  .new-sun-icon.on-festival-page {
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .pin-image-wrap.left {
    padding-right: 20px;
  }

  .pin-image-wrap.left.relative {
    width: 100%;
    padding-right: 20px;
  }

  .pin-image-wrap.left.overflow-visible {
    overflow: hidden;
  }

  .pin-image-wrap.hero-o-bar {
    right: -80px;
  }

  .cardapio-image._1.bg-white.text-black, .cardapio-image._2.text-black.bg-white {
    padding: 20px;
  }

  .footer-logo {
    bottom: 93%;
  }

  .atracoes-grid {
    grid-row-gap: 48px;
  }

  .cardapio-pratos-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dancing-icon {
    max-width: 180px;
  }

  .contact-page-wrap-copy {
    flex-direction: column-reverse;
  }

  .lista-de-desconto-wrap {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .fale-conosco {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-especial {
    margin-left: auto;
  }

  .email-text-field {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .hero-star {
    max-width: 40px;
  }

  .lista-icon._3 {
    bottom: 8%;
  }

  .onde-estamos-icon {
    width: 270px;
  }

  .email-text-description.text-right {
    margin-top: 20px;
  }

  .infinite-marquee-text-wrap {
    z-index: 999;
  }

  .text-field-linha-email {
    margin-top: 0;
  }

  .hero-o-bar {
    position: relative;
  }

  .seu-evento-info.d-flex.gap-32 {
    flex-direction: column;
  }

  .home-icon {
    max-width: 60px;
  }

  .home-icon.on-the-festival-page {
    top: -15%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .rights {
    order: 1;
  }

  .hidden-mobile {
    display: none;
  }

  .preload__star {
    width: 80%;
  }
}

#w-node-_183184c4-eadd-672b-c2e6-531bd8f06516-8ee41f43, #w-node-_21bb7085-590f-c9c3-c110-2715d4f5ee7d-8ee41f43, #w-node-_91a3e5bf-0c39-83f6-6c04-ec38149df31e-8ee41f43, #w-node-d3a10c69-6cbf-7c90-4726-603ac1a09f90-8ee41f43, #w-node-bd809690-29d9-e118-981a-53611c6d5bf9-8ee41f43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0227eee5-44ab-93bc-2611-401de475b28c-8ee41f43 {
  align-self: center;
  justify-self: center;
}

#w-node-b851a03c-58ff-d548-fdcc-b63ae7a37d4c-8ee41f43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4c70a63-5136-6429-7380-b49287a19a5d-8ee41f43 {
  align-self: center;
  justify-self: center;
}

#w-node-e4c70a63-5136-6429-7380-b49287a19a61-8ee41f43, #w-node-_2e6bf825-4fe4-505b-b60d-bc0f09d6509b-d33d1d00, #w-node-_440a6475-80c8-5cb2-1652-d3bdf72a4a6d-f72a4a6b, #w-node-_440a6475-80c8-5cb2-1652-d3bdf72a4a6f-f72a4a6b, #w-node-_440a6475-80c8-5cb2-1652-d3bdf72a4a71-f72a4a6b, #w-node-bd2e7b1b-3f9a-7e13-171b-a08bd0fc6be6-8ee41f4b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Message.w-node-_4ed90818-d65f-85e7-c46b-1572ed0238c2-8ee41f4f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c32ad942-abb7-0478-6a9b-6ad1392367ee-f514aaf1, #w-node-c32ad942-abb7-0478-6a9b-6ad1392367f7-f514aaf1, #w-node-b1166c7a-982f-7412-ffe6-1a01eac19040-f514aaf1, #w-node-cf0e35a6-a9f6-e6a7-8534-591a2f39f862-f514aaf1, #w-node-fd469946-575c-13c8-1b66-2878af6a449b-f514aaf1, #w-node-fd469946-575c-13c8-1b66-2878af6a44a4-f514aaf1, #w-node-c3a1e2e1-625f-6b2d-047d-2335e0e4786f-f514aaf1, #w-node-c3a1e2e1-625f-6b2d-047d-2335e0e47878-f514aaf1, #w-node-ac1b6243-6e3e-0a5e-f693-631f8070e0c7-f514aaf1, #w-node-ac1b6243-6e3e-0a5e-f693-631f8070e0d0-f514aaf1, #w-node-e4d90c16-4e72-2028-b319-0426e68f625d-f514aaf1, #w-node-e4d90c16-4e72-2028-b319-0426e68f6266-f514aaf1, #w-node-_347e6bcd-366c-0f5a-d06c-ed979c9ec384-f514aaf1, #w-node-_347e6bcd-366c-0f5a-d06c-ed979c9ec38d-f514aaf1, #w-node-_03e03738-9786-d546-8a93-caaaaf7e91ad-f514aaf1, #w-node-_03e03738-9786-d546-8a93-caaaaf7e91b6-f514aaf1, #w-node-_2111681e-69e2-6f53-0480-bbd39b8d25d7-f514aaf1, #w-node-_2111681e-69e2-6f53-0480-bbd39b8d25e0-f514aaf1, #w-node-e6092d00-6be5-1fa1-41cf-c6e68f4414e4-f514aaf1, #w-node-e6092d00-6be5-1fa1-41cf-c6e68f4414ed-f514aaf1, #w-node-_88be8e3a-1a4d-aa60-8730-b714ada7c703-f514aaf1, #w-node-_88be8e3a-1a4d-aa60-8730-b714ada7c70c-f514aaf1, #w-node-e7ef468d-e3fe-9b17-daf9-eb130e3fedf2-f514aaf1, #w-node-e7ef468d-e3fe-9b17-daf9-eb130e3fedfb-f514aaf1, #w-node-_3b9f81c5-427e-5d5b-b299-fff5c388ee24-f514aaf1, #w-node-_3b9f81c5-427e-5d5b-b299-fff5c388ee2d-f514aaf1, #w-node-_073f3447-4994-8661-0113-c5938bec3d03-f514aaf1, #w-node-_073f3447-4994-8661-0113-c5938bec3d0c-f514aaf1, #w-node-_8b5c3746-6c6f-06da-f58e-fc134d759267-f514aaf1, #w-node-_93914a3a-a9d6-746c-dd38-c1dd54fce45a-f514aaf1, #w-node-_93914a3a-a9d6-746c-dd38-c1dd54fce463-f514aaf1, #w-node-f1e354a1-78bc-61b6-62db-f4a654fccc0a-f514aaf1, #w-node-f1e354a1-78bc-61b6-62db-f4a654fccc13-f514aaf1, #w-node-_3478f1bc-d2f4-f9a2-4c49-e97236ee7b84-05a29862, #w-node-ef099a54-9204-2bd7-667f-719957bde123-05a29862, #w-node-_856266f0-ce50-23d2-7bbd-86db0ef8de61-05a29862, #w-node-_4f598ebf-0262-537b-9744-d7bd86199cae-05a29862, #w-node-_3478f1bc-d2f4-f9a2-4c49-e97236ee7b84-108d5256, #w-node-da1e0b00-3b6c-1ce9-36fc-c86d6a1d60a0-108d5256, #w-node-ef099a54-9204-2bd7-667f-719957bde123-c77957ed, #w-node-_367e2aa1-7500-6d18-c32c-d15451959673-c77957ed, #w-node-fe08f86d-3d05-de83-a79d-df872047188c-c77957ed, #w-node-c4227804-24fb-6153-ddd5-dee706507341-c77957ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #email.w-node-a05473de-70dc-a6a2-1e38-47b8ac71a4f0-8ee41f43, #w-node-a05473de-70dc-a6a2-1e38-47b8ac71a4f1-8ee41f43 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c28d7778-e060-fff3-7f32-4a0621f3d3c5-8ee41f47, #w-node-_5d4b38da-5130-f037-b74b-d5d7be82793c-8ee41f47 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


