﻿
#cadastrarBtn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #FF5429;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
  /* Otimizações para performance */
  will-change: background-color, color;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden;
  /* Animação contínua de piscar instantâneo */
  animation: colorBlink 1s infinite;
}

  #cadastrarBtn:hover {
    transform: scale(1.05);
  }

/* Keyframes para a animação de piscar instantâneo */
@keyframes colorBlink {
  0%, 50% {
    background-color: #FF5429;
    color: white;
  }

  50.01%, 100% {
    background-color: white;
    color: #FF5429;
  }
}

/* Versão alternativa com JavaScript para controle manual */
.myralis-landingblack-btncadastrar {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  border-style: none !important;
}


.landing-black {
  height: 62vw;
  background-color: #006DFF;
}

.myralis-contador-area {
  height: 26vw;
  background-color: black;
}


.landing-black-friday .master-wrapper-content {
  padding: 0;
  padding-bottom: 0;
}

.myralis-contador-area-interna {
  display: flex;
  justify-content: center;
}

.myralis-landingblack-contador-subdiv {
  background-color: black;
  padding: 1vw 4vw;
  font-size: 2vw;
}

.myralis-landingblack-titleprincipal-h1 {
  position: absolute;
  left: 10%;
  bottom: 81%;
  font-family: var(--myralis-font-family);
  font-size: 2.7vw;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
  color: white;
}

.topic-page-body .master-wrapper-content {
  padding: 0;
}

.topic-page .page-body {
  max-width: unset;
}

div#ph-title {
  display: none;
}

p.myralis-landingblack-subtitle-h2 {
  color: rgba(255, 255, 255, 0.60);
  font-family: var(--myralis-font-family-secondary);
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  position: absolute;
  top: 15%;
  left: 10%;
  font-size: 1.2vw;
}

.myralis-landingblack-form-area {
  margin-top: 40px;
}

.myralis-landingblack-interesses-title {
  color: rgba(255, 255, 255, 0.90);
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}



.myralis-landingblack-formarea-title-1 {
  color: rgba(255, 255, 255, 0.90);
  text-align: center;
  font-family: Ubuntu;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

p.myralis-landingblack-formarea-title-2 {
  color: var(--Rebranding-Orange, #FF5429);
  font-family: Ubuntu;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.myralis-landingblack-placeholder-inputtext {
  display: flex;
  height: 40px;
  padding: 4px 12px;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  cursor: pointer;
  color: white;
}

.myralis-landingblack-formarea-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.myralis-landingblack-titleprincipal-area img {
  width: 100%;
}

section.myralis-landingblack-area1 {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 95%;
}

p.myralis-landingblack-interesses-title {
  color: rgba(255, 255, 255, 0.90);
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin: 20px 0;
}
/*CHECKBOX PREFERENCIAS*/

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  padding-left: 25px;
}
  /* Esconde o checkbox original */
  .checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
/* Cria o checkbox personalizado */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}
/* Quando o mouse passa por cima */
.checkbox-item:hover input ~ .checkmark {
  background-color: #ccc;
}
/* Quando o checkbox está marcado */
.checkbox-item input:checked ~ .checkmark {
  background-color: black;
}
/* Cria o símbolo de check (✓) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Mostra o símbolo quando marcado */
.checkbox-item input:checked ~ .checkmark:after {
  display: block;
}
/* Estilo do símbolo de check (✓) */
.checkbox-item .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.landing-black button:hover {
  background-color: #FF5429;
}

label.checkbox-item {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  color: rgba(255, 255, 255, 0.60);
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

p.myralis-landingblack-formarea-title-2 {
  margin-top: 0;
}


.checkbox-group.myralis-landingblack-options-area {
  display: flex;
  gap: 14px;
}

.checkbox-group.myralis-landingblack-options-area {
  display: flex;
  /* gap: 14px; */
  align-content: space-between;
  justify-content: space-between;
}

span.checkmark {
  background-color: transparent;
  border: 2px solid #292929;
}

.myralis-landingblack-formarea-title {
  text-align: center;
}

.myralis-landingblack-btncadastrar {
  border-radius: 8px;
  background: var(--Rebranding-WhitePrimary, #FFF);
  display: flex;
  height: 40px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--Rebranding-Orange, #FF5429);
  text-align: center;
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}


.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 8px auto;
  max-width: 800px;
  margin-top: 14px;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 8vw;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

  .countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

.countdown-value {
  font-size: 30px;
  font-weight: bold;
  color: #FF5429;
  position: relative;
  overflow: hidden;
  height: 60px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu';
}

  .countdown-value .flip {
    animation: flip 0.5s ease;
  }

@keyframes flip {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.countdown-label {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cores diferentes para cada quadrante */
.countdown-box {
  border: 2px solid #292929;
}

/* Responsividade */
@media (max-width: 600px) {
  .countdown-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .countdown-box {
    min-width: 100px;
    padding: 15px;
  }

  .countdown-value {
    font-size: 36px;
    height: 45px;
  }

  .countdown-label {
    font-size: 14px;
  }
}


.myralis-landingblack-contador {
  position: absolute;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1vw 2vw 0vw 2vw;
  border-radius: 4px;
  bottom: 5vw;
  left: 8.5vw;
  max-width: 40vw;
}

a.myralis-landinblack-contagem-comecou {
  color: #FFF;
  text-align: center;
  font-family: Ubuntu;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
  text-decoration: none;
}

.myralis-landingblack-part2 {
  margin-top: 14vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.myralis-landingpage-carrousel-product-area {
  width: 50%;
}

.carousel-item.slick-slide.slick-active {
  width: 250px;
}


h2.myralis-landingpage-carrousel-message-title {
  color: var(--Rebranding-WhitePrimary, #FFF);
  font-family: Ubuntu;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  width: 77%;
}

p.myralis-landingpage-carrousel-message-subtitle {
  color: var(--Rebranding-WhitePrimary, #FFF);
  text-align: justify;
  font-family: Barlow;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
}

.title.carousel-title.has-navigation {
  display: none !important;
}

p.myralis-landingpage-carrousel-message-subtitle {
  width: 500px;
}


.ajax-cart-button-wrapper.qty-enabled {
  display: flex;
}

.prices {
  display: flex;
  flex-direction: column;
  align-items: start;
  display: flex;
  height: 80px;
  justify-content: center;
}

a.productimage {
  display: flex;
  justify-content: center;
}

.slick-carousel .item-box {
  width: 84% !important;
  margin: 0 !important;
  border-radius: 16px !important;
  padding: 0px 10px !important;
}

.jCarouselMainWrapper .slick-next:before, .jCarouselMainWrapper .slick-prev:before {
  background: unset !important;
  line-height: 22px !important;
  box-shadow: unset !important;
}

.jCarouselMainWrapper .slick-next, .jCarouselMainWrapper .slick-prev {
  border: unset !important;
}

.topic-page a {
  text-decoration: none;
}

.rating {
  display: none;
}

a.myralis-short-item-name.two-line-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-box .prices > *:last-child:not(:empty) {
  margin-bottom: unset;
}

a.myralis-short-item-name {
  display: flex;
  min-height: 40px;
  line-height: 1.2;
  min-height: 40px !important;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  min-height: 150px !important;
  height: 194px !important;
}

.picture {
  background: unset !important;
}

.myralis-landingpage-carrousel-message {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 44%;
}

button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
  /* background-color: white; */
  border-radius: 100px;
  background: var(--Rebranding-WhitePrimary, #FFF);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

  button.slick-prev.slick-arrow:hover, button.slick-next.slick-arrow:hover {
    /* background-color: white; */
    border-radius: 100px;
    background: var(--Rebranding-WhitePrimary, #FFF);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  }

span.myralis-landingpage-carrousel-message-subtitle {
  color: var(--Rebranding-WhitePrimary, #FFF);
  text-align: justify;
  font-family: Barlow;
  font-size: 22px;
  font-style: normal;
  font-weight: lighter;
  line-height: 34px;
  width: 70%;
}

.center-1 .nop-jcarousel.product-grid .slick-carousel {
  margin: 0 -1px 0 -41px;
}

section.myralis-landingblack-area3 {
  background-color: black;
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.myralis-landingblack-area3-white {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  padding: 34px 48px;
}

.myralis-landingblack-area3-infos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

span.myralis-landing-black-area3-text1 {
  color: var(--NeutralColors-grayfont, #3C3C4F);
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}


.myralis-landingpage-anchor-area3-btn {
  display: flex;
  width: 250px;
  height: 40px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--Rebranding-Orange, #FF5429);
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Ubuntu';
}

span.myralis-landing-black-area3-text2 {
  color: var(--NeutralColors-grayfont, #3C3C4F);
  text-align: justify;
  font-family: Barlow;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.myralis-landingblack-area4-green {
  display: flex;
  padding: 42px 80px;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  align-self: stretch;
  background: var(--Rebranding-Green, #9FFF88);
}

.myralis-landingblack-area4-cards {
  display: flex;
  width: 186px;
  padding: 15px 10px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  gap: 24px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.myralis-landinglack-area4-cards-container {
  display: flex;
  gap: 2vw;
}

p.myralis-landingblack-area4-card-text {
  color: var(--NeutralColors-grayfont, #3C3C4F);
  text-align: center;
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}

.myralis-landingblack-bestconditions-title {
  color: var(--NeutralColors-grayfont, #3C3C4F);
  text-align: center;
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.myralis-landingblack-info5-cards-title {
  color: var(--Rebranding-Orange, #FF5429);
  text-align: center;
  font-family: Ubuntu;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.myralis-landingblack-area5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  align-self: stretch;
  background-color: black;
  padding: 52px;
  padding-top: 120px;
  padding-bottom: 120px;
}

}

.myralis-landingblack-area5-title {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.myralis-landingblack-infos5-area-bignumbers {
  display: flex;
  gap: 34px;
}

p.myralis-landingblack-info5-cards-title {
  color: var(--Rebranding-Orange, #FF5429);
  text-align: center;
  font-family: Ubuntu;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

p.myralis-landingblack-info5-cards-subtitle {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.myralis-landingblack-infos5-cards {
  border-radius: 24px;
  border: 1px solid var(--Rebranding-BluePrimary, #006DFF);
  background: #000;
  box-shadow: 0 4px 16px 0 rgba(0, 109, 255, 0.50);
  display: flex;
  width: 345px;
  padding: 24px 42px;
  flex-direction: column;
  align-items: center;
}

.myralis-landingblack-area6 {
  display: flex;
  padding: 42px 24px;
  padding-left: 80px;
  gap: 31px;
  background: var(--Rebranding-BluePrimary, #006DFF);
}

h2.myralis-landingblack-area-title {
  color: var(--Rebranding-WhitePrimary, #FFF);
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 29%;
  margin-bottom: 38px;
}

p.myralis-landingblack-area6-cards-subtitle {
  color: #FFF;
  max-width: 208px;
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  height: 75px;
  display: flex;
  align-items: center;
  width: 98%;
  justify-content: space-between;
}

.myralis-landingblack-area6-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/*CARROUSEL area 6*/

.myralis-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.myralis-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.myralis-carousel-slide {
  min-width: calc(27px - 20px);
  margin: 0 10px;
  flex-shrink: 0;
  /*width: 28%;*/
  width: 23%;
}



.myralis-carousel-next {
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

button.myralis-carousel-next {
  background: unset;
}

.myralis-carousel-next:hover {
}

.myralis-landingblack-area6-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

  .myralis-landingblack-area6-cards img {
    max-width: 100%;
    height: auto;
  }

.myralis-carousel-wrapper {
  overflow-x: scroll;
  cursor: unset !important;
}

  .myralis-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Safari e Chrome */
  }

/*CARROUSEL area 6 FIM*/

@media (max-width: 1024px) {

  .myralis-carousel-wrapper {
    overflow-x: scroll;
    cursor: ew-resize !important;
  }
  .countdown-ended-message {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  .countdown-ended-subtext {
    font-size: 16px !important;
    line-height: 20px !important;
  }

  .myralis-carousel-wrapper {
    cursor: unset !important;
  }

  img#arrow-carrousel-greenarea {
    
    display: flex !important;
  }

  h2.myralis-landingblack-defora-dessa {
    font-size: 24px !important;
  }

  h3.myralis-landingblack-area7-item1, h3.myralis-landingblack-area7-item2, h3.myralis-landingblack-area7-item3, h3.myralis-landingblack-area7-item4 {
    font-size: 22px !important;
  }

  .topic-page .landing-black ul.slick-dots {
    display: block !important;
  }


  .myralis-landingblack-part2 .details {
    height: 228px !important;
  }

  .myralis-landingblack-part2 a.myralis-short-item-name {
    height: 63px;
  }

  h3.myralis-landingblack-area7-item4 {
    text-align: left;
  }

  .input-error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: -18px;
    margin-bottom: -10px;
    display: none;
    text-align: left;
  }

  .myralis-carousel-slide:nth-child(3) + .myralis-carousel-slide {
    
  }

  .myralis-landingblack-area6-cards img {
    width: unset;
  }

  h2.myralis-landingblack-area7-title {
    font-size: 26px !important;
  }

  p.myralis-landingblack-area7-subtitle {
    font-size: 20px !important;
  }

  section.myralis-landingblack-area7 {
    gap: 82px !important;
  }

  .myralis-landingblack-area7-titles {
    padding: 20px;
  }



  .myralis-landingblack-part2 button.button-base.button-primary.transform-uppercase.product-box-add-to-cart-button {
    width: 100%;
  }

  .myralis-landingblack-part2 .nop-jcarousel {
    padding: 0 10px;
  }

  .myralis-landingblack-part2 button.slick-prev.slick-arrow, .myralis-landingblack-part2 button.slick-next.slick-arrow {
    display: none !important;
  }

  p.myralis-landingblack-area4-card-text {
    text-align: left;
  }

  a.myralis-landinblack-contagem-comecou {
    font-size: 16px;
  }

  .myralis-landingblack-area7-text-area {
    width: 100% !important;
  }

  button.myralis-carousel-next {
    position: relative;
    margin-top: 0vw;
    /* height: 400px; */
    left: 80vw;
  }

  section.myralis-landingblack-area7 {
    padding: 24px !important;
  }

  .myralis-landingblack-area7-carditem {
    flex-direction: column;
  }

  .myralis-landingblack-area7-carditem {
    display: block;
    gap: 48px;
    width: 100%;
    justify-content: space-between;
  }


  /* Estrutura principal */
  .landing-black {
    height: 516vw;
  }

  .myralis-contador-area {
    height: 316vw;
  }

  .landing-black-friday .master-wrapper-content,
  .topic-page-body .master-wrapper-content {
    padding: 0;
  }

  /* Área do contador e formulário */
  .myralis-contador-area-interna {
    flex-direction: column;
    align-items: center;
  }

  section.myralis-landingblack-area1 {
    flex-direction: column;
    position: relative;
    width: 100%;
  }

  .myralis-landingblack-contador-subdiv {
    width: 100%;
    height: 90vw;
    font-size: 4vw;
    border-radius: 8px !important; /* Sobrescreve os estilos inline */
  }

  /* Título e subtítulo */
  .myralis-landingblack-titleprincipal-h1 {
    position: absolute;
    left: 24px;
    top: -14px;
    font-size: 9vw;
    line-height: normal;
    text-align: center;
    margin: 20px 1px;
    text-align: left;
    padding-right: 102px;
  }

  p.myralis-landingblack-subtitle-h2 {
    position: absolute;
    top: 20vw;
    left: 24px;
    font-size: 4vw;
    line-height: normal;
    text-align: left;
    margin: 15px 0;
    width: 85%;
  }

  /* Contador */
  .myralis-landingblack-contador {
    position: relative;
    left: 0;
    width: 92%;
    margin: 20px auto;
    bottom: 19vw;
    padding: 16px 12px;
    max-width: unset;
  }

  .countdown-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .countdown-box {
    min-width: 70px;
    padding: 8px;
  }

  /* Formulário */
  .myralis-landingblack-form-area {
    margin-top: 70px;
    padding: 20px 24px;
  }

  .myralis-landingblack-formarea-inputs {
    flex-direction: column;
    gap: 22px;
  }

  .myralis-landingblack-placeholder-inputtext {
    width: 100%;
  }

  /* Checkboxes de preferências */
  .checkbox-group.myralis-landingblack-options-area {
    flex-direction: column;
    gap: 0;
  }

  .myralis-landingblack-options-select {
    width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Parte 2 - Carrossel de produtos */
  .myralis-landingblack-part2 {
    flex-direction: column;
    margin-top: 30px;
    padding: 0;
  }

  .myralis-landingpage-carrousel-message {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 24px;
  }

  .myralis-landingpage-carrousel-product-area {
    width: 100%;
  }

  h2.myralis-landingpage-carrousel-message-title {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    padding: 10px 12px;
    width: 100%;
  }

  span.myralis-landingpage-carrousel-message-subtitle {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    padding: 10px 12px;
  }

  /* Área 3 - Seção branca */
  section.myralis-landingblack-area3 {
    padding: 82px 24px;
  }

  .myralis-landingblack-area3-white {
    flex-direction: column;
    padding: 23px;
    gap: 20px;
  }

    .myralis-landingblack-area3-white img {
      max-width: 100%;
      height: auto;
      order: 2;
    }

  .myralis-landingblack-area3-infos {
    gap: 22px;
  }

  span.myralis-landing-black-area3-text1 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    order: 1;
  }

  span.myralis-landing-black-area3-text2 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    order: 3;
    text-align: justify;
  }

  .myralis-landingpage-anchor-area3-btn {
    width: 100%;
    max-width: 250px;
    order: 3;
    font-size: 16px;
    font-family: 'Ubuntu';
  }

  /* Área 4 - Seção verde */
  .myralis-landingblack-area4-green {
    padding: 30px 15px;
    gap: 30px;
  }

  .myralis-landinglack-area4-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .myralis-landingblack-area4-cards {
    max-width: 295px;
    flex-direction: row;
    width: 100%;
    padding: 16px 10px;
  }

  .myralis-landingblack-bestconditions-title {
    font-size: 24px;
    line-height: 28px;
    width: 68%;
  }

  .myralis-landingblack-area4-titles {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  /* Área 5 - Números */
  section.myralis-landingblack-area5 {
    padding: 82px 24px;
    gap: 30px;
  }

  h2.myralis-landingblack-area5-title {
    font-size: 24px !important;
  }

  .myralis-landingblack-infos5-area-bignumbers {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .myralis-landingblack-infos5-cards {
    width: 200%;
    max-width: 300px;
    padding: 20px;
  }

  .myralis-landingblack-area5-title {
    font-size: 24px;
    line-height: 28px;
  }

  p.myralis-landingblack-info5-cards-title {
    font-size: 36px;
  }

  p.myralis-landingblack-info5-cards-subtitle {
    font-size: 20px;
  }

  /* Área 6 - Carrossel */
  .myralis-landingblack-area6 {
    flex-direction: column;
    padding: 6vw 5vw;
    gap: 0px;
  }

  h2.myralis-landingblack-area-title {
    font-size: 24px;
    line-height: 28px;
    text-align: left;
    width: 100%;
    margin-bottom: 22px;
  }

  .myralis-carousel-container {
    width: 100%;
  }

  .myralis-carousel-slide {
    min-width: 70%;
    margin: 0;
  }

  .myralis-landingblack-area6-cards {
    align-items: center;
    width: 90%;
  }

  p.myralis-landingblack-area6-cards-subtitle {
    font-size: 22px;
    line-height: 24px;
    text-align: left;
    width: 100%;
  }

  /* Ajustes para carrossel de produtos */
  .center-1 .nop-jcarousel.product-grid .slick-carousel {
    margin: 0;
  }

  .slick-carousel .item-box {
    width: 100% !important;
  }

  /* Ajustes para botões do carrossel */
  button.slick-prev.slick-arrow,
  button.slick-next.slick-arrow {
    width: 30px;
    height: 30px;
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {
  .countdown-container {
    gap: 17px;
  }

  .countdown-box {
    min-width: 66px;
    padding: 5px;
  }

  .countdown-value {
    font-size: 24px;
    height: 40px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .myralis-landingblack-formarea-title-1,
  p.myralis-landingblack-formarea-title-2 {
    font-size: 24px;
  }

  .myralis-landingblack-formarea-title {
    padding: 26px 37px;
    padding-bottom: 0;
  }

  p.myralis-landingblack-interesses-title {
    font-size: 16px;
    text-align: left;
  }

  label.checkbox-item {
    font-size: 14px;
  }

  .myralis-landingblack-btncadastrar {
    font-size: 14px;
  }

  p.myralis-landingblack-info5-cards-title {
    font-size: 32px;
  }

  p.myralis-landingblack-info5-cards-subtitle {
    font-size: 18px;
  }
}

section.myralis-landingblack-area7 {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 120px;
  align-self: stretch;
  background-color: black;
  padding: 94px 94px;
}

.myralis-landingblack-area7-carditem-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

h2.myralis-landingblack-area7-title {
  color: rgba(255, 255, 255, 0.80);
  font-family: Ubuntu;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

p.myralis-landingblack-area7-subtitle {
  color: rgba(255, 255, 255, 0.60);
  text-align: justify;
  font-family: Barlow;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.myralis-landingblack-defora-dessa-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

h2.myralis-landingblack-defora-dessa {
  color: #FFF;
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}




.myralis-landingblack-area7-carditem {
  display: flex;
  gap: 48px;
  width: 100%;
  justify-content: space-between;
}

.myralis-landingblack-area7-cards {
  display: flex;
  gap: 4vw;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: left;
}

h3.myralis-landingblack-area7-item1 {
  color: var(--Categorias-Dor, #E5386E);
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

h3.myralis-landingblack-area7-item2 {
  color: var(--Categorias-Endocrino, #FFB600);
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
  text-align: left;
}

h3.myralis-landingblack-area7-item3 {
  color: var(--Categorias-Gstrica, #ACE53C);
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

h3.myralis-landingblack-area7-item4 {
  color: var(--Categorias-Mental, #CA5FDD);
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 8px;
}

button.myralis-landingblack-defora-dessa-btn {
  display: flex;
  width: 250px;
  height: 40px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--Rebranding-Orange, #FF532A);
  font-weight: 700;
  font-family: 'Ubuntu';
  font-size: 16px;
}

p.myralis-landingblack-rodape-area-text {
  color: #FFF;
  font-family: Barlow;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  text-align: left;
}

.myralis-landingblack-rodape-area {
  display: flex;
  flex-direction: column;
}

.slick-carousel button {
  padding: 0px;
}

.myralis-landingblack-area7-text-area {
  width: 35vw;
}

.myralis-landingblack-formarea-inputs input {
  color: white;
  border-color: black;
}

.myralis-landingblack-btncadastrar:hover {
  color: white;
}

.landing-black div.product-ribbon {
  margin-top: 10px !important;
  margin-right: -3px !important;
}



@media (min-width: 1600px) {
  .myralis-landingblack-contador {
   
    left: 16vw !important;
  }

  .myralis-landingblack-titleprincipal-h1 {
    left: 18%;
    font-size: 1.7vw;
  }
  .myralis-landingblack-subtitle-h2 {
    left: 18% !important;
  }
  .countdown-box {
    min-width: 6vw !important;
  }

  .myralis-landingblack-contador {
    left: 17.5vw !important;
    max-width: 31vw;
  }
}

@media (min-width: 1370px)  {
  .myralis-landingblack-contador {
    bottom: 1vw;
  }

  .myralis-landingblack-contador {
    bottom: 3vw;
    width: 37vw;
    left: 11vw;
  }
}

@media (min-width: 1300px) {
  .myralis-landingblack-part2 {
    margin-top: 20vw;
    padding: 0px 24px;
  }

  .landing-black {
    height: 75vw;
    background-color: #006DFF;
  }
}

@media (min-width: 1600px) {
  .myralis-landingblack-part2 {
    margin-top: 12vw;
  }

  .landing-black {
    height: 63vw;
  }

  section.myralis-landingblack-area1 {
    margin-top: 40px;
  }
}

.countdown-separate {
  color: #FFF;
  text-align: center;
  font-family: Barlow;
  font-size: 38.886px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: -18px;
  margin-left: -20px;
  margin-top: 8px;
}

.myralis-landingblack-part2 .item-box .product-title, .item-box .title {
  height: 58px;
}

.myralis-landingblack-part2 a.myralis-short-item-name {
  height: 54px;
}

.myralis-landingblack-part2 .details {
  height: 215px !important;
}

/*.landing-black .jCarouselMainWrapper .slick-next, .jCarouselMainWrapper .slick-prev {
  top: 44% !important;
}*/

.input-error-message {
  color: #ff0000;
  font-size: 12px;
  margin-top: -24px;
  margin-bottom: -19px;
  display: none;
}

.input-error {
  border: 1px solid #ff0000 !important;
}

.landing-black ul.slick-dots {
  display: none !important;
}

.myralis-landingblack-area7-text-area p {
  font-size: 20px !important;
}

img.arrow-up-green {
  width: 30px;
  cursor: pointer;
}

.myralis-footer {
  padding-top: 0px;
  background-color: #fff;
}

.myralis-newsletter-footer.master-wrapper-content {
  display: none;
}

label#newsletter-email-error {
  display: none !important;
}

.footer.myralis-first-footer {
  display: none;
}

h2.myralis-landingblack-area5-title {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-family: Ubuntu;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

img#arrow-carrousel-greenarea {
  width: 70px;
  display: none;
}

.myralis-carousel-next {
  position: relative;
  right: -3vw;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 7vw;
}

.myralis-landingblack-area7-titles {
  gap: 10px;
  display: flex;
  flex-direction: column;
}


.black-friday .cookie-button {
  background-color: #B2F39F !important;
}

  .black-friday .cookie-button span {
    color: #002051 !important;
  }

.countdown-ended-message {
  color: var(--Rebranding-WhitePrimary, #FFF);
  text-align: center;
  font-family: Ubuntu;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.countdown-ended-subtext {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px; /* 141.667% */
}

#newsletter-nome:-webkit-autofill,
#newsletter-nome:-webkit-autofill:hover,
#newsletter-nome:-webkit-autofill:focus {
  border: 1px solid #292929; /* Cor da borda desejada */
  -webkit-text-fill-color: #fff; /* Cor do texto */
  -webkit-box-shadow: 0 0 0 1000px #292929 inset; /* Simula a cor de fundo */
  transition: background-color 5000s ease-in-out 0s;
}

  #newsletter-email:-webkit-autofill,
  #newsletter-email:-webkit-autofill:hover,
  #newsletter-email:-webkit-autofill:focus {
    border: 1px solid #292929; /* Cor da borda desejada */
    -webkit-text-fill-color: #fff; /* Cor do texto */
    -webkit-box-shadow: 0 0 0 1000px #292929 inset; /* Simula a cor de fundo */
    transition: background-color 5000s ease-in-out 0s;
  }

#newsletter-whatsapp:-webkit-autofill,
#newsletter-whatsapp:-webkit-autofill:hover,
#newsletter-whatsapp:-webkit-autofill:focus {
  border: 1px solid #292929; /* Cor da borda desejada */
  -webkit-text-fill-color: #fff; /* Cor do texto */
  -webkit-box-shadow: 0 0 0 1000px #292929 inset; /* Simula a cor de fundo */
  transition: background-color 5000s ease-in-out 0s;
}

label#newsletter-email-black-error {
  display: none !important;
}

.black_friday button.button-base.button-primary.transform-uppercase.product-box-add-to-cart-button span {
  color: white;
}

.black_friday button#eu-cookie-ok {
  background-color: #B2F39F !important;
}

  .black_friday button#eu-cookie-ok span {
    color: #002051 !important;
  }

.myralis-landingpage-carrousel-message-subtitle a {
  text-decoration: underline;
}
