@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");



@font-face {
  font-family: 'Herokid';
  font-style: normal;
  font-weight: 700;
  src: url('/site/midia/arquivos/herokid-bold.otf') format('opentype');
}


@font-face {
  font-family: 'Herokid';
  font-style: normal;
  font-weight: 800;
  src: url('/site/midia/arquivos/herokid-extra-bold.otf') format('opentype');
}

@font-face {
  font-family: 'Herokid';
  font-style: normal;
  font-weight: 400;
  src: url('/site/midia/arquivos/herokid-regular-condensed.otf') format('opentype');
}



@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;  
  src: url('/site/midia/arquivos/inter_font.ttf') format('truetype');
  font-display: swap;
}



.swap-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swap-in {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}



html {box-sizing: border-box;font-family:"Roboto", sans-serif;}
*, *:before, *:after {box-sizing: inherit;}

body {
  font-family:"Roboto", sans-serif !important;
  background-color: #FEFAF5;
  
}
section.square {
  position: relative;
  background-color: #FF7F55D4;
  background-image: 
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 120px 120px;
  background-repeat: repeat;
  animation: moveGrid 2s linear infinite;
}

@keyframes moveGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 0;
  }
}

p{
  margin-bottom:0px !important;
}
.hero{
  padding-top: 120px !important;
}
@keyframes slideInFromBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.from-bottom {
  opacity: 0;
  transform: translateY(40px);
  animation: slideInFromBottom 1s ease-out forwards;
  animation-delay: 0.4s;
}
.min-w-50{
  min-width:50%;
}
@keyframes slideInFromTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-inscricoes {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--text_gray, #252525);
  background: #FF6432;
  box-shadow: 2px 2px 0 0 rgba(31, 31, 31, 0.90);
  color: var(--white, #FEFAF5);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.btn-inscricoes:hover {
  background: #ff7b50;
  box-shadow: 4px 4px 0 0 rgba(31, 31, 31, 0.90);
  transform: translate(-2px, -2px);
  color: white !important;
  text-decoration: none;
}

.btn-inscricoes:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 rgba(31, 31, 31, 0.90);
  box-shadow: 1px 1px 0 0 rgba(31, 31, 31, 0.90), inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-inscricoes:focus-visible {
  outline: 2px solid #ffd9c4;  
  outline-offset: 2px;
}

.iw-card-wrap{
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border: 2px solid #252525;
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
  gap: 40px;
  flex: 1 1 calc(50% - 12px);
  box-sizing: border-box;
}
#iw-you-know{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  
  /* h3-iw */
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#iw-title{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  
  /* body-iw */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}

.box-descrip{
  color: var(--text_gray, #252525);
leading-trim: both;
text-edge: cap;

/* body-iw */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
}
.from-top {
  opacity: 0;
  transform: translateY(-80px);
  animation: slideInFromTop 1s ease-out forwards;
  animation-delay: 0.4s;
}
b.orange{
    color: #FF6432;
}
a.orange{
  color: #FF6432;
}
.contents {
  position: relative;
  min-height: 400px; 
}

.content {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.content.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.circle {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 24px;
  border: 0.75px solid var(--text_gray, #252525);
  background: #FF6432;
  box-shadow: 0.75px 0.75px 0px 0px #252525;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.circle:hover {
  background: #FB906D;
  box-shadow: 1px 1px 0px 0px #252525;
}
.circle:focus{
  outline: none;  
  box-shadow: 0 0 0 3px rgba(255, 100, 50, 0.5);  
  background: #F57C52;  
}
.no-overflow{
  overflow: hidden;
}
.hero-subtitle{
  color: #252525;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0px !important;
}

.hero-title{
  color: #252525;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  margin: 0px !important;
  
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #252525;
  font-family: 'Herokid';
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%; /* 76.8px */
  text-transform: uppercase;
}
.list-none{
  list-style:none;
  padding: 0px;
}
.mt-60{
  margin-top: 60px;
}
.hero-description{
  color: #252525;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  margin-bottom: 0px !important;
  
}
.hero-title > .orange{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  
  font-family: 'Herokid';

  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  background: #FDF7F1;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.panel.open {
  max-height: 1255px; 
  padding: 16px 32px;
}
.accordion-pointer {
  transition: transform 0.5s ease;
}

.accordion.open .accordion-pointer {
  transform: rotate(180deg);
}



/* -------------------------ESPECIFIFC----------------------- */
.iw-modal{
  width: 100%;
  height: 100%;
  background: #000000b0;
  position: fixed;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  padding: 24px;
}
.list-icon{
  animation-delay: 1.6s;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  background: #FF6432;
  box-shadow: 1px 1px 0px 0px #252525;
}
.box-title{
  color: var(--text_gray, #252525);
leading-trim: both;
text-edge: cap;

/* h3-iw */
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.iw-subpage-title{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text_gray, #252525);
  font-family: Herokid;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
    word-break: break-word;
}
.iw-subpage-description{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  
  /* body-lg-iw */
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
.content-card{
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border: 2px solid var(--text_gray, #252525);
  background: #FDF7F1;
  height: 100%;
  border: 2px solid var(--text_gray, #252525);
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
}

.mt-16{
  margin-top: 16px;
}

.iw-event-button {
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid var(--text_gray, #252525);
  background: var(--white, #FEFAF5);
  box-shadow: 2px 2px 0px 0px rgba(31, 31, 31, 0.90);
  flex-direction: column;
  width: calc(50% - 12px);
  box-sizing: border-box;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}


@media (min-width: 768px) {

  .iw-event-button {
    width: auto;
    margin-bottom: 0;
  }
}

.iw-event-button:hover {
  background: rgba(255, 100, 50, 0.02);  
  box-shadow: 3px 3px 0px 0px rgba(31, 31, 31, 0.85);  
  transform: translateY(-2px); / 
}
.iw-event-button:focus {
  outline: none;  
  box-shadow: 0 0 0 3px rgba(255, 100, 50, 0.5);  
  background: #F57C52;  
}

.content-card-date{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.content-card-title{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.content-card-description{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.content-card-local-title{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.content-card-local{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}


.iw-event-button > .iw-event-day-week{
  color: var(--text_gray, #252525);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.iw-event-button > .iw-event-day{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.mobile-scroll{
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 20;
}
.iw-event-button.active{
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid var(--text_gray, #252525);
  background: #FF6432;
  box-shadow: 2px 2px 0px 0px rgba(31, 31, 31, 0.90);
  flex-direction: column;
}
.iw-event-button.active > .iw-event-day-week{
  color: var(--tertiary, #FFECD9);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.iw-event-button.active > .iw-event-day{
  color: #FEFAF5;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.w-full{
  width: 100% !important;
}

.iw-modal-content{
  display: flex;
  width: 673px;
  padding: 32px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border: 2px solid var(--text_gray, #252525);
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
}
iw-modal-header{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.iw-modal-icon-container{
  padding-left: 32px;
}
.iw-modal-title-container{
  background: #FF6432;
  display: flex;
  padding: 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.iw-modal-title{
  color: #FEFAF5;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.iw-modal-header{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.iw-modal-body{
  width: 100%;
  display: flex;
  padding: 0px 32px;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
}



.iw-modal-item{
  display: flex;
  padding: 8px 0px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-bottom: 1px solid black;
}


.border-bottom{
  border-bottom: 1px solid var(--text_gray, #252525);
}
.py-16{
  padding: 16px 0px;
}

.iw-modal-item-local{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.iw-modal-item-event{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.iw-modal-item-hour{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: end;
 
}
#iw-main-content{
  position:relative;
  overflow-x: hidden;
 
}
.blue-wave{
  position: absolute;
  top: 0;
} 

.menu-title{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  
  /* body-lg-iw */
  font-family: 'Inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}

.menu-description{
  color: #555;
  leading-trim: both;
  text-edge: cap;
  
  /* body-iw */
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}


/*---------------accordions---------*/
button.accordion{
  display: flex;
  min-width: 100%;
  padding: 16px 32px;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border: none;
  background: #FDF7F1;
}
button.accordion:focus {
  outline: none;
 
}
.accordion-border{
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
  border: 2px solid var(--text_gray, #252525);
  margin-bottom: 24px;
}
.accordion-box-image{
  display: flex;
  width: 100px;
  height: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.accordion-description{
  flex: 1;
  text-align: start;
  margin: auto;
}
.accordion-title{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  
  /* h3-iw */
  font-family: 'Inter';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.accordion-local{
  color: var(--text_gray, #252525);
  leading-trim: both;
  text-edge: cap;
  
  /* body-iw */
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  width: fit-content;
}

.continents{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bottom-wave, .blue-wave-bottom{
  position: absolute;
  bottom: 0;
}
.orange-wave{
  position: absolute;
  bottom:0;
  top:0;
}
.pb-100{
  padding-bottom: 100px;
}
.iw-header{
  z-index: 20;
  position: relative;
}
.iw-navbar{
  display: flex;
  padding: 16px 40px;
  justify-content: space-between;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #1F1F1F;
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(64, 64, 64, 0.90);
  margin-top:12px;
  position: absolute;
  right: 16px;
  left: 16px;
}
.iw-navbar-links{
  display: flex;
  align-items: center;
  gap: 40px;
}
.iw-navbar-link{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  border-bottom: 1.5px solid transparent;
  
}
.iw-navbar-link:hover{
   border-bottom: 1.5px solid #FF6432;
   text-decoration: none;
   color: #252525;
 
}

.attraction svg {
  min-width: 64px;
}
.spacing{
  margin-top: 16px;
  margin-bottom: 16px;
}
.iw-logo{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #252525;
  font-family: 'Herokid';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px !important;
}
.iw-logo-blue{
  color: #024EE0;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Herokid';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.iw-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #252525;
  line-height: initial;
}

 
/* --------------Responsive navbar-------------- */
@media (max-width: 992px) {
  .iw-navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .iw-menu-toggle {
    display: block;
  }

  .iw-navbar-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.7s ease, opacity 0.4s ease, transform 0.4s ease;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    transform: translateY(0); 
  }
  
  .iw-navbar-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(8px);   
  }

  .iw-navbar-link {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #fdf7f1;
    display: flex;
    align-items: center;
    padding-top: 16px;
  }
  
  .iw-navbar-link:last-child {
    margin-bottom: 16px;
  }

  

  .iw-navbar-responsive {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}



.iw-button{
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 8px;
  border: 1px solid var(--text_gray, #252525);
  background: #FF6432;
  box-shadow: 2px 2px 0px 0px rgba(31, 31, 31, 0.90);
  color: var(--white, #FEFAF5);
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin: auto;
}
.iw-button:hover{
  color: white;
  text-decoration: underline;
 
}
.page-subtitle{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.flag-name{
  color: #454545;
  text-align: center;
}
.page-title{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

}


.iw-card{
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border: 2px solid #252525;
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
  gap: 40px;
}
.iw-card-type{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.iw-card-title{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
.iw-card-info-title{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.iw-card-info-descrip{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.attraction{
  flex: 1;
}
.contents{
  margin-top:55px;
}
.attraction-title{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

}
.iw-card-link{
  color: #FF6432;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.footer-subtitle{
  color: #252525;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


.continents-buttons {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  transform: translateY(100%) scale(1);  
  transition: transform 0.5s ease;
}

.goBack {
  transform: translateY(0%) scale(0.85);
}
.continent-item{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.continent-button{
  cursor: pointer;
  text-align: center;
}

.line{
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.27);
}

.continent-button:hover{
  color: #FF6432;
}
.gap-logos{
  gap:40px;
}
/* -------------------------UTILS----------------------- */
.min-h-100{
  min-height: 100vh;
}
.flex{
  display:flex;
}
.gap-48{
  gap:48px
}
.flex-col{
  flex-direction: column;
}
.gap-32{
  gap:32px;
}
.gap-40{
  gap:40px;
}
.h-lower{
  max-height: 40px;
}
.h-fit{
  height: fit-content !important;
}
.gap-16{
  gap:16px
}
.gap-24{
  gap:24px
}
.gap-8{
  gap:8px
}
.items-center{
  align-items:center;
}
.justify-center{
  justify-content: center; 
}
.justify-between{
  justify-content: space-between; 
}
section{
  padding: 120px 0px 60px 0px;
}
.z-20{
  z-index: 20;
  position: initial;
}
.relative{
  position:relative;
}

.main-container{
  max-width: 1280px;
  position: relative;
  margin: auto;
  padding: 16px;
}
.gap-64{
  gap: 64px;
}
.box{
  border: 2px solid #252525;
  background: #FDF7F1;
  box-shadow: 4px 4px 0px 0px rgba(31, 31, 31, 0.90);
  padding: 32px;
  align-items: flex-start;
  gap:42px;
}
.hidden{
  display:none;
}

.wrap{
  flex-wrap: wrap;
}

.flag{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  margin-inline:28px;
  
}
.h-100{
    height: 100%;
}

.accordion-itens{
  display: flex;
  width: 100%;
  gap: 32px;
}


/* -------------------------TABLET----------------------- */
@media (min-width: 577px) and (max-width: 903px) {
  .hero-title{
     font-size: 48px;
  }
  
  .hero-subtitle{
     font-size: 20px;
  }
  .counter-description{
    font-size: 18px;
  }
  .counter{
    min-width: 400px;
    padding: 24px;
  }
  .counter-number{
    font-size:32px;
  }
  .hero-description{
    line-height: 120%;
  }
  .blue-wave{
    top: -3%;
  }
  .orange-wave{
    top: 20%;
  }
  .gap-40{
    gap: 32px;
  }
  .hero-grid-frame > svg{
    width: auto;

  }
  section.hero{
    padding-bottom: 50px;
    padding-top: 50px;
  }
  
  .page-title{
    font-size: 32px;
  }
  
  .page-subtitle{
    font-size: 16px;
  }
  
  .md-flex-row{
    flex-direction:row;
  }
  .md-no-wrap{
    flex-wrap: nowrap;
  }
  
  .mobile-scroll{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-inline: 12px;
    margin: 0;
  }
  
  .attraction{
    max-width: 400px;
    text-wrap: wrap;
  }
  
  .md-gap-24{
    gap:24px;
  }
  .continents-buttons{
    gap:32px;
  }
  .md-text-center{
    text-align:center;
  }
  
  
  /*-----accordions----*/
  .accordion-title{
      font-size: 20px;
  }
  
  
  

  
}


/* -------------------------CELULAR----------------------- */
@media (max-width: 576px) {

  .iw-modal-scroll{
    overflow-y: scroll;
    max-height: 500px;
  }

  /*-----accordions----*/
  .accordion-title{
      font-size: 20px;
  }
  
  .accordion-box-image{
    width: 80px;
    height: 80px;
  }
  .accordion-pointer{
    width: 24px;
    height: 24px;
  }


  .hero-title{
     font-size: 34px;
  }
  .hero-subtitle{
     font-size: 16px;
  }
  .counter-description{
    font-size: 16px;
  }
  .counter{
    width: 100%;
    flex-wrap: wrap;
    min-width: 0px;
    padding: 20px;
  }
  .counter-number{
    font-size:24px;
  }
  .counter-description {
    font-size:14px;
  }
  .counter-line{
    margin-inline: 8px;
  }
  .hero-description{
    font-size: 18px;
    line-height: 120%;

  }
  .hero-grid-frame > svg {
    bottom: -184px;
  }
  .gap-40{
    gap: 24px;
  }
  .gap-32{
    gap: 24px;
  }
  .hero-grid-frame > svg{
    width: auto;

  }
  .blue-wave{
    top: -1%;
    transform: scaleY(0.5);
  }
  .orange-wave{
    top: 20%;
  }
  section.hero{
    padding-bottom: 25px;
    padding-top: 25px;
  }
  .page-subtitle{
    font-size: 16px;
  }
  
  .page-title{
    font-size: 24px;
  }
  .sm-flex-row{
    flex-direction: row;
  }
  .sm-no-wrap{
    flex-wrap: nowrap;
  }  
  
  .mobile-scroll{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-inline: 12px;
    margin: 0;
  }
  .attraction{
    max-width: 400px;
    text-wrap: wrap;
  }
  
  .sm-gap-24{
    gap:24px;
  }
  
  .continents-buttons{
    gap:32px;
  }
  .min-h-100 {
    min-height: 83vh;
  }
  .sm-text-center{
    text-align:center;
  }
  .flag{
 
    margin-inline:14px;
    
  }
  
  .iw-modal-title{
    font-size:18px;
  }
  .iw-modal-body{
      gap: 12px;
  }
  .iw-modal-item-event{
    font-size: 16px;
  }
  .iw-modal-item-hour{
    font-size: 16px;
  }
  .iw-modal-body{
    padding: 0px 24px;
  }
  .iw-modal-icon-container{
      padding-left: 24px;
  }
  .iw-modal-title-container{
      padding: 24px;
  }
  .iw-modal-content{
      padding: 24px 0px;
  }
  .iw-modal-header{
      gap: 8px;
  }
  .iw-modal-item{
      padding: 4px 0px;
  }
  .sm-gap-20{
    gap: 24px;
  }
  .sm-gap-16{
    gap:16px;
  }
  .iw-subpage-title{
      -webkit-text-stroke-width: 0.5px;
    text-align: center;
  }
  .iw-subpage-description{
    font-size: 18px;
  }
  .iw-navbar{
     padding: 16px 24px;
  }

  
  .sm-pb-20rem{
      padding-bottom: 20rem;
  }
  .accordion{
    flex-direction: column;
  }
  .sm-gap-8{
    gap:8px;
  }
  .sm-col-reverse{
    flex-direction: column-reverse;
    gap: 48px;
  }

}

@media (min-width: 1200px) {
  .text-center-until-xl {
    text-align: left;
  }
}

/*------------------------------------------ULTRA WIDE----------------------------- */
@media (min-width: 1921px) {

  .blue-wave, .orange-wave, .bottom-wave, .blue-wave-bottom{
    width: 100%;
    transform: scaleX(140%);
  }

}


