* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img,
picture {
  border: none;
  outline: none;
}
 
a {
  text-decoration: none;
}

body {
  background-color: #F0F0F0;
  font-size: 0.9rem;
  line-height: 0.9rem;
  color: #2E2E2E;
  margin: 0;
  padding: 63px 0 0 0;
}

body,
input,
select,
button,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.likeh2 {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

.hidden {
  display: none;
}

.center {
  margin: auto 15px
}

header {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 0 10px 0;
  position: fixed;
  z-index: 9;
  width: 100%;
  border-bottom: #FE7A00 solid 4px;
  top: 0;
}

header .logo {
  display: inline-block;
}

header .logo img {
  height: 37px;
  width: auto;
}

header .center {
  display: grid;
}

header .hEsq,
header .hDir {
  display: flex;
  align-items: center;
}

header .hDir {
  justify-content: flex-end;
}


header .hEsq {
  grid-row: 1/1;
  grid-column: 1/1;
}

header .hDir {
  grid-row: 1/1;
  grid-column: 2/2;
}

header .search {
  grid-row: 2/2;
  grid-column: 1/3;
}

div .error-msg {
  background: #FC2D1C;
  color: white;
  font-weight: bolder;
  padding: .4rem .9rem;
  border-radius: .2rem;
  display: inline-block;
}

div .error-msg:not(:last-child) {
  margin-bottom: .2rem;
}

div .success-msg {
  background: #42FC92;
  color: black;
  font-weight: bolder;
  padding: .4rem .9rem;
  border-radius: .2rem;
  display: inline-block;
}

div .success-msg:not(:last-child) {
  margin-bottom: .2rem;
}

div .redirect-button {
  background: #0F81FC;
  color: white;
  font-weight: bolder;
  padding: .2rem 1rem;
  border-radius: .6rem;
  display: inline-block;
}

div .pay-button {
  width: 85px;
  height: 1.2rem;
  line-height: 1.2rem;
  background: #2EB066;
  color: white;
  font-weight: 500;
  padding: 0 .8rem 0 .45rem;
  border-radius: .6rem;
  display: inline-block;
}

div .pay-button:hover {
  color: #D5FCF4;
  background: #279657;
}

.togleMobile,
.togleDesktop {
  display: flex;
  flex-direction: column;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
}

.togleMobile span,
.togleDesktop div span {
  background: #000;
  border-radius: 10px;
  width: 25px;
  height: 5px;
  margin: 1.5px 0;
  transition: all 0.5s;
  position: relative;
  transition: all 0.5s;
}

.togleMobile:hover span {
  background: #FE3B00;
}

.togleDesktop {
  display: flex;
  flex-direction: row;
  margin: 0;

}

.togleDesktop div {
  display: flex;
  flex-direction: column;
}

.togleDesktop div span {
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.togleDesktop div:first-child {
  justify-content: center;
}

.togleDesktop div:last-child {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  padding-top: 1px;
  padding-left: 5px;
  transition: all 0.6s;
}

.togleDesktop div:last-child small {
  font-size: 0.7rem;
  line-height: 0.6rem;
}

.togleDesktop:hover div span {
  background: #000;
}

.togleDesktop:hover div {
  color: #000;
}


.togleSearch {
  position: relative;
  display: inline-block;
  width: 23px;
  top: -2px;
  cursor: pointer;
}

.togleSearch span {
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: solid 3px #000;
  text-align: center;
  line-height: 16px;
  font-size: 0;
}

.togleSearch span::after {
  content: '';
  width: 10px;
  height: 4px;
  position: absolute;
  bottom: -2px;
  right: -2px;
  transform: rotate(45deg);
  background-color: #000;
  border-radius: 3px;
}

#forSearch:checked~header .center .hDir .togleSearch span {
  font-size: 0.5rem;
}

#forSearch:checked~header .center .search {
  max-width: 100%;
  max-height: 99px;
  margin: 10px 0 5px 0;
}

.search,
fieldset input,
fieldset select,
fieldset textarea {
  display: inline-block;
  position: relative;
  background: #F4F4F4;
  box-shadow: inset -2px -2px 3px -1px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin: 0;
  transition: all 0.5s ease;
  border: none
}

.search {
  grid-row: 2/2;
  grid-column: 1/3;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  border-radius: 30px;
}

.search input {
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 8px 15px;
  width: 100%;
  outline: none;
}

.search input[type=submit] {
  background: #000;
  border: none;
  border-radius: 30px;
  display: none;
}

fieldset {
  border: none;
  width: 100%;
  margin: 0 0 10px 0;
}

fieldset input,
fieldset select,
fieldset textarea {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 12px 15px;
  width: calc(100% - 2px);
  margin: 1px 1px 4px 1px;
}

fieldset>label {
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.4;
}

button.entrar,
a.entrar {
  border: none;
  width: 167px;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.basicLinks {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.basicLinks a {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  line-height: auto;
}

.basicLinks a:hover {
  color: #000
}

a {
  color: #FD8000
}

a:hover {
  color: #000
}



.rc-anchor-light.rc-anchor-normal {
  border: none !important;
}

.login {
  grid-row: 1/1;
  grid-column: 2/2;
  display: contents;
}

#assineInTop {
  padding: 7px;
  font-size: 0.7rem;
  margin-left: 10px;
  font-weight: 600;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.login .text {
  display: none
}

.login .ico {
  display: flex;
  background: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.login .ico span {
  display: flex;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  align-items: center;
  border: solid 3px #000;
  justify-content: center;
}

.login .ico span::after,
.login .ico span::before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  border: solid 3px #000;
  position: absolute;
  top: 5px;
}

.login .ico span::before {
  top: unset;
  bottom: -3px;
  width: 10px;
  height: 10px;
}

.login .ico svg {
  width: 26px;
  height: 26px;
}


#forMenuMobile:checked~nav {
  right: 0;
}

#forMenuMobile:checked~header .center .hEsq .togleMobile span {
  transform: rotate(45deg);
  margin-top: -26%;
}

#forMenuMobile:checked~header .center .hEsq .togleMobile span:last-child {
  transform: rotate(-45deg);
}

#forMenuMobile:checked~header .center .hEsq .togleMobile span:nth-child(2) {
  opacity: 0;
}

#forMenuMobile:checked~.spaceMenuDesktop .center .menuDesktop .togleDesktop span {
  transform: rotate(45deg);
  margin-top: -26%;
  top: 4px;
}

#forMenuMobile:checked~.spaceMenuDesktop .center .menuDesktop .togleDesktop span:last-child {
  transform: rotate(-45deg);
}

#forMenuMobile:checked~.spaceMenuDesktop .center .menuDesktop .togleDesktop span:nth-child(2) {
  opacity: 0;
}

#forMenuMobile:checked~body {
  overflow: hidden;
}

#menuMobile {
  position: fixed;
  top: 0;
  background: rgb(0, 0, 0);
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(43, 43, 43, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#2b2b2b', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  height: 100vh;
  z-index: 13;
  width: 80%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  color: #fff;
  right: -100%;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#menuMobile ul {
  list-style: none;
  padding: 0;
  margin: 1px;
  width: calc(100% - 2px);
  border-top: solid rgba(0, 0, 0, 0.5) 1px;
  border-bottom: solid rgba(255, 255, 255, 0.05) 1px;

}

#menuMobile ul li {
  display: block;
  border-bottom: solid rgba(0, 0, 0, 0.5) 1px;
  border-top: solid rgba(255, 255, 255, 0.05) 1px;
}

#menuMobile ul li a {
  display: block;
  padding: 17px 20px;
  color: #eee;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  margin: 1px;
}

#menuMobile ul li a:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #fe6d00
}

#menuMobile .btnPadrao {
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 17px 0;
  margin: 20px;
}

#menuMobile .btnPadrao small {
  font-size: 0.8rem;
  line-height: 0.7rem;
  letter-spacing: 0.05rem;
  font-weight: 200;
  display: inline-block;
}

#menuMobile ul.likeButtons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 0 20px;
  width: auto;
}

#menuMobile ul.likeButtons,
#menuMobile ul.likeButtons li {
  border: none
}

#menuMobile ul.likeButtons li a {
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  border-radius: 5px;
  font-size: 0.8rem;
  line-height: 0.8rem;
  padding: 16px 0;
}

#menuMobile ul.likeButtons li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

#menuMobile .likeh2 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 22px 20px 17px 20px;
  display: inline-block;
}

.whitScroll {
  overflow: scroll;
  overflow-x: hidden;
  height: 100%;
}

.gradientFill,
.likeh2 {
  background-image: linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  -webkit-background-clip: text;
  
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}


main {
  padding: 15px 0;
  display: block;
  position: relative;
}


.sliderSpace .controlSlides,
.sliderSpace .smallSlide {
  display: none;
}

.sliderSpace {
  margin-left: -15px;
  margin-right: -15px;
  width: 100%;
  margin-bottom: 15px;
}


.sliderSpace .bigSlide {
  display: block;
  overflow: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: calc(100% + 30px);
  position: relative;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

}

.sliderSpace .bigSlide .item:first-child {
  margin-left: 15px;
}

.sliderSpace .bigSlide .item:last-child {
  margin-right: 15px;
}

.sliderSpace .bigSlide .item {
  aspect-ratio: 1/0.7;
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  white-space: normal;
  border-radius: 8px;
  box-shadow: 1px 1px 0 #fff;
  width: 80%;
  margin: 0 5px;
  scroll-snap-align: center;
  height: 100%;
  font-size: 0.9rem;
}

.sliderSpace .bigSlide .item::after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.84+0,0+60 */
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.sliderSpace .bigSlide .item picture,
.sliderSpace .bigSlide .item img,
.sliderSpace .bigSlide .item a.bigImg {
  width: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

.sliderSpace .bigSlide .item .info {
  display: flex;
  position: absolute;
  color: #fff;
  flex-direction: column;
  width: 43%;
  left: 10px;
  bottom: 10px;
  z-index: 2;
}

.sliderSpace .bigSlide .item .info .title {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2), 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.sliderSpace .bigSlide .item .info p {
  font-size: 0.7rem;
  line-height: 0.8rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2), 1px 1px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 9px;
}

.sliderSpace .bigSlide .item .info .capas {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 10px;
}

.sliderSpace .bigSlide .item .info .capas picture,
.sliderSpace .bigSlide .item .info .capas img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.sliderSpace .bigSlide::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}


button {
  border: none;
}

.btnPadrao {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff3c00+0,fcbc00+100 */
  background: rgb(255, 60, 0);
  /* Old browsers */
  background: -moz-linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c00', endColorstr='#fcbc00', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2), 1px 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 6px;
  transition: all 0.3s;
}

.btnPadrao:hover {
  color: #000;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.button-header {
  position: relative;
}

.button-header:hover a {
}

.button-header::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: -5px;
  transition: all 0.3s ease;
}

.button-header:hover::before {
  animation: moveAfter 0.8s ease forwards;
  background: #FE7A00 !important;
  color: #FE7A00 !important;
}

@keyframes moveAfter {
  0% {
      top: calc(50% - 3px); /* Começa no meio */
      left: -5px;
      height: 7px;
      border-radius: 50%;
  }
  50% {
      top: -10px; /* Sobe até o topo */
      left: 0px;
      height: 2px;
      width: 100%;
      border-radius: 0;
  }
  100% {
      top: calc(100% + 10px); /* Desce para a borda de baixo */
      left: 0px;
      height: 2px;
      width: 100%;
      border-radius: 0;
  }
}



.btnGreen {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00c392+0,00a595+100 */
  background: rgb(0, 195, 146);
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 149, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 149, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 149, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c392', endColorstr='#00a595', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  border-color: #00A595;
}

.btnBlack {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,464646+100 */
  background: rgb(0, 0, 0);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(70, 70, 70, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(70, 70, 70, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(70, 70, 70, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#464646', GradientType=0);
  /* IE6-9 */
  border-color: #000;
}

.greenAnimtionText {
  background: -webkit-linear-gradient(-45deg, #37b14d, #f3ad2a, #00806B, #fe6d00);
  -webkit-background-clip: text;
  
  animation: gradient 3s ease-in-out infinite;
  background-size: 800% 800%;
  filter: drop-shadow(1px 1px rgb(255, 255, 255));
}

.greenAnimtionBg {
  background: -webkit-linear-gradient(-45deg, #37b14d, #f3ad2a, #00806B, #fe6d00);
  background-size: 700% 700%;
  animation: gradient 6s ease infinite;
}


.simpleWhiteBox,
.listDefault li .item,
.listDefault2 li .item,
.listAtracoes li .item,
.listEpisodios li .item {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 9px;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.04), 0 9px 8px -9px rgba(0, 0, 0, 0.3);
  padding: 13px;
}

.firstCTA {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.firstCTA .simpleWhiteBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 0.85rem;
  line-height: 0.8rem;
  font-weight: 200;
}

.blackDegrade {
  background: -webkit-linear-gradient(45deg, #000, #5C5C5C);
  -webkit-background-clip: text;
  
}

.firstCTA .simpleWhiteBox strong {
  font-weight: 800;
}

.newFisrtCTA {
  display: block;
}

.newFisrtCTA .simpleWhiteBox {
  margin-bottom: 10px;
}

.btnAssineVazado {
  font-weight: 800;
  background: -webkit-linear-gradient(45deg, #00A56E, #00D692);
  -webkit-background-clip: text;
  
  display: grid;
  font-size: 1.5rem;
  line-height: 1.5rem;
  grid-template-columns: 1fr;
  gap: 5px;
}

.btnAssineVazado .arrow {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 4px #00A56E;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btnAssineVazado .arrow::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent transparent transparent #00A56E;
  margin-left: 1px;
}

.btnAssineVazado small {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.11rem;
  line-height: 1.11rem;
}

.firstCTA .btnAssineVazado .arrow {
  display: none;
}

.firstCTA .btnAssineVazado {
  font-size: 2rem;
  line-height: 1.5rem;
}

.firstCTA .btnAssineVazado small {
  font-size: 0.7rem;
  line-height: 0.8rem;
  margin-top: 3px;
}


h2,
h1,
.biglink {
  background: -webkit-linear-gradient(45deg, #FF4D00, #FCB200);
  -webkit-background-clip: text;
  
  filter: drop-shadow(1px 1px #fff);
  line-height: initial;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

h1,
h1 sán {
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding: 5px 0;
}

h1 span {
  font-weight: 400;
}

.h2comlink {
  font-size: 1rem;
  font-weight: 600;
  color: #131313;
  margin: -10px 0 5px 0;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.h2comlink a {
  color: #131313;
  background: unset;
}


.listDefault {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
listDefault2 {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.listDefault li {
  width: 100%
}

.listDefault li .item {
  display: flex;
  flex-direction: column;
  padding: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.listDefault li .item .badge {
  position: absolute;
  z-index: 3;
  top: 3px;
  right: 3px;
  background: #de2600;
  border-radius: 3px;
  color: #fff;
  padding: 2px 4px;
  font-weight: 500;
  text-align: center;
  font-size: .8em;
  line-height: 1
}

/* Alvo das capas — ajuste o seletor ao seu markup */
.listDefault li .item .thumb{
    aspect-ratio: 16 / 9;   /* largura : altura */
    width: 100%;
    overflow: hidden;       /* corta excessos laterais ou verticais */
    border-radius: 4px;     /* mantém seu estilo */
}

/* Mantém a imagem cobrindo todo o espaço sem distorcer */
.listDefault li .item .thumb picture,
.listDefault li .item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;      /* “preenche” sem esticar */
}


.listDefault li .item .info a.title {
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  padding: 5px 0 2px 0;
  color: #FE7E00
}

.listDefault li .item .info a.atracao {
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 0.65rem;
  text-transform: uppercase;
  padding: 0;
  color: #000
}

.listDefault li .item .btns {
  display: flex;
  gap: 2px;
  margin: 5px 0 0 0;
}

.listDefault li .item .btns a {
  width: 100%;
  font-size: 0.65rem;
  line-height: 0.7rem;
  padding: 7px 0;
  border-radius: 4px;
}

.listDefault li:hover .item {
  background: #131313;
  color: #fff
}

.listDefault li:hover .item .info a.atracao {
  color: #fff;
}


.ctaBlack {
  font-size: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 17px 0;
}

.ctaBlack small {
  font-size: 1.1rem;
  line-height: 1rem;
  font-weight: 600;
  color: #FCB200
}

.ctaBlack:hover {
  color: #00D692
}

.ctaBlack:hover small {
  color: #fff
}

.bigTitle {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 800;
  text-align: center;
  color: #FE7A00;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.fullWidtImage {
  width: 100%;
  aspect-ratio: 1/0.59;
}

.fullWidtImage a,
.fullWidtImage picture,
.fullWidtImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.secondCTA {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blocStats {
  display: block;
  text-align: center;
  padding: 8px;
  position: relative;
}

.blocStats .stat {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  width: 45%;
  width: calc(48% - 10px);
  max-width: 171px;
  margin: 8px 5px;
  text-align: left;
  position: relative;
}

.blocStats .stat span {
  display: inline-block;
  font-size: 1.9rem;
  line-height: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-right: 3px;
  color: #FE7A00;
  float: left;
}

.blocStats .stat:nth-child(3) {
  width: 40%;
  position: relative;
  max-width: 210px;
  min-width: 176px;
}

.clear {
  clear: both;
  padding: 0;
  margin: 0;
}

.btnAssineGreen,
.btnAssineBlue {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00c392+0,00a56e+0,00d491+100 */
  background: rgb(0, 195, 146);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 110, 1) 0%, rgba(0, 212, 145, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 110, 1) 0%, rgba(0, 212, 145, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 195, 146, 1) 0%, rgba(0, 165, 110, 1) 0%, rgba(0, 212, 145, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c392', endColorstr='#00d491', GradientType=0);
  /* IE6-9 */
  border: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 1.2rem;
  line-height: initial;
  gap: 10px;
  padding: 15px 0;
  margin-bottom: 20px;
}

.btnAssineGreen small,
.btnAssineBlue small {
  font-size: 1.2rem;
  font-weight: 400;
}

.btnAssineBlue {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0078e1+0,78c0ff+100 */
  background: rgb(0, 120, 225);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(0, 120, 225, 1) 0%, rgba(120, 192, 255, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 120, 225, 1) 0%, rgba(120, 192, 255, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 120, 225, 1) 0%, rgba(120, 192, 255, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078e1', endColorstr='#78c0ff', GradientType=0);
  /* IE6-9 */
}


.listAtracoes,
.listEpisodios {
  list-style: none;
  margin-bottom: 20px;
}

.listAtracoes li,
.listEpisodios li {
  display: block;
  width: 100%;
  margin-bottom: 18px;
}

.listAtracoes li h3,
.listEpisodios li h3 {
  display: block;
  width: 100%;
  margin-bottom: -10px;
}

.listAtracoes li h3 a {
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  text-align: center;
  background: rgb(255, 60, 0);
  /* Old browsers */
  background: -moz-linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(255, 60, 0, 1) 0%, rgba(252, 188, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c00', endColorstr='#fcbc00', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  border: solid 1px rgb(255, 60, 0);
  border-radius: 9px 9px 0 0;
  padding: 12px 0 20px 0;
  color: #eee;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.listAtracoes li .item,
.listEpisodios li .item {
  display: block;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}

.listAtracoes li .item .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.7;
  overflow: hidden;
  border-radius: 4px;
}

.listAtracoes li .item .thumb picture,
.listAtracoes li .item .thumb img,
.listAtracoes .capas .capa picture,
.listAtracoes .capas .capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.listAtracoes .middle {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 7px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 8px 0;

}

.listAtracoes .capas {
  display: flex;
  gap: 8px;
  height: 291px;
}

.listAtracoes .capas .capa {
  width: 50%;
  height: 100%;
}

.listAtracoes .capas .capa .thumbCapa {
  width: 100%;
  height: calc(100% - 32px);
  overflow: hidden;
  display: block;
}

.listAtracoes .capas .capa .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  line-height: 0.9rem;
  padding: 5px 0 0 0;
  color: #000;
  /* height: 32px; */
  text-transform: capitalize;
  font-weight: 100;
}

.listAtracoes li:hover h3 a {
  color: #000
}

.listAtracoes li:hover .item {
  background: #131313;
  color: #fff
}

.listAtracoes li:hover .middle {
  background: rgba(255, 255, 255, 0.04);
}

.listAtracoes li:hover .capas .capa .tit {
  color: #fff;
}


.biglink {
  font-size: 1.3rem;
  transition: all 0.5s;
}

.biglink:hover {
  background: -webkit-linear-gradient(45deg, #FCB200, #FF4D00);
  -webkit-background-clip: text;
  
}

.tCenter {
  text-align: center;
}

footer {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  z-index: 1;
  position: relative;
}

footer .whiteSpace {
  background: #fff;
  padding: 20px 0;
}

footer .logo {
  display: block;
  text-align: center;
  padding: 20px 0;
}

footer .logo img {
  height: 60px;
}

footer .orangeSpace {
  background: #FD8000;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #FD8000;
  margin: 0 20px
}

.features .featur {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

.features svg {
  height: 40px;
  margin-bottom: 8px;
  fill: #FD8000;
}

.copy {
  font-size: 0.7rem;
  line-height: 0.8rem;
  text-align: center;
}

footer nav ul {
  list-style: none;
  text-align: center;
  margin: 30px 0 10px 0;
}

footer nav ul li,
footer nav ul li a {
  display: block;
  color: #fff;
  font-weight: 800;
  padding: 5px 0;
}

footer nav ul li a:hover {
  color: #000
}

.cetralize {
  text-align: center;
}

.navOneDesktop,
.spaceMenuDesktop,
.back {
  display: none;
}

.flexBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

.firstCTA .btnAssineGreen,
.secondCTA .btnAssineGreen,
.singleCta .btnAssineGreen {
  background: -webkit-linear-gradient(-45deg, rgba(0, 195, 146, 1) 0%, #015a4b, rgb(3, 241, 218), rgb(255, 208, 0), rgba(0, 195, 146, 1));
  animation: gradient 10s linear infinite;
  background-size: 1200% 1200%;
}

.thirdCTA .btnAssineBlue {
  background: -webkit-linear-gradient(-45deg, rgba(0, 120, 225, 1) 0%, rgba(120, 192, 255, 1), rgb(137, 46, 255), rgba(0, 120, 225, 1));
  animation: gradient 8s linear infinite;
  background-size: 1000% 1000%;
}

.ctaBlack {
  background: -webkit-linear-gradient(-45deg, rgb(27, 27, 27) 0%, rgb(87, 101, 116), rgb(80, 51, 117), rgb(2, 150, 81));
  animation: gradient 5s linear infinite;
  background-size: 1500% 1500%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.paginacao {
  text-align: center;
  font-weight: 600;
}

.paginacao ul {
  margin: 0;
  padding: 15px 0px;
  list-style: none;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.paginacao ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.paginacao ul li a,
.paginacao ul li span {
  background: #fff;
  display: block;
  padding: 11px 15px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 1px 0px rgba(0, 0, 0, .15);
  -o-box-shadow: 0 1px 0px rgba(0, 0, 0, .15);
  box-shadow: 0 1px 0px rgba(0, 0, 0, .15);
  font-size: 0.8rem;
  line-height: 0.8rem;
  margin: 1px;
  color: #252525;
}

.paginacao ul li a:hover {
  background: #fd7628;
  color: #fff;
}

.paginacao ul li span {
  background: #fff;
  color: #fd7628;
  font-weight: 900;
}

.spaceLogin {
  max-width: 450px;
  margin: 0 auto;
}

.centralizaCaptcha {
  display: flex;
  justify-content: center;
}

.scrollLogin {
  overflow: scroll;
  overflow-y: hidden;
  display: block;
  width: 100%;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.scrollLogin::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}

.scrollLogin .item {
  display: inline-block;
  width: 100%;
  scroll-snap-align: center;
  white-space: normal;
}

.grecaptcha-badge {
  z-index: 3;
}

/* ADD MAIS UMA COLUNA NO grid-template-columns POR CAUSA DA DIV FANTASMA QUE O GOOGLE RECAPTCHA ESTAVA CRIANDO */
.gridButtons {
  display: grid;
  width: 100%;
  grid-template-columns: 0.8fr 0 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.imglogin {
  display: none;
}

.spaceLogin .secondCTA {
  margin-top: 20px;
}

.spaceLogin .secondCTA .simpleWhiteBox {
  background: #131313;
  color: white;
}



.spaceBetween {
  display: flex;
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.spaceBetween .btnPadrao {
  padding-left: 30px;
  padding-right: 30px;
}

.clear {
  clear: both;
}

.toRight {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

#cn-renove,
#cn-warning,
#cn-promo {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
}

/* #cn-renove { display: flex; } */
#cn-renove .content,
#cn-warning .content,
#cn-promo .content {
  position: absolute;
  width: 500px;
  max-width: 85%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cn-warning .simpleWhiteBox {
  padding: 24px;
}

#cn-renove .simpleWhiteBox,
#cn-promo .simpleWhiteBox {
  padding: 24px;
  background: rgb(0 0 0 / 50%);
  color: #fff
}

#cn-renove .btnPadrao,
#cn-warning .btnPadrao,
#cn-promo .btnPadrao {
  padding: 18px;
}

#cn-renove .logo img,
#cn-warning .logo img,
#cn-promo .logo img {
  height: 60px;
}

#cn-renove h2,
#cn-promo h2 {
  filter: unset;
  font-size: 1.6rem;
  line-height: 1.5rem;
}

.bigger {
  font-size: 1.3rem;
  line-height: 1.3rem;
  display: block;
  margin-bottom: 15px;
}

.biggerPrice {
  font-size: 3.5rem;
  line-height: 3rem;
  display: block;
  margin: 15px 0;
  color: #00D692
}

.opac05 {
  opacity: 0.5;
}

.ggBtn {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
}

.closePromo {
  padding: 20px;
  display: inline-block;
}

.closePromo:hover {
  color: #eee
}

@media only screen and (min-width: 493px) {
  .firstCTA .simpleWhiteBox {
    font-size: 1rem;
    line-height: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .biglink {
    font-size: 1.6rem;
    transition: all 0.5s;
  }

  .listDefault li .item .btns a {
    font-size: 0.8rem;
    line-height: 0.7rem;
    padding: 8px 0;
  }

  .sliderSpace .bigSlide .item .info .title {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  .sliderSpace .bigSlide .item .info p {
    font-size: 0.8rem;
    line-height: 0.9rem;
  }

  .listDefault li .item .info a.title {
    font-size: 0.9rem;
    line-height: 0.9rem;
  }

  .listDefault li .item .info a.atracao {
    font-size: 0.75rem;
    line-height: 0.85rem;
  }

  .listAtracoes .capas .capa .tit {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }

  .listAtracoes li h3 a {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }

  .listAtracoes .middle {
    font-size: 0.85rem;
  }
}

@media only screen and (min-width: 570px) {
  .firstCTA .btnAssineVazado .arrow {
    display: flex;
    border: solid 6px #00A56E;
  }

  .btnAssineVazado .arrow::after {
    border-width: 11px 0 11px 11px;
  }

  .btnAssineVazado {
    grid-template-columns: 63px 1fr;
  }

  .listAtracoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .listAtracoes li {
    margin-bottom: 11px;
  }

  .listAtracoes li .item {
    /* height: calc(100% - 31px); */
  }

  .listAtracoes .capas .capa .tit {
    font-size: 0.7rem;
    line-height: 0.8rem;
  }

  .listAtracoes li h3 a {
    font-size: 1.03rem;
    line-height: 1.03rem;
  }

  .listAtracoes .middle {
    font-size: 0.75rem;
  }


  .btnAssineGreen,
  .btnAssineBlue {
    font-size: 1.4rem;
  }

  .btnAssineGreen small,
  .btnAssineBlue small {
    font-size: 1.4rem;
  }

}

@media only screen and (min-width: 600px) {
  .sliderSpace .bigSlide .item .info .capas {
    display: flex;
  }

  .ctaBlack {
    font-size: 1.7rem;
    line-height: 1.7rem;
  }

  .ctaBlack small {
    font-size: 1.23rem;
    line-height: 1.2rem;
  }

  .blocStats .stat {
    max-width: 144px;
  }

  .fullWidtImage {
    width: 100%;
    aspect-ratio: 1/0.55;
  }
}

@media only screen and (min-width: 730px) {
  body {
    padding-top: 71px;
  }

  header .logo img {
    height: 45px;
  }

  .sliderSpace .bigSlide .item .info .capas {
    display: flex;
  }

  .listDefault {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  listDefault2 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .listAtracoes {
    gap: 18px;
  }

  .listAtracoes li {
    margin-bottom: 15px;
  }

  .firstCTA .simpleWhiteBox {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  .btnAssineVazado {
    grid-template-columns: 47px 1fr;
  }

  .btnAssineVazado .arrow::after {
    border-width: 7px 0 7px 7px
  }

  .btnAssineVazado>div {
    white-space: nowrap;
  }

  .firstCTA .btnAssineVazado small {
    font-size: 1.43rem;
    line-height: 1.65rem;
  }

  .ctaBlack {
    display: inline-flex;
    padding: 15px 58px;
  }

  h2 {
    font-size: 1.9rem;
  }

  .bigTitle {
    font-size: 2.3rem;
    line-height: 2.3rem;
  }

  .btnAssineGreen,
  .btnAssineBlue,
  .btnAssineGreen small,
  .btnAssineBlue small {
    font-size: 1.9rem;
  }

  .listAtracoes .capas .capa .tit {
    font-size: 0.9rem;
    line-height: 1rem;
  }

  .listAtracoes .middle {
    font-size: 0.9rem;
  }

  .listAtracoes li h3 a {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .spaceLogin {
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    margin-top: 7%;
  }

  .spaceLogin .secondCTA {
    grid-column: 1/3;
  }

  .spaceLogin .secondCTA {
    grid-column: 1/3;
  }

  .spaceLogin .blocStats .stat {
    font-size: 0.7rem;
  }

  .spaceLogin .blocStats .stat:first-child {
    max-width: 120px;
  }

  .spaceLogin .blocStats .stat {
    max-width: 141px;
  }

  .spaceLogin .secondCTA .simpleWhiteBox {
    background: #131313;
    padding: 15px;
  }

  .spaceLogin .btnAssineGreen {
    flex-direction: column;
  }

  .spaceLogin .secondCTA {
    display: grid;
    gap: 10px;
    grid-template-columns: 2.5fr 1fr
  }

  .spaceLogin .blocStats .stat span {
    font-size: 2rem;
  }

  .spaceLogin .blocStats .stat:nth-child(3) {
    margin-left: 5px;
  }

  .spaceLogin .btnAssineGreen {
    padding-top: 21px;
    font-size: 1.9rem;
    line-height: 1rem;
    margin-bottom: 0;
  }

  .spaceLogin .btnAssineGreen small {
    font-size: 1rem;
    line-height: 0.8rem;
  }

  .scrollLogin h2 {
    margin: -10px 0 0 0;
  }

  .spaceLogin .likeArticle {
    height: 100%;
    padding: 17px;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
  }

  .imglogin {
    display: block;
    height: 162px;
    width: auto !important;
    float: right;
    top: 14%;
    right: -17px;
    position: relative;
    margin-left: -33px;
  }
}

@media only screen and (min-width: 800px) {
  .listDefault li .item .btns a {
    font-size: 0.9rem;
    line-height: 0.8rem;
    padding: 10px 0;
  }

  .blocStats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: flex-start;
  }

  .blocStats .stat span {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .blocStats .stat {
    max-width: 173px;
    font-size: 1rem;
    line-height: 1rem;
  }

  .blocStats .stat:nth-child(3) {
    margin-left: 25px;
  }

  .fullWidtImage {
    width: 100%;
    aspect-ratio: 1/0.55;
  }
}

@media only screen and (min-width: 996px) {
  .spaceLogin {
    max-width: 750px;
  }

  .spaceLogin .simpleWhiteBox {
    padding: 30px;
  }

  .imglogin {
    height: 196px;
  }

  .togleMobile,
  .togleSearch,
  .login .ico {
    display: none;
  }

  body {
    padding-top: 0;
  }

  header {
    padding-bottom: 32px;
    position: relative;
    border: none;
  }

  header .center {
    align-items: center;
    grid-template-columns: 3fr 1fr 0.5fr;
  }

  header .search {
    max-width: unset;
    max-height: unset;
    grid-column: 2/3;
    grid-row: 1/1;
  }

  #assineInTop {
    display: none;
  }

  .search input {
    background: url('../imgs/lupa-field.png') no-repeat transparent;
    background-position: 10px center;
    width: 100%;
    padding-left: 30px;
  }

  header .hDir {
    grid-row: 1/1;
    grid-column: 3/4;
    width: 160px;
  }

  .login .text {
    display: block;
    display: inline-flex;
    position: relative;
    background: #F4F4F4;
    box-shadow: inset -2px -2px 3px -1px rgb(0 0 0 / 5%);
    border-radius: 30px;
    margin: 0;
    transition: all 0.5s ease;
    border: none;
    height: 36px;
    padding: 2px 15px 0 15px;
    font-size: 0.8rem;
    line-height: 0.9rem;
    font-weight: 800;
    color: #FD8000;
    margin-right: 10px;
    cursor: pointer;
    align-items: center;
  }

  .login .text:hover {
    background: #00A56E;
    color: #fff
  }

  .login .text:hover::after {
    border-color: transparent transparent transparent #00A56E;
  }

  .login .text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #FD8000;
    margin-left: 1px;
    top: 34.3%;
    right: -9px;
  }

  .listDefault {
    grid-template-columns: 1fr;
  }
  
  listDefault2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .listAtracoes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .firstCTA {
    margin-bottom: 40px;
  }

  .firstCTA .simpleWhiteBox {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .firstCTA .btnAssineVazado {
    font-size: 2.3rem;
    line-height: 1.8rem;
  }

  .firstCTA .btnAssineVazado small {
    font-size: 1.65rem;
    line-height: 1.9rem;
  }

  .btnAssineVazado {
    grid-template-columns: 57px 1fr;
    margin-left: 20px;
  }

  .bigTitle {
    margin-top: 50px;
  }

  .secondCTA {
    display: grid;
    gap: 10px;
    grid-template-columns: 2fr 1.2fr;
    margin-bottom: 40px;
  }

  .blocStats {
    padding: 7px;
  }

  .blocStats .stat {
    max-width: 173px;
  }

  .blocStats .stat:first-child {
    max-width: 150px;
  }

  .blocStats .stat:nth-child(3) {
    max-width: 215px;
    margin-left: 10px;
  }

  .btnAssineGreen,
  .btnAssineBlue,
  .btnAssineGreen small,
  .btnAssineBlue small {
    font-size: 1.3rem;
    margin-bottom: 0;
  }

  .btnAssineBlue {
    padding: 15px 30px;
  }

  .thirdCTA {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .orangeSpace .center,
  footer .whiteSpace .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer nav ul li,
  footer nav ul li a {
    display: inline-block;
    color: #fff;
    font-weight: 800;
    padding: 5px 0 5px 10px;
  }

  footer nav ul {
    margin: unset;
  }

  .copy {
    text-align: left;
  }

  .navOneDesktop {
    display: block;
  }

  .navOneDesktop ul {
    list-style: none;
    margin-left: 30px;
  }

  .navOneDesktop ul li {
    display: inline-block;
    position: relative;
  }

  .navOneDesktop ul li::after {
    content: "";
    width: 7px;
    height: 7px;
    background: #FE7A00;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 3px);
    left: -5px;
  }

  .navOneDesktop ul li:first-child:after {
    display: none;
  }

  .navOneDesktop ul li a {
    display: block;
    padding: 10px;
    color: #000;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
  }

  .navOneDesktop ul li a:hover {
    color: #FE7A00;
  }

  .spaceMenuDesktop {
    display: block;
    margin-top: -23px;
    z-index: 10;
    margin-bottom: 5px;
    position: relative;
  }

  .spaceMenuDesktop .center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px
  }

  .separador {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
  }

  .menuDesktop {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff3c00+12,fcbc00+100 */
    background: rgb(255, 60, 0);
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(255, 60, 0, 1) 12%, rgba(252, 188, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255, 60, 0, 1) 12%, rgba(252, 188, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255, 60, 0, 1) 12%, rgba(252, 188, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c00', endColorstr='#fcbc00', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    border: solid 1px #FE5900;
    border-left: 0;
    border-radius: 0 50px 50px 0;
    position: relative;
    padding: 2px 10px 2px 2px;
    font-size: 0.8rem;
    width: 80%;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1), 1px 1px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 3px 4px 9px rgb(0 0 0 / 25%);
  }

  .menuDesktop::before {
    content: "";
    position: absolute;
    top: -1px;
    height: 100%;
    background: rgb(255, 60, 0);
    border: solid 1px #FE5900;
    border-right: 0;
    width: 100%;
    left: calc(-100% + 1px);
    z-index: 1;
  }

  .maisVistos {
    list-style: none;
    text-transform: uppercase;
    font-size: 0.7rem;
  }

  .maisVistos li {
    display: inline-block;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7)
  }

  .maisVistos li a {
    font-weight: 800;
    color: #fff;
    display: block;
    padding: 11px 10px;
    transition: all 0.3s;
  }

  .maisVistos li a:hover {
    color: #000;
  }

  .maisVistos li:last-child {
    display: none;
  }

  .plus {
    background: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.1rem;
    padding-top: 3px;
    box-shadow: 1px 1px 0 rgba(255, 0, 0, 0.1), inset 1px 1px 0px rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
  }

  .plus:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1), inset 1px 1px 0px rgba(0, 0, 0, 0.4);
  }

  .assineHeader {
    border-radius: 50px 0 35px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 10px;
    padding-left: 65px;
    transition: all 0.3s;
    box-shadow: 3px 4px 9px rgb(0 0 0 / 25%);
  }

  .assineHeader:hover {
    filter: brightness(1.3);
    color: #ffd693
  }

  .assineHeader small {
    font-size: 0.6rem;
    display: inline-block;
    color: #E88E02;
    max-width: 70px;
    line-height: 0.7rem;
  }

  .assineHeader svg {
    height: 35px;
    margin-right: 10px;
    position: absolute;
    left: 14px;
    margin-top: -12px;
    filter:
      drop-shadow(-1px -1px 0px #131313) drop-shadow(1px -1px 0px #131313) drop-shadow(1px 1px 0px #131313) drop-shadow(-1px 1px 0px #131313);
  }

  .assineHeader span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-right: 10px;
    text-shadow:
      2px 2px 0px #131313,
      -2px 2px 0px #131313,
      2px -2px 0px #131313,
      -2px -2px 0px #131313,
      -2px -1px 0px #131313,
      2px 1px 0px #131313,
      2px 0px 0px #131313,
      -3px 2px 0px #131313,

      4px 4px 0px #E88E02,
      1px 4px 0px #E88E02,
      -2px 4px 0px #E88E02,
      -4px 4px 0px #E88E02,

      4px -4px 0px #E88E02,
      1px -4px 0px #E88E02,
      -2px -4px 0px #E88E02,
      -3px -4px 0px #E88E02,

      4px -3px 0px #E88E02,
      4px -2px 0px #E88E02,
      4px -1px 0px #E88E02,
      4px 0px 0px #E88E02,
      4px 1px 0px #E88E02,
      4px 2px 0px #E88E02,
      4px 3px 0px #E88E02,

      -3px -3px 0px #E88E02,
      -3px -2px 0px #E88E02,
      -3px -1px 0px #E88E02,
      -3px 0px 0px #E88E02,
      -3px 1px 0px #E88E02,
      -3px 2px 0px #E88E02,
      -3px 3px 0px #E88E02,
      -6px 4px 0px #E88E02;
  }

  #forMenuMobile:checked~#menuMobile {
    left: 0;
  }

  #menuMobile {
    left: -300px;
    width: 266px;
    top: 0;
    box-shadow: 7px 10px 30px rgb(0 0 0 / 90%);
  }

  #menuMobile ul.likeButtons,
  #menuMobile #assineInMenu {
    display: none;
  }

  .whitScroll::-webkit-scrollbar {
    width: 5px;
  }

  .whitScroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .whitScroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
  }

  .whitScroll::-webkit-scrollbar-thumb:hover {
    background: #F4F4F4;
  }

  .back {
    display: block;
  }

  .back svg {
    width: 20px;
    fill: #fff;
    cursor: pointer;
  }

  .back:hover svg {
    fill: #FCB200;
  }

  .sliderSpace {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 430px;
  }

  .sliderSpace .bigSlide {
    width: 63%;
    height: 100%;
    font-size: 0;
    box-shadow: 1px 1px 0 #fff;
    overflow: hidden;
    border-radius: 9px;
  }

  .sliderSpace .bigSlide .item:first-child {
    margin-left: 0px;
  }

  .sliderSpace .bigSlide .item {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin: 0;
    box-shadow: unset;
    display: inline-flex;
  }

  .sliderSpace .bigSlide .item .info .capas {
    gap: 10px;
  }

  .sliderSpace .controlSlides,
  .sliderSpace .smallSlide {
    display: block;
  }

  .sliderSpace .smallSlide {
    width: calc(37% - 70px);
    overflow-y: hidden;
    height: 100%;
    scroll-snap-type: Y mandatory;
    scroll-behavior: smooth;
  }

  .sliderSpace .smallSlide .item {
    width: calc(100% - 1px);
    height: calc(100% / 3 - 7px);
    margin-bottom: 10px;
  }

  .sliderSpace .smallSlide .item a {
    display: block;
    height: calc(100% - 1px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 1px 1px 0 #fff;

  }

  .sliderSpace .smallSlide .item a picture,
  .sliderSpace .smallSlide .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sliderSpace .controlSlides {
    padding-right: 2px;
  }

  .sliderSpace .controlSlides .up,
  .sliderSpace .controlSlides .down {
    border-radius: 50%;
    width: 45px;
    aspect-ratio: 1/1;
    margin: 5px;
    box-shadow: 1px 1px 0 #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sliderSpace .controlSlides .up {
    transform: rotate(-180deg);
  }

  .sliderSpace .controlSlides .up::after,
  .sliderSpace .controlSlides .down::after,
  .sliderSpace .controlSlides .up::before,
  .sliderSpace .controlSlides .down::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 5px;
    border-radius: 5px;
    display: inline-block;
    background: #fff;
    transform: rotate(45deg);
    z-index: 1;
    margin-left: -7px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  }

  .sliderSpace .controlSlides .up::before,
  .sliderSpace .controlSlides .down::before {
    transform: rotate(-45deg);
    margin-left: unset;
    margin-right: -7px;
    box-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
  }

  .sliderSpace .controlSlides .up:hover,
  .sliderSpace .controlSlides .down:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .sliderSpace .bigSlide .item .info .capas picture,
  .sliderSpace .bigSlide .item .info .capas img {
    border-radius: 6px;
  }

  .minHeight {
    min-height: calc(100vh - 464px);
  }

  .newFisrtCTA {
    display: grid;
  }

  .newFisrtCTA .simpleWhiteBox {
    margin-bottom: 0px;
  }

  .newFisrtCTA .btnPadrao {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    white-space: nowrap;
  }

  .newFisrtCTA .simpleWhiteBox {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

}

@media only screen and (min-width: 1050px) {
  .maisVistos {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }

  .fullWidtImage {
    width: 100%;
    aspect-ratio: 1/0.4;
  }
}

@media only screen and (min-width: 1200px) {
  .sliderSpace {
    height: 470px;
  }

  .maisVistos li:last-child {
    display: inline-block;
  }

  .maisVistos li a {
    padding: 15px 10px;
  }

  .assineHeader {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .minHeight {
    min-height: calc(100vh - 456px);
  }
}

@media only screen and (min-width: 1300px) {
  .listDefault2 {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  
  @media only screen and (min-width: 1300px) {
  .listDefault {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 60px;
  }

  .listAtracoes {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 40px;
  }

  .maisVistos {
    font-size: 0.9rem;
    line-height: 0.9rem;
  }

  .navOneDesktop ul li a {
    padding: 10px 22px;
  }

  .sliderSpace {
    margin-bottom: 30px;
  }

  .simpleWhiteBox {
    padding: 13px;
  }

  .firstCTA {
    grid-template-columns: 1fr auto;
  }

  .firstCTA .btnAssineVazado {
    padding-top: 7px;
    letter-spacing: -2px;
  }

  .firstCTA .btnAssineVazado .arrow {
    border: solid 8px #00A56E;
  }

  .firstCTA .btnAssineVazado small {
    line-height: 2rem;
    margin-top: -2px;
    letter-spacing: -0.08rem;
  }

  h2 {
    font-size: 2rem;
  }

  .ctaBlack {
    font-size: 2.5em;
    line-height: 2.5rem;
    margin-bottom: 20px;
  }

  .ctaBlack small {
    font-size: 1.69rem;
    line-height: 1.6rem;
    font-weight: 400;
    margin-top: -3px;
  }

  .bigTitle {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 25px;
  }

  .blocStats .stat {
    font-size: 1.2rem;
    line-height: 1.2rem;
    max-width: 217px;
  }

  .blocStats .stat:first-child {
    max-width: 193px;
  }

  .blocStats .stat span {
    font-size: 2.9rem;
    line-height: 2.5rem;
  }

  .blocStats .stat:nth-child(3) {
    max-width: 266px;
    margin-left: 25px;
  }

  .secondCTA {
    grid-template-columns: 2fr 1.1fr;
  }

  .btnAssineGreen,
  .btnAssineBlue,
  .btnAssineGreen small,
  .btnAssineBlue small {
    font-size: 1.6rem;
  }

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

  .sliderSpace .bigSlide .item .info .title {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .sliderSpace .bigSlide .item .info p {
    font-size: 1.05rem;
    line-height: 1.1rem;
  }

  .sliderSpace .bigSlide .item .info {
    width: 36%;
  }

  .minHeight {
    min-height: calc(100vh - 389px);
  }
}

@media only screen and (min-width: 1430px) {
  .fullWidtImage {
    width: 100%;
    aspect-ratio: 1/0.37;
  }

  .center {
    max-width: 1400px;
    margin: 0 auto;
  }

  .firstCTA .simpleWhiteBox {
    font-size: 1.8rem;
    line-height: 1.8rem;
    padding: 28px;
  }

  .listDefault2 {
    gap: 20px;
  }
  
  listDefault {
    gap: 20px;
  }

  .listDefault li .item .info a.title {
    font-size: 1rem;
    line-height: 1rem;
  }

  .listDefault li .item .info a.atracao {
    font-size: 0.8rem;
    line-height: 0.9rem;
    font-weight: 600;
  }

  .bigTitle {
    font-size: 2.6rem;
  }

  .fullWidtImage {
    /*aspect-ratio: 1/0.32;*/
    margin-bottom: 30px;
  }

  .btnAssineGreen,
  .btnAssineBlue,
  .btnAssineGreen small,
  .btnAssineBlue small {
    font-size: 1.8rem;
  }

  .listAtracoes {
    gap: 20px;
  }

  .listAtracoes {
    margin-bottom: 60px;
  }

  footer {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    margin-top: 50px;
  }

  .maisVistos li a {
    padding: 15px 19px;
  }

  .assineHeader svg {
    height: 41px;
    margin-right: 10px;
    position: absolute;
    left: 18px;
    margin-top: -20px;
  }

  .assineHeader {
    padding-left: 77px;
  }

  .assineHeader span {
    font-size: 1.5rem;
  }

  .assineHeader small {
    font-size: 0.8rem;
    max-width: 90px;
    line-height: 0.88rem;
  }

  .maisVistos li a {
    padding: 16px 13px;
  }

  .menuDesktop {
    margin-right: 20px;
    padding: 2px 16px 2px 2px;
  }

  .sliderSpace .bigSlide {
    width: 75%;
  }

  .sliderSpace .controlSlides {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sliderSpace {
    height: 550px;
  }

  .sliderSpace .btnPadrao {
    font-size: 1.3rem;
    padding: 18px 0px;
  }

  .sliderSpace .bigSlide .item .info {
    width: 31%;
    left: 20px;
    bottom: 20px;
  }

  .simpleWhiteBox,
  .listDefault li .item,
  .listAtracoes li .item {
    border-radius: 11px;
  }

  .listDefault li .item .thumb {
    border-radius: 7px;
  }

  .listDefault li .item .btns a {
    border-radius: 7px;
  }

  .plus {
    width: 22px;
    height: 22px;
    padding-top: 1px;
    padding-right: 1px;
  }

  .blocStats .stat:first-child {
    max-width: 204px;
  }

  .minHeight {
    min-height: calc(100vh - 412px);
  }

  .newFisrtCTA .simpleWhiteBox {
    font-size: 1.6rem;
    line-height: 1.6rem;
    padding: 24px;
  }
}

@media only screen and (min-width: 1500px) {
  .fullWidtImage {
    width: 100%;
    aspect-ratio: unset;
  }
}


.listDefault li .item .thumb picture,
.listDefault li .item .thumb img {
  min-height: 329px !important;
}