:root {
  /* Degradê botões: #f9e60e … var(--btn-slide-2) … #f5ce10 / #f7e30d / #f5d110 + metade --btn-bg-solid */
  --btn-slide-2: #ffe600;
  
  --c-yellow1: #ffff00;
  --c-yellow2: #f1c800;
  --c-blue1: #0032a0;
  --c-green1: #1ad800;
  --c-bluelight1: #00baff;
  --c-bluedark1: #222d59;
  
  --c-black: #000000;
  --c-black2: #313131;
  --c-blackform: #6c757d;
  --c-white: #ffffff;
  --c-graydark: #666666;
  --c-gray: #f7f7f7;
  --c-gray2: #efeeed;
  --c-check: #1ad800;
  --c-error: #ffff00;
  --c-error2: #ff2525;
  
  /* Tipografia Rethink Sans (§2.2 RELATORIO-PERSONALIZACAO) */
  --font-sans: "Rethink Sans", system-ui, -apple-system, sans-serif;
}

body {
  padding-top: 75px;
  letter-spacing: 0;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-white);
  /* background: var(--c-blue1); */
  -webkit-font-smoothing: antialiased !important;
  appearance: none !important;
  text-rendering: optimizelegibility;
  background: var(--c-bluelight1);
  background: -webkit-linear-gradient(360deg, var(--c-bluelight1) 0%, var(--c-blue1) 60%);
  background: -moz-linear-gradient(360deg, var(--c-bluelight1) 0%, var(--c-blue1) 60%);
  background: linear-gradient(360deg, var(--c-bluelight1) 0%, var(--c-blue1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0082cc", endColorstr="#011689", GradientType=0);
}

@media (max-width: 991px) {
  body {
    padding-top: 70px!important;
  }
}

.body-index {
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
}

/* Evita FOUC */
body.preload {
  opacity: 1;
  transition: none;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Botões — Rethink Sans Bold (700) */
button,
.btn,
input[type="submit"],
input[type="button"],
a.button {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
}

strong {
  font-weight: 700;
  color: inherit !important;
}

b {
  font-weight: 700;
}

.footer .texto-legal {
  font-family: var(--font-sans);
  font-weight: 400;
}

.main .section:first-child {
  padding-top: 0px;
}

/* Ajuste posição vLibras */
/* div[vw].enabled {
top: 28% !important;
top: 35% !important;
right: inherit !important;
left: 0% !important;
}

[vw] [vw-access-button] {
right: inherit !important;
left: auto !important;
} */

/*Efeito para surgir os elementos*/
/* Estado padrão: conteúdo visível (sem dependência de JS) */
.scroll-fade {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

/* Quando o JS está pronto, ativamos as animações de entrada */
body.js-anim .scroll-fade {
  opacity: 0;
  transform: translateY(15px);
}

body.js-anim .scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade.carregando {
  filter: blur(6px);
  opacity: 0.3;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.container-xxl {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

img {
  max-width: 100%;
}

html {
  font-size: 62.5%;
  /*10px*/
}

@media (max-width: 991px) {
  html {
    font-size: 58%;
  }
}

/* Animação suave de pulsar para elementos do hero */
@keyframes pulsarSuave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
}

/* Animação pulsar suave com brilho para estrelas maiores */
@keyframes pulsarSuaveBrilho {
  0%, 100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(0.97);
    filter: saturate(1.3) hue-rotate(10deg);
  }
}

.efeitoPulsar {
  -webkit-animation-name: efeitoPulsar;
  animation-name: efeitoPulsar;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

@keyframes pulseIcon {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
  
  50% {
    -webkit-transform: scale(0.97) rotate(0deg);
    -ms-transform: scale(0.97) rotate(0deg);
    transform: scale(0.97) rotate(0deg);
  }
  
  100% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.pulseIcon {
  -webkit-animation-name: pulseIcon;
  animation-name: pulseIcon;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

@keyframes pulseIconDois {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
  
  50% {
    -webkit-transform: scale(0.9) rotate(0deg);
    -ms-transform: scale(0.9) rotate(0deg);
    transform: scale(0.9) rotate(0deg);
  }
  
  100% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.pulseIconDois {
  -webkit-animation-name: pulseIconDois;
  animation-name: pulseIconDois;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

@keyframes pulseBig {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
  
  50% {
    -webkit-transform: scale(0.92) rotate(0deg);
    -ms-transform: scale(0.92) rotate(0deg);
    transform: scale(0.92) rotate(0deg);
  }
  
  100% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.pulseBig {
  -webkit-animation-name: pulseBig;
  animation-name: pulseBig;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

@keyframes efeitoSobeDesce {
  0% {
    transform: translateY(0px);
  }
  
  50% {
    transform: translateY(-20px);
  }
  
  100% {
    transform: translateY(0px);
  }
}

.efeitoSobeDesce {
  animation-name: efeitoSobeDesce;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes efeitoSobeDesceDois {
  0% {
    transform: translateY(0px);
  }
  
  50% {
    transform: translateY(-40px);
  }
  
  100% {
    transform: translateY(0px);
  }
}

.efeitoSobeDesceDois {
  animation-name: efeitoSobeDesceDois;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes efeitoSobeDesceTres {
  0% {
    transform: translateY(0px);
  }
  
  50% {
    transform: translateY(-15px);
  }
  
  100% {
    transform: translateY(0px);
  }
}

.efeitoSobeDesceTres {
  animation-name: efeitoSobeDesceTres;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes pulseElement {
  0% {
    -webkit-transform: scale(1) rotate(1.2deg);
    -ms-transform: scale(1) rotate(1.2deg);
    transform: scale(1) rotate(1.2deg);
  }
  
  50% {
    -webkit-transform: scale(0.97) rotate(0deg);
    -ms-transform: scale(0.97) rotate(0deg);
    transform: scale(0.97) rotate(0deg);
  }
  
  100% {
    -webkit-transform: scale(1) rotate(1.2deg);
    -ms-transform: scale(1) rotate(1.2deg);
    transform: scale(1) rotate(1.2deg);
  }
}

.pulseElement {
  -webkit-animation-name: pulseElement;
  animation-name: pulseElement;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out !important;
}

@keyframes efeitoTremer {
  0% {
    transform: rotate(0deg);
  }
  
  20% {
    transform: rotate(5deg);
  }
  
  40% {
    transform: rotate(-5deg);
  }
  
  60% {
    transform: rotate(5deg);
  }
  
  80% {
    transform: rotate(-5deg);
  }
  
  100% {
    transform: rotate(0deg);
  }
}

.efeitoTremer {
  animation-name: efeitoTremer;
  /*animation: move 5s;*/
  animation-duration: 0.5s;
  animation-delay: 0s;
  /*animation-fill-mode: forwards;*/
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes efeitoTremerDois {
  0% {
    transform: rotate(0deg);
  }
  
  20% {
    transform: rotate(3deg);
  }
  
  40% {
    transform: rotate(-3deg);
  }
  
  60% {
    transform: rotate(3deg);
  }
  
  80% {
    transform: rotate(-3deg);
  }
  
  100% {
    transform: rotate(0deg);
  }
}

.efeitoTremerDois {
  animation-name: efeitoTremerDois;
  /*animation: move 5s;*/
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  /*animation-fill-mode: forwards;*/
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes efeitoBrilho {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  
  50% {
    transform: scale(1);
    opacity: 1;
  }
  
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.efeitoBrilho {
  animation-name: efeitoBrilho;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*====== Animação - Letras ======*/
@keyframes pulseOnce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

.pulseAgora {
  animation: pulse 0.7s ease-in-out forwards;
}

/* Entrada de cima para baixo */
@keyframes entradaDeCima {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*====== Animação - Logo da promoção ======*/
/*====== MÃO OK ======*/
/* Pulsar + Rotação leve */
@keyframes pulsarERotacionar {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.02) rotate(1.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
/* Classes de animação */
.entrada {
  animation: entradaDeCima 1s ease-out forwards;
}
.pulsarRotacionar {
  animation: pulsarERotacionar 2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes entradaDeCima {
  0% {
    opacity: 0;
    transform: translateY(-300px); /* <- Mudamos de -50px para -300px */
  }
  60% {
    opacity: 1;
    transform: translateY(20px); /* passa um pouco do ponto para dar "peso" */
  }
  80% {
    transform: translateY(-10px); /* leve subida de volta */
  }
  100% {
    transform: translateY(0);
  }
}
/*====== MÃO APONTANDO ======*/
@keyframes entradaDeBaixo {
  0% {
    opacity: 0;
    transform: translateY(300px); /* Começa bem abaixo */
  }
  60% {
    opacity: 1;
    transform: translateY(-20px); /* Passa um pouco do ponto */
  }
  80% {
    transform: translateY(10px); /* Pequena descida */
  }
  100% {
    transform: translateY(0);
  }
}
.apontandoEntrada {
  animation: entradaDeBaixo 1s ease-out forwards;
}
.apontandoPulsarRotacionar {
  animation: pulsarERotacionar 2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
/*====== MÃO CAIXA ======*/
@keyframes entradaDeCimaCaixa {
  0% {
    opacity: 0;
    transform: translateY(-300px);
  }
  60% {
    opacity: 1;
    transform: translateY(20px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulsarTremer {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(0.96) rotate(-0.5deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(0.96) rotate(0.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
/* Entrada dramática */
.entradaCaixa {
  animation: entradaDeCimaCaixa 1.2s ease-out forwards;
}
/* Efeito contínuo após entrada */
.pulsarTremer {
  animation: pulsarTremer 2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
/*====== BURACO + SELO ======*/
/* Estado inicial de todos os selos */
.animatePack .promocao,
.animatePack .logo,
.animatePack .opremio {
  opacity: 0;
  transform: scale(0.2) translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform;
}

/* Animação de surgimento do buraco */
@keyframes surgirDoBuraco {
  0% {
    opacity: 0;
    transform: scale(0.2) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}

/* Classe que ativa a animação */
.animatePack .surgindo-do-buraco {
  animation: surgirDoBuraco 1s ease-out forwards;
}

/* LINK */
a {
  color: var(--c-white);
  text-decoration: none;
}

a:hover {
  color: var(--c-white);
  text-decoration: none;
}

a.decoration-none {
  text-decoration: none !important;
}

/* TEXT */
p {
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 5px;
}

p.title {
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  font-weight: 800;
}

p.title.title_big {
  font-size: 3rem;
}

p.title.title_big2 {
  font-size: 3.5rem;
}

p.description_small {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  font-weight: 500;
}

.fontbig3 {
  font-size: 3rem;
}

.fontbig4 {
  font-size: 4rem;
}

p a {
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  p.title {
    font-size: 1.5rem;
  }
}

.tab-btn .btn {
  --btn-bg-solid: var(--c-white);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-blue1);
  padding: 1.1rem 2rem 1.2rem 2rem;
  border: 0;
  border-radius: 0.4rem;
  border: 0px solid var(--c-white) !important;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, border-color 0.3s ease;
}

.tab-btn .btn:focus:not(:disabled),
.tab-btn .btn:hover:not(:disabled) {
  color: var(--c-blue1) !important;
  background-position: 0 0;
  border: 0px solid var(--c-white) !important;
}

.tab-btn .btn.active {
  color: var(--c-white) !important;
  background: var(--c-yellow1) !important;
  background-image: none !important;
  border: 0px solid var(--c-yellow1) !important;
}

.tab-btn .btn.active:focus,
.tab-btn .btn.active:hover {
  color: var(--c-blue1) !important;
  background: var(--c-white) !important;
  background-image: none !important;
  border: 0px solid var(--c-white) !important;
}

@media (max-width: 991px) {
  .tab-btn .btn {
    width: 100%;
  }
}

/* FAIXA DE COOKIE */
/* FAIXA DE COOKIE */
.popup.cookies {
  position: fixed;
  z-index: 1052 !important;
}

.popup.cookies .cookies {
  position: fixed;
  left: calc(50% - 260px);
  bottom: 80px;
  border-radius: 0.5rem;
  max-width: 520px;
  transition: none;
  color: var(--c-white);
  padding: 0rem 2rem;
  background: var(--c-blue1);
}

.popup.cookies .cookies .buttons {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .popup.cookies .cookies {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }
}

.cookies .padding {
  max-width: 1340px;
  padding: 20px 0px;
}

.cookies .padding .title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-yellow1);
  margin-bottom: 10px;
  text-align: center;
}

.cookies .padding .description {
  margin: 0 0 0 0;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  color: var(--c-white);
}

@media (max-width: 991px) {
  .cookies .padding .description {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 0px 0 5px 0;
    text-align: center;
  }
}

.cookies a {
  color: var(--c-white);
  text-decoration: underline!important;
}

.cookies a:hover {
  color: var(--c-white);
  text-decoration: underline!important;
}

.cookies .padding .buttons-allow {
  text-align: center;
  margin-top: 10px !important;
}

.cookies .padding .buttons-allow .btn {
  --btn-bg-solid: var(--c-white);
  position: relative;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-blue1);
  font-size: 1.6rem;
  line-height: 1;
  padding: 1.5rem 3rem 1.5rem 3rem;
  border-radius: 5rem;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.cookies .padding .buttons-allow .btn.permitir-cookies,
.cookies .padding .buttons-allow .btn:focus,
.cookies .padding .buttons-allow .btn:hover,
.cookies .padding .buttons-allow .btn.active {
  color: var(--c-blue1);
  background-position: 0 0;
}

.cookies .padding .buttons-allow {
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .cookies .padding .buttons-allow {
    margin-top: 0px !important;
  }
  
  .cookies .padding .buttons-allow .btn {
    font-size: 1.9rem;
    /*padding: 10px 20px 13px 20px;*/
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
  }
}

/* POPUP COOKIES */
#popup-cookiesgeral .modal-dialog {
  max-width: 1000px;
}

#popup-cookiesgeral .center-popup .content {
  max-width: 850px;
}

#popup-cookiesgeral #popup-cookiesgeral-details {
  margin: 2rem 0rem 2rem 0rem;
  border-top: 1px solid #00000030;
  border-bottom: 1px solid #00000030;
  padding: 3rem 0rem 3rem 0rem;
}
@media (max-width: 991px) {
  #popup-cookiesgeral #popup-cookiesgeral-details {
    padding: 3rem 0rem 0rem 0rem;
  }
}

#popup-cookiesgeral.ocultar {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: animateCookies;
  animation-name: animateCookies;
}

#popup-cookiesgeral .padding {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px 1.5rem;
  margin: 0 auto;
}

#popup-cookiesgeral .title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .title {
    margin: 0 0 5px 0;
  }
}

#popup-cookiesgeral .description {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .title {
    font-size: 14px;
  }
  
  #popup-cookiesgeral .description {
    font-size: 14px;
    line-height: 120%;
    margin: 20px 0 10px 0;
    text-align: center;
  }
}

#popup-cookiesgeral .buttons-allow {
  margin: 0 0 10px 0;
  text-align: right;
}

#popup-cookiesgeral .buttons-allow .btn {
  --btn-bg-solid: #00cc00;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 5px 10px;
  color: var(--c-white);
  display: inline-block;
  font-weight: 500;
  text-align: center;
  user-select: none;
  border: 1px solid transparent;
  vertical-align: middle;
  white-space: inherit;
  cursor: pointer;
  border-radius: 4px;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

#popup-cookiesgeral .buttons-allow .btn:hover,
#popup-cookiesgeral .buttons-allow .btn:focus-visible {
  background-position: 0 0;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .buttons-allow .btn {
    font-size: 12px;
    padding: 2px 8px;
  }
}

#popup-cookiesgeral .options {
  margin: 0 0 10px 0;
  border: 1px solid #ced4da;
  border-radius: 5px;
  height: 45px;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .options {
    height: auto;
  }
}

#popup-cookiesgeral .options .options-checkbox {
  padding: 10px;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .options .options-checkbox {
    padding-right: 0;
  }
}

#popup-cookiesgeral .options .custom-checkbox {
  display: inline-block;
  margin: 0 10px 0 0;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .options .custom-checkbox {
    margin: 0 5px 0 0;
  }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-label {
  padding: 0 0 0 5px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .options .custom-checkbox .custom-control-label {
    padding: 0 0 0 0;
    font-size: 11px;
  }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-label::before {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .options .custom-checkbox .custom-control-label::before {
    width: 1.7rem;
    height: 1.7rem;
    line-height: 1.7rem;
  }
}

#popup-cookiesgeral
.options
.custom-checkbox
.custom-control-input:checked
~ .custom-control-label::after {
  color: #00cc00;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

@media (max-width: 991px) {
  #popup-cookiesgeral
  .options
  .custom-checkbox
  .custom-control-input:checked
  ~ .custom-control-label::after {
    width: 1.7rem;
    height: 1.7rem;
    line-height: 1.7rem;
  }
}

#popup-cookiesgeral
.options
.custom-checkbox
.custom-control-input:disabled:checked
~ .custom-control-label::before {
  background: #e2e2e2;
}

#popup-cookiesgeral
.options
.custom-control-input:disabled
~ .custom-control-label {
  color: #343a40;
}

#popup-cookiesgeral .btn-mostrar-detalhes {
  position: relative;
  height: 43px;
  line-height: 30px;
  font-size: 13px;
  color: #343a40;
  border-radius: 0;
  border-left: 1px solid #ced4da;
  background: #f6f6f9;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 30px;
  text-transform: none;
  padding: 0.375rem 0.75rem;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .btn-mostrar-detalhes {
    height: 100%;
    line-height: 1.5rem;
    font-size: 11px;
  }
}

#popup-cookiesgeral .btn-mostrar-detalhes i {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}

#popup-cookiesgeral .btn-mostrar-detalhes.collapsed i {
  transform: rotate(180deg);
}

#popup-cookiesgeral #cookies-details {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
  width: 100%;
  font-size: 14px;
  /*overflow: auto;*/
}

#popup-cookiesgeral .tabs-vertical {
  padding-top: 20px;
  border: 1px solid #e4e4ea;
  border-top: 0;
}

#popup-cookiesgeral .content-cookies {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 20px;
  border: 1px solid #e4e4ea;
  border-top: 0;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .content-cookies {
    font-size: 11px;
    line-height: 120%;
    padding: 10px;
  }
}

#popup-cookiesgeral .content-cookies a {
  color: #00cc00;
  text-decoration: underline;
}

#popup-cookiesgeral .content-cookies a:hover {
  text-decoration: none;
}

#popup-cookiesgeral .tab-content {
  width: 100%;
  text-align: left;
}

#popup-cookiesgeral .tab-pane .description {
  padding: 10px 1.5rem;
  color: var(--c-white);
}

@media (max-width: 991px) {
  #popup-cookiesgeral .tab-pane .description {
    padding: 10px 0;
  }
}

#popup-cookiesgeral .nav-tabs .nav-link {
  font-size: 14px !important;
  font-family: var(--font-sans);
  font-weight: 500;
  color: #343a40 !important;
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
  background-color: var(--c-white);
  text-transform: none !important;
  border: 1px solid transparent;
  border-bottom: 1px solid #e4e4ea !important;
}

#popup-cookiesgeral.nav-tabs .nav-link:focus,
#popup-cookiesgeral .nav-tabs .nav-link:hover {
  /*border-color: inherit;*/
  border: 1px solid transparent !important;
  border-bottom: 1px solid #e4e4ea !important;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .nav-tabs .nav-link {
    font-size: 12px;
  }
}

#popup-cookiesgeral .nav-tabs .nav-item.show .nav-link,
#popup-cookiesgeral .nav-tabs .nav-link.active {
  font-family: var(--font-sans);
  font-weight: 700;
  border: 1px solid transparent !important;
  border-color: #dee2e6 #dee2e6 #fff !important;
}

#popup-cookiesgeral .nav-tabs .nav-item {
  margin-bottom: -1px;
}

#popup-cookiesgeral .nav-pills {
  gap: 1.5rem;
}

#popup-cookiesgeral .nav-pills .nav-link {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-blue1);
  background: var(--c-white);
  padding: 1.1rem 2rem 1.2rem 2rem;
  transition: all 0.3s ease-in-out;
  border: 0;
  border-radius: 0.4rem;
  border: 1px solid var(--c-white) !important;
}

#popup-cookiesgeral .nav-pills .nav-link:hover {
  /*background-color: var(--c-blue1) !important;*/
}

#popup-cookiesgeral .nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
#popup-cookiesgeral .nav-pills .nav-link.active,
.nav-pills .show > .nav-link:hover {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-white);
  background: var(--c-blue1);
  padding: 1.1rem 2rem 1.2rem 2rem;
  transition: all 0.3s ease-in-out;
  border: 0;
  border-radius: 0.4rem;
  border: 1px solid var(--c-blue1) !important;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .nav-pills .nav-link {
    font-size: 1.6rem;
    padding: 1.1rem 2rem 1.2rem 2rem;
  }
  
  #popup-cookiesgeral .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link,
  #popup-cookiesgeral .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link:hover {
    font-size: 1.6rem;
  }
}

#popup-cookiesgeral .title-cookies {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  margin: 0 0 10px 0;
  color: var(--c-white);
}

@media (max-width: 991px) {
  #popup-cookiesgeral .title-cookies {
    text-align: center;
  }
}

#popup-cookiesgeral .subtitle-cookies {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  color: #c12d22;
  /*text-transform: uppercase;*/
  margin: 10px 0;
}

#popup-cookiesgeral .controle {
  float: right;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .controle {
    display: inline-block;
    float: none;
    margin: 10px 0 0 0;
  }
}

#popup-cookiesgeral .custom-switch {
  padding-right: 2.25rem;
  padding-left: 0;
}

#popup-cookiesgeral .custom-switch .custom-control-label {
  position: relative;
  padding-left: 0;
  font-size: 13px;
  line-height: 200%;
  color: var(--c-white);
}

#popup-cookiesgeral .custom-switch .custom-control-label::before {
  left: inherit;
  right: -2.25rem;
  border-color: var(--c-blue1);
}

#popup-cookiesgeral
.custom-switch
.custom-control-input:checked
~ .custom-control-label::before {
  background: var(--c-white) !important;
  border-color: var(--c-white) !important;
}

#popup-cookiesgeral .custom-switch .custom-control-label::after {
  right: calc(-1.55rem + 2px);
  left: inherit;
  background: var(--c-blue1);
  border-color: var(--c-blue1);
}

#popup-cookiesgeral
.custom-switch
.custom-control-input:checked
~ .custom-control-label::after {
  transform: translateX(0.65rem);
  background: var(--c-blue1);
  border-color: var(--c-white);
  z-index: 1;
}

#popup-cookiesgeral .accordion .card {
  border-color: #cccccc;
  border-radius: 0px;
}

#popup-cookiesgeral .accordion .card-header {
  padding: 0;
  /*border-color: transparent;*/
}

#popup-cookiesgeral .accordion .card-body {
  color: #000000;
}

#popup-cookiesgeral .accordion .btn {
  color: #c12d22 !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px 10px !important;
  background: #ffffff !important;
  box-shadow: none;
}

#popup-cookiesgeral .accordion .btn:hover {
  background-color: #e3e3e3 !important;
  transform: scale(1);
}

#popup-cookiesgeral .accordion .btn:focus,
#popup-cookiesgeral .accordion .btn:active {
  color: var(--c-white);
  background-color: #000000 !important;
  transform: scale(1);
}

#popup-cookiesgeral .accordion .btn:before {
  animation-name: none;
  background-color: transparent;
}

#popup-cookiesgeral .accordion .btn:hover:before {
  opacity: 0;
}

@-webkit-keyframes animateCookies {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}

@keyframes animateCookies {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    -ms-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}

.animateCookies {
  -webkit-animation-name: animateCookies;
  animation-name: animateCookies;
}

/* MODAL GERAL */
.modal {
  background: rgb(31 31 31 / 40%);
}

.modal  .float-placeholder {
  top: 5px;
}

.popup {
  z-index: 999999999;
}

.modal-body {
  margin: auto !important;
  flex: inherit;
  width: 100%;
  text-align: center;
  padding: 0px;
  z-index: 1;
}

.modal-adjust {
  max-width: 600px;
}

.modal-content {
  border-radius: 1.5rem;
  min-height: 300px;
  min-width: 600px;
  padding: 5rem 3rem;
  overflow: inherit;
  border: none;
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
}

.modal .content {
  padding: 30px 30px 80px 30px;
}

.modal-header,
.modal-footer {
  border: none;
}

.modal .btn-fechar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  border: 0;
  padding: 0;
  color: var(--c-white);
  background-color: transparent;
  position: absolute;
  top: 45px;
  right: 45px;
  transform: translateX(100%) translateY(-100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal .btn-fechar:hover {
  color: var(--c-white);
  background-color: transparent;
  transform: translateX(100%) translateY(-100%) scale(1.2);
}
.modal .btn-fechar i {
  color: var(--c-bluelight1);
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 2px;
  transition: all 0.3s ease-in-out;
}

.modal .titulo {
  color: var(--c-yellow1);
  padding: 0px;
  margin-bottom: 1rem;
  text-transform: none;
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal .titulo span {
  color: var(--c-white);
}

.modal .descricao {
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 400;
  color: var(--c-white);
}

.modal .descricao a {
  color: var(--c-white);
  text-decoration: underline;
}

.modal .descricao a:hover {
  color: var(--c-white);
  text-decoration: none;
}

.modal-dialog {
  max-width: 550px;
}

.modal .custom-control-label {
  font-weight: 400;
  line-height: 1.3;
}

.modal [class*="vld-"] + .error {
  color: var(--c-error);
}

.modal .eye [data-togglepassword] {
  top: 23px;
}

@media (max-width: 991px) {
  .modal-content {
    min-height: inherit !important;
    min-width: inherit !important;
    border-radius: 10px !important;
  }
  
  .modal-content::before {
    min-height: inherit !important;
    min-width: inherit !important;
    border-radius: 10px !important;
  }
  
  .modal .titulo {
    font-size: 22px;
  }
  
  .modal .descricao {
    padding: 0px;
    text-align: center !important;
  }
  
  .modal-body .box {
    padding: 50px 20px;
    border-radius: 30px;
  }
  
  .modal-body .titulo-img img {
    width: 85%;
  }
  
  .modal .btn-fechar {
    margin: 0px 0px 0px 0px;
  }
}

/*MODAL MINHA CONTA*/
/*.modal.popup-minhaconta {
}*/

.modal.popup-minhaconta .modal-body {
  border: 0;
  padding: 0;
}

/*.modal.popup-minhaconta .modal-dialog {
}*/

.modal.popup-minhaconta .modal-content {
  padding: 50px 80px 50px 80px !important;
}

.modal.popup-minhaconta .modal-adjust {
  max-width: 550px;
}

.modal.popup-minhaconta .btn-minhaconta {
  --btn-bg-solid: var(--c-blue1);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 14px 25px 11px 25px;
  text-decoration: none;
  margin: 3px 0px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.modal.popup-minhaconta .btn-minhaconta:hover,
.modal.popup-minhaconta .btn-minhaconta:focus-visible {
  color: var(--c-white);
  background-position: 0 0;
}

.modal.popup-minhaconta .btn-minhaconta-sair {
  --btn-bg-solid: var(--c-blue1);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 14px 25px 11px 25px;
  text-decoration: none;
  border-radius: 100px;
  margin: 3px 0px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, transform 0.3s ease;
}

.modal.popup-minhaconta .btn-minhaconta-sair:hover,
.modal.popup-minhaconta .btn-minhaconta-sair:focus-visible {
  background-position: 0 0;
  color: var(--c-white);
  transform: scale(1.02);
}

.modal.popup-minhaconta .navbar-nav .nav-link {
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
}

.modal.popup-minhaconta .navbar-nav .nav-link:hover {
  color: #696969;
}

.modal.popup-minhaconta .logo-marca {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.modal.popup-minhaconta .logo-marca img {
  width: 100%;
  max-width: 100px;
}

@media (max-width: 991px) {
  .modal.popup-minhaconta .btn-minhaconta {
    font-size: 20px;
    line-height: 20px;
  }
  
  .modal.popup-minhaconta .modal-content {
    padding: 40px 40px !important;
  }
}

/*MODAL - LATERAL - CONTATO*/
.modal.popup-contato .modal-content {
  border-radius: 0rem;
  background-color: var(--c-blue1);
  box-shadow: 0 0 50px var(--c-blue1);
}

.modal.popup-contato .titulo {
  /*color: var(--c-blue1);*/
}

.modal.popup-contato .descricao,
.modal.popup-contato .descricao a,
.modal.popup-contato .descricao a:hover {
  color: var(--c-white);
}

.modal.popup-contato.popup-contato {
  padding-right: 0px !important;
}

.modal.popup-contato .modal-dialog-centered {
  display: flex;
  align-items: stretch;
  float: right;
  /**/
  height: 100vh;
  margin: 0px;
}

.modal.popup-contato#popup-contato .float-placeholder {
  display: none;
}

.modal.popup-contato .custom-control-label {
  color: var(--c-white);
}

.modal.popup-contato .custom-control-label a {
  color: var(--c-white);
}

.modal.popup-contato .custom-control-label a:hover {
  color: var(--c-white);
}

.modal.popup-contato label#AceitePolitica-error {
  color: var(--c-blue1) !important;
  padding-left: 2rem;
}

.modal.popup-contato .btn-fechar i,
.modal.popup-contato .btn-fechar i:hover {
  color: var(--c-white);
}

.modal.popup-contato
.custom-control-input:checked
~ .custom-control-label::before {
  color: var(--c-black);
  border-color: var(--c-white) !important;
  background: var(--c-white) !important;
}

.modal.popup-contato .custom-checkbox .custom-control-label::before {
  background: var(--c-white);
  color: var(--c-white);
  border-color: var(--c-white);
}

/*MODAL - ESQUECI SENHA*/
.modal.popup-esquecisenha .float-placeholder {
  display: none;
}

/* LOADER */
#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999999999 !important;
}

#loader > div {
  padding: 40px;
  background: var(--c-yellow1);
  color: var(--c-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  /*text-transform: uppercase;*/
  font-size: 1.7rem;
  line-height: 120%;
}

#loader span {
  font-weight: 700;
  color: var(--c-white);
}

#loader i {
  font-size: 25px;
  margin-bottom: 1rem;
  color: var(--c-white);
}

.grecaptcha-badge {
  display: none;
}

/* Voltar para o topo */
#back-to-top {
  position: fixed;
  display: none;
  bottom: 15px;
  right: 15px;
  z-index: 99999999 !important;
  background: var(--c-white);
  border-radius: 100%;
  cursor: pointer;
  height: 60px;
  width: 60px;
  -webkit-box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  opacity: 0.8;
  opacity: 1;
  border: 5px solid var(--c-white);
  transition: all 0.5s ease-in-out;
}

#back-to-top::before {
  content: "\f077";
  font-family: "FontAwesome", Arial, sans-serif;
  color: var(--c-blue1);
  font-size: 20px;
  line-height: 37px;
  position: relative;
  top: 8px;
  left: 15px;
  opacity: 1;
  /* display: none; */
  transition: all 0.5s ease-in-out;
}

#back-to-top:hover {
  transform: scale(1.1);
  color: var(--c-blue1);
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

body.scrolled #back-to-top {
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #back-to-top {
    right: 10px;
  }
}

/* Compartilhar no WhatsApp */
#back-to-top2 {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 15px;
  z-index: 99999999 !important;
  background: #25d366;
  border-radius: 100%;
  cursor: pointer;
  height: 60px;
  width: 60px;
  -webkit-box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  opacity: 0.8;
  opacity: 1;
  border: 5px solid #25d366;
  transition: all 0.5s ease-in-out;
}

#back-to-top2::before {
  content: "\f232";
  font-family: "FontAwesome", Arial, sans-serif;
  color: #ffffff;
  font-size: 35px;
  line-height: 35px;
  position: relative;
  top: 7px;
  left: 10px;
  opacity: 1;
  /*display: none;*/
  transition: all 0.5s ease-in-out;
}

#back-to-top2:hover {
  transform: scale(1.1);
  color: #ffffff;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

body.scrolled #back-to-top2 {
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #back-to-top2 {
    right: 10px;
  }
}

/* Cta Participe */
.barra-participe {
  position: fixed;
  width: 250px;
  z-index: 10;
  bottom: 15px;
  left: 15px;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

.barra-participe .btn {
  --btn-bg-solid: #aa063a;
  padding: 2.1rem 3rem 2rem 3rem;
  font-size: 1.8rem;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  border: 0!important;
}

.barra-participe .btn.btn-white {
  border: 0!important;
}
.barra-participe .btn.btn-white:focus svg path,
.barra-participe .btn.btn-white:hover svg path,
.barra-participe .btn.btn-white.active svg path {
  stroke: var(--c-gold1)!important;
  fill: var(--c-gold1)!important;
}

.barra-participe .btn.btn-white:focus,
.barra-participe .btn.btn-white:hover,
.barra-participe .btn.btn-white.active {
  border: 0 !important;
  transition: all 0.3s ease-in-out;
  transform: scale(1.1);
  border: 0!important;
}

@media (max-width: 991px) {
  .barra-participe {
    text-align: center;
    right: inherit;
    left: inherit;
  }
}

.barra-participe .btn:hover {
  color: var(--c-yellow1);
  background-position: 0 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease !important;
}

/* Botão CTA */
.ctaFlutuante {
  text-align: left;
  margin: 0;
  font-family: var(--font-sans);
}

.btnFlutuante {
  --btn-bg-solid: var(--c-white);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  color: var(--c-blue1);
  border: none;
  border-radius: 0.4rem;
  padding: 1.2rem 2.5rem 1.2rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, box-shadow 0.3s ease;
  align-content: center;
  align-items: center;
  height: 50px;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
}

.btnFlutuante p {
  position: relative;
  z-index: 1;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  margin-bottom: inherit;
  color: var(--c-blue1);
  top: 1px;
  text-transform: uppercase;
}

.btnFlutuante:hover,
.btnFlutuante:focus-visible {
  background-position: 0 0;
  color: var(--c-blue1);
}

.btnFlutuante:hover p,
.btnFlutuante:focus-visible p {
  color: var(--c-blue1);
}

.btnFlutuante i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  background: var(--c-blue1) !important;
  color: var(--c-white) !important;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: moveIconRight 1s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 5px;
}

@keyframes moveIconRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.btnFlutuante:hover i {
  background: var(--c-blue1) !important;
  color: var(--c-white) !important;
  animation: moveIconRightHover .5s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes moveIconRightHover {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* Responsividade */
@media (max-width: 991px) {
  
  .btnFlutuante {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    left: 1.5rem;
  }
}

@media (max-width: 575px) {  
  .ctaFlutuante {
    margin-top: 4rem;
  }
}

/* SCROLL */
::-webkit-scrollbar {
  width: 7px;
  height: 11.5rem;
  border-radius: 5rem;
}

::-webkit-scrollbar-track {
  background: var(--c-white);
  border-radius: 5rem;
}

::-webkit-scrollbar-thumb {
  background: var(--c-yellow1);
  border-radius: 5rem;
}

.section.rtp ::-webkit-scrollbar-thumb {
  background: var(--c-white);
  border-radius: 5rem;
}

.section.ganhadores ::-webkit-scrollbar-thumb {
  background: var(--c-white);
  border-radius: 5rem;
}

.scroll-container {
  border: none;
  margin: 20px 0;
  max-height: 307px;
  overflow-y: scroll;
}

@media (max-width: 991px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 6px;
  }
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--c-black) !important;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--c-black) !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--c-black) !important;
}

/* Geral  */
strong,
.strong {
  font-weight: 700;
}

.text-regular {
  font-weight: 400;
}

.text-uppercase {
  text-transform: uppercase;
}

hr {
  border-color: var(--c-black);
}

hr.divider {
  border-color: #ffffff70;
}

/* Text colors - cores atuais + compatibilidade */
.text-red1 { color: var(--c-blue1) !important; }
.text-red2 { color: var(--c-blue1) !important; }
.text-reddark { color: var(--c-yellow1) !important; }
.text-yellow1 { color: var(--c-yellow1) !important; }
.text-yellow1 { color: var(--c-yellow1) !important; }
.text-yellow1 { color: var(--c-yellow1) !important; }
.text-green1 { color: var(--c-green1) !important; }
.text-blue1 { color: var(--c-blue1) !important; }
.text-bluelight1 { color: var(--c-bluelight1) !important; }
.text-blue2 { color: var(--c-blue1) !important; }
.text-blue3 { color: var(--c-blue1) !important; }
.text-bluedark1 { color: var(--c-bluedark1) !important; }
.text-wine { color: var(--c-yellow1) !important; }
.text-black { color: var(--c-black) !important; }
.text-black2 { color: var(--c-black2) !important; }
.text-white { color: var(--c-white) !important; }
.text-graydark { color: var(--c-graydark) !important; }
.text-gray { color: var(--c-gray) !important; }
.text-gray2 { color: var(--c-gray2) !important; }
.text-check { color: var(--c-check) !important; }
.text-error { color: var(--c-error) !important; }
.text-error2 { color: var(--c-error2) !important; }

/* Backgrounds */
.bkg-red1 { background: var(--c-blue1) !important; }
.bkg-red2 { background: var(--c-blue1) !important; }
.bkg-reddark { background: var(--c-yellow1) !important; }
.bkg-yellow1 { background: var(--c-yellow1) !important; }
.bkg-yellow1 { background: var(--c-yellow1) !important; }
.bkg-yellow1 { background: var(--c-yellow1) !important; }
/* Alias sem sufixo (tabs / destaques) */
.bkg-yellow { background: var(--c-yellow1) !important; }
.bkg-blue1 { background: var(--c-blue1) !important; }
.bkg-blue2 { background: var(--c-blue1) !important; }
.bkg-blue3 { background: var(--c-blue1) !important; }
.bkg-bluedark1 { background: var(--c-bluedark1) !important; }
.bkg-wine { background: var(--c-yellow1) !important; }
.bkg-black { background: var(--c-black) !important; }
.bkg-black2 { background: var(--c-black2) !important; }
.bkg-white { background: var(--c-white) !important; }
.bkg-graydark { background: var(--c-graydark) !important; }
.bkg-gray { background: var(--c-gray) !important; }
.bkg-gray2 { background: var(--c-gray2) !important; }
.bkg-check { background: var(--c-check) !important; }
.bkg-error { background: var(--c-error) !important; }
.bkg-error2 { background: var(--c-error2) !important; }

/* BKG - Blue Gradient Radial */
.bkg-blue-gradient-radial {
  background: #05478E;
  background: radial-gradient(circle, rgba(5, 71, 142, 1) 0%, rgba(34, 45, 89, 1) 100%);
}
/* BKG - Blue Gradient Linear */
.bkg-blue-gradient-linear {
  background: #05478E;
  background: -webkit-linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  background: -moz-linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  background: linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#05478E", endColorstr="#012169", GradientType=0);
}
/* BKG - Yellow Gradient Linear */
.bkg-yellow-gradient-linear {
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
}

/* Divisória */
.divisoria {
  position: relative;
}

.divisoria:before {
  position: absolute;
  z-index: 1;
  right: 0%;
  top: 0px;
  content: "";
  width: 1px;
  height: 100%;
  border: 1px solid var(--c-blue1);
}

@media (max-width: 991px) {
  .divisoria:before {
    left: 29%;
  }
}

/* Alinhamento */
.align-vertical {
  display: table;
  width: 100%;
  height: 100%;
}

.align-vertical .align-element {
  display: table-cell;
  vertical-align: middle;
}

/* GENERAL */
.main {
  position: relative;
  overflow-x: hidden;
}

.main.index {
  background: radial-gradient(circle, rgba(5, 71, 142, 1) 0%, rgba(34, 45, 89, 1) 100%);
}

.main .section {
  position: relative;
}

.main .section .padding {
  padding: 7rem 3rem 10rem 3rem;
  max-width: 1366px;
  margin: auto;
}

.main .section .header-section {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem !important;
}

.main .section .header-section h2 {
  position: relative;
  text-align: center;
  font-size: 3rem;
  color: var(--c-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0px;
}

.main .section .header-section h2 span {
  background: linear-gradient(to right, var(--c-yellow1) 0%, var(--c-yellow2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-right: 2px;
}

.main .section .header-section h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0rem;
  text-align: center;
  color: var(--c-white);
}

.main .section .descricao {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-white);
  font-size: 17px;
  line-height: 120%;
}

.main .section .descricao a {
  text-decoration: underline;
  color: var(--c-white);
}

.main .section .descricao a:hover {
  text-decoration: none;
  color: var(--c-white);
}

.main .section .descricao.small {
  font-size: 1.5rem;
  line-height: 20px;
}

@media (max-width: 991px) {
  .main .section .padding {
    padding: 7rem 3rem 7rem 3rem ;
  }
  
  .main .section .header-section {
    margin: 0 0 3rem 0;
  }
  
  .main .section .header-section h2 {
    font-size: 3rem;
  }
}

/* Background gradient amarelo nas seções (todas as páginas exceto index; desktop e mobile) */
body:not(.body-index) .main .section {
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
  background-attachment: scroll;
}
@media (max-width: 991px) {
  body:not(.body-index) .main .section {
    background: #1137F1;
    background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
    background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
    background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
  }
}
/*  */

/*====== Background geral ======*/
.bg-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media (max-width: 991px) {
  .bg-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: -1;
  }
}

.box-red {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-radius: 0.7rem;
  background: var(--c-blue1);
  color: white;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.box-red span {
  font-family: var(--font-sans);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.box-outline {
  display: flex;
  width: 100%;
  max-width: 248px;
  height: 40px;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--c-white);
  border: 2px solid var(--c-blue1);
  margin: 12px auto;
  white-space: nowrap;
  text-transform: uppercase;
}

.box-outline span {
  color: var(--c-blue1);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
}

.resgate-container .box {
  display: flex;
  width: 100%;
  max-width: 248px;
  height: 40px;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--c-blue1);
  margin: auto;
  margin-top: 12px;
  text-transform: uppercase;
}

.resgate-container .box span {
  color: #fff;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
}

.resgate-container .box.resgatado {
  background: var(--c-check);
}

.resgate-container .box.esgotado {
  background: #121212;
}

.resgate-container.esgotado .premio-container img,
.resgate-container.resgatado .premio-container img {
  filter: grayscale(100%);
}

.premio-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 250px;
}

@media (max-width: 991px) {
  .premio-container {
    height: auto;
  }
  
  .box-outline span {
    font-size: 1.8rem;
  }
}

/* ====== Seção: Home ====== */
.section.inicio {
  position: relative;
  /* background: transparent; */
  background: #05478E;
  background: radial-gradient(circle, rgba(5, 71, 142, 1) 0%, rgba(34, 45, 89, 1) 100%);
  max-width: 1920px;
  margin: auto;
  /* Altura mínima responsiva para estabilizar o hero em 1366x768 e 1920x1080 */
  min-height: clamp(640px, 100vh, 640px);
  /* min-height: clamp(640px, 100vh, 900px); */
}

/* Gradiente inferior: --c-bluelight1 → transparente; de baixo para cima, forte só nos ~20% inferiores */
.section.inicio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #02164e 0%, transparent 40%);
}

.section.inicio .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0rem;
  margin: auto;
}

.section.inicio .img-selo {
  position: absolute;
  z-index: 2;
  top: 4.2%;
  left: 5.3%;
  width: 39.5%;
  max-width: 750px;
  /* animation: movimentoSelo 3s ease-in-out infinite; */
}

@keyframes movimentoSelo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section.inicio .img-txtCompre {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 19%;
  width: 23.6%;
  max-width: 450px;
  /* animation: pulseSorteio 2s ease-in-out infinite; */
}

.section.inicio .img-sorteioSemanal {
  position: absolute;
  z-index: 2;
  top: 15%;
  right: 15%;
  width: 23.6%;
  max-width: 450px;
  /* animation: pulseSorteio 2s ease-in-out infinite; */
}

@keyframes pulseSorteio {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

/* Sorteio Final: base + farol piscando (0.3s-0.3s-0.3s-0.3s-0.3s-2s loop) */
@keyframes sorteio-final-farol-blink {
  0%, 8.6% { opacity: 1; }
  8.6%, 17.1% { opacity: 0; }
  17.1%, 25.7% { opacity: 1; }
  25.7%, 34.3% { opacity: 0; }
  34.3%, 42.9% { opacity: 1; }
  42.9%, 100% { opacity: 0; }
}

.section.inicio .sorteio-final-wrapper {
  position: absolute;
  z-index: 2;
  top: 39.6%;
  right: 0.2%;
  width: 52%;
  max-width: 990px;
}

.section.inicio .sorteio-final-wrapper .img-sorteioFinal-base {
  display: block;
  width: 100%;
  height: auto;
}

.section.inicio .sorteio-final-wrapper .img-sorteioFinal-farol {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sorteio-final-farol-blink 3.5s steps(1) infinite;
}

.section.inicio .img-txtSorteioFinal {
  position: absolute;
  z-index: 3;
  top: 48%;
  right: 29.4%;
  width: 23.6%;
  max-width: 450px;
  animation: pulseSorteio 1.5s ease-in-out infinite;
}

.section.inicio .img-cta {
  position: absolute;
  z-index: 2;
  top: 75%;
  left: 11%;
  width: 78.5%;
  max-width: 1500px;
}

/* Tremor em loop: mais rápido – ~2,5s animação + ~1,5s pausado (ciclo 4s) */
@keyframes shake-aceleradores-loop {
  0%, 62.5%, 100% { transform: translate(0, 0); }
  7.5%  { transform: translate(-2px, -1px); }
  15%   { transform: translate(2px, 1px); }
  22.5% { transform: translate(-1px, 2px); }
  30%   { transform: translate(1px, -2px); }
  37.5% { transform: translate(-2px, 0); }
  45%   { transform: translate(2px, 1px); }
  52.5% { transform: translate(-1px, -1px); }
  60%   { transform: translate(1px, 2px); }
}

.section.inicio .img-aceleradores {
  position: absolute;
  z-index: 2;
  top: 55%;
  right: 5%;
  width: 19%;
  max-width: 350px;
  animation: shake-aceleradores-loop 2s ease-in-out infinite;
  transition: filter 0.25s ease;
}

.section.inicio .img-aceleradores:hover {
  filter: brightness(1.05);
}

.section.inicio .img-base {
  position: absolute;
  z-index: 1;
  bottom: -1%;
  left: 0%;
  width: 100%;
  max-width: 1920px;
}

@media (max-width: 991px) {
  .section.inicio {
    /* Em mobile, evita “salto” mas respeita telas menores */
    min-height: clamp(520px, 100vh, 760px);
  }
  
  .section.inicio .img-selo {
    top: 3%;
    left: 12%;
    width: 75%;
    /* animation: movimentoSelo 5s ease-in-out infinite; */
  }

  .section.inicio .img-txtCompre {
    position: absolute;
    z-index: 2;
    top: 47%;
    right: 15%;
    width: 70%;
    max-width: 450px;
  }
  
  .section.inicio .img-sorteioSemanal {
    top: 56%;
    right: 55%;
    width: 40%;
  }

  .section.inicio .img-txtSorteioFinal {
    top: 58%;
    right: 2%;
    width: 50%;
  }
  
  .section.inicio .sorteio-final-wrapper {
    top: 71%;
    right: inherit;
    left: 2%;
    width: 100%;
  }

  .section.inicio .img-cta {
    top: 90%;
    left: 1%;
    width: 98%;
  }
}

@media (max-width: 991px) {
  .section.como-participar {
    /* Mantém a sensação de tela cheia sem exagerar em telas pequenas */
    min-height: clamp(520px, 100vh, 720px);
  }
  
  .section.premios {
    max-height: auto;
    /* Mantém a sensação de tela cheia sem exagerar em telas pequenas */
    min-height: clamp(520px, 100vh, 720px);
  }
}

/* Início - Confetes decorativos */

.section.inicio .img-confetes-1 {
  top: 1%;
  left: 31%;
  width: 15%;
  animation-delay: 0s;
  z-index: 5;
}

.section.inicio .img-confetes-2 {
  top: -1%;
  right: -1%;
  width: 15%;
  animation-delay: 1s;
  z-index: 5;
}

.section.inicio .img-confetes-3 {
  bottom: 1%;
  left: 42%;
  width: 15%;
  animation-delay: 0s;
  z-index: 5;
}

.section.inicio .img-confetes-4 {
  bottom: 10%;
  right: -2%;
  width: 13%;
  animation-delay: 0.5s;
  z-index: 5;
}

.section.inicio .img-confetes-5 {
  top: 50%;
  left: 2%;
  width: 12%;
  animation-delay: 0.8s;
  z-index: 5;
}

.section.inicio .img-confetes-6 {
  top: 35%;
  right: 2%;
  width: 12%;
  animation-delay: 1.5s;
  z-index: 5;
}

/* Box vermelho de fundo - acima do background, abaixo dos elementos */
.section.inicio .red-background-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: var(--c-blue1);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% -20%, 100% 0%, 100% 100%, 20% 100%);
}

/* Acima do ::before (gradiente); abaixo do box vermelho quando presente */
.section.inicio .kv-container {
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .section.inicio .red-background-box {
    width: 100%;
    height: 70%;
    top: auto;
    bottom: 0;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 50%, 100% 30%, 100% 100%, 0% 100%);
  }
}

/* ============================================
Vídeo no KV Container - Otimizado
============================================ */

.kv-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Otimizações de performance */
  will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Garantir que não mostre controles */
  pointer-events: none;
}

/* Ocultar controles nativos do navegador */
.kv-container video::-webkit-media-controls {
  display: none !important;
}

.kv-container video::-webkit-media-controls-enclosure {
  display: none !important;
}

.kv-container video::-webkit-media-controls-panel {
  display: none !important;
}

.kv-container video::-webkit-media-controls-play-button {
  display: none !important;
}

.kv-container video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Fallback de imagem dentro do vídeo */
.kv-container video img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Otimização para carregamento rápido */
.kv-container video[poster] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Vídeo como background para ganhadores vale brinde */
.section.ganhadores.ganhadores-valebrinde {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Vídeo posicionado como background */
.section.ganhadores.ganhadores-valebrinde .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.section.ganhadores.ganhadores-valebrinde .video-background.mobile {
  display: none;
}

/* Gradiente sobre o vídeo */
.section.ganhadores.ganhadores-valebrinde::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(13 33 144) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .section.ganhadores.ganhadores-valebrinde .video-background.desktop {
    display: none;
  }
  
  .section.ganhadores.ganhadores-valebrinde .video-background.mobile {
    display: block;
  }
}

/* Padding ajustado para position relative */
.section.ganhadores.ganhadores-valebrinde .padding {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.section.ganhadores.ganhadores-valebrinde .padding .header-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0rem auto!important;
  text-align: center;
}

.section.ganhadores.ganhadores-valebrinde .padding .content-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Boxes de prêmios - Ganhadores Vale Brinde */
.premio-box {
  position: relative;
  border-radius: 0.8rem;
  padding: 4rem 2rem 0rem 2rem;
  text-align: center;
  transition: transform 1s ease, box-shadow 0.3s ease;
  background: transparent;
  /* cursor: pointer; */
}

.premio-box:hover {
  transform: translateY(-20px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 1s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.premio-box .premio-box-image {
  transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.38, 0.88);
  z-index: 1;
}

.premio-box:hover .premio-box-image {
  transform: scale(1.2);
  transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.38, 0.88);
  z-index: 10;
}

.premio-box-number {
  position: relative;
  bottom: -20px;
  background: var(--c-blue1);
  padding: 1.5rem 1.5rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: transform 2s ease, box-shadow 0.3s ease;
  margin: auto;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-yellow1);
  text-transform: uppercase;
}

.premio-box:hover .premio-box-number {
  transform: translateY(0px) scale(1.2);
  transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.38, 0.88);
}

.premio-box-number .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-sans);
  color: white;
}

.premio-box-number .label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  text-transform: lowercase;
  color: white;
}

.premio-box-image {
  width: 100%;
  margin-top: 1rem;
}

.premio-box-image img {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: block;
  border-radius: 1rem;
  margin: auto;
}

@media (max-width: 991px) {
  .section.ganhadores.ganhadores-preselecao .padding-over-video {
    padding: 2rem 1.5rem;
  }
  
  .premio-box {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .premio-box-number .label {
    font-size: 0.9rem;
  }
}

/* ========================================
SECTION - RESGATE
======================================== */

/* Vídeo como background para resgate */
.section.resgate {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.section.resgate.fade-out {
  opacity: 0;
}

/* Vídeo posicionado como background */
.section.resgate .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.section.resgate .video-background.mobile {
  display: none;
}

/* Gradiente sobre o vídeo */
.section.resgate::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(13 33 144) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .section.resgate .video-background.desktop {
    display: none;
  }
  
  .section.resgate .video-background.mobile {
    display: block;
  }
}

/* Padding ajustado para position relative */
.section.resgate .padding {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.section.resgate .padding .header-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0rem auto!important;
  text-align: center;
}

.section.resgate .padding .content-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilos AjiPanda para seção de resgate */
.section.resgate .header-section .ajipanda-header {
  margin-bottom: 2rem;
}

.section.resgate .header-section .ajipanda-text {
  font-size: 4rem;
  line-height: 1;
  color: var(--c-white);
  text-align: center;
  font-weight: 700;
}
.section.resgate .header-section .ajipanda-text.fontsmall {
  font-size: 2rem;
  font-weight: 500;
}

.section.resgate .header-section .ajipanda-title {
  font-size: 3.2rem;
  color: var(--c-yellow1);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 991px) {
  .section.resgate .header-section .ajipanda-text {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .section.resgate .header-section .ajipanda-title {
    font-size: 2rem;
  }
  
  .section.resgate .padding {
    padding: 2rem 1.5rem;
  }
}

/* Box de total de pontos - Resgate */
.section.resgate .total-pontos-box {
  position: relative;
  text-align: center;
  margin-bottom: 0rem;
}

.section.resgate .total-pontos-number {
  background: var(--c-blue1);
  /* box-shadow: inset -1px 0px 60px 20px #ebdfcf; */
  padding: 1.5rem 2rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section.resgate .total-pontos-number:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section.resgate .total-pontos-number .number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-sans);
  color: var(--c-white);
  margin-bottom: 0;
  white-space: nowrap;
}

.section.resgate .total-pontos-number .label {
  font-size: 1.8rem;
  color: var(--c-yellow1);
  text-align: left;
  margin-bottom: 0;
  font-weight: 700;
  font-family: var(--font-sans);
  white-space: nowrap;
  position: relative;
  top: 1px;
}

@media (max-width: 991px) {
  .section.resgate .total-pontos-number {
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  
  .section.resgate .total-pontos-number .number {
    font-size: 3.5rem;
  }
  
  .section.resgate .total-pontos-number .label {
    font-size: 1.4rem;
  }
}

/* Botões de resgate - Estados */
.section.resgate .premio-box-number {
  position: relative;
  bottom: -20px;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 70%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: all 0.3s ease;
  margin: auto;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  gap: 0.8rem;
}

/* Estado: Resgatar (botão branco, fonte vermelha, com ícone pulsando) */
.section.resgate .premio-box-number.resgatar {
  background: var(--c-white);
  color: var(--c-blue1);
}

.section.resgate .premio-box-number.resgatar {
  background: var(--c-yellow1);
  color: var(--c-blue1);
  animation: pulse-resgatar-btn 1s infinite;
}

.section.resgate .premio-box-number.resgatar:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* Mantém efeito ao hover se desejar alguma diferença extra */
}

@keyframes pulse-resgatar-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 201, 81, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(238, 201, 81, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 201, 81, 0);
  }
}

.section.resgate .premio-box-number.resgatar i {
  font-size: 1.3rem;
  background: var(--c-blue1) !important;
  color: var(--c-white) !important;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: moveIconRightResgate 1s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes moveIconRightResgate {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.section.resgate .premio-box-number.resgatar:hover i {
  animation: moveIconRightResgateHover 0.5s ease-in-out infinite;
}

@keyframes moveIconRightResgateHover {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* Estado: Resgatado (botão branco, fonte vermelha, sem ícone, disabled) */
.section.resgate .premio-box-number.resgatado {
  background: var(--c-white);
  color: var(--c-blue1);
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* Estado: Indisponível (botão vermelho, fonte branca, sem ícone, escala de cinza, disabled) */
.section.resgate .premio-box-number.indisponivel {
  background: var(--c-blue1);
  color: var(--c-white);
  filter: grayscale(100%);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Efeito na imagem quando resgatado - opacity 0.7 */
.section.resgate .premio-box:has(.premio-box-number.resgatado) .premio-box-image img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Efeito na imagem quando indisponível - opacity e grayscale */
.section.resgate .premio-box:has(.premio-box-number.indisponivel) .premio-box-image img {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Fallback para navegadores que não suportam :has() - também funciona como método principal */
.section.resgate .premio-box.resgatado .premio-box-image img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.section.resgate .premio-box.indisponivel .premio-box-image img {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

@media (max-width: 991px) {
  .section.resgate .premio-box-number {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
    gap: 0.5rem;
  }
  
  .section.resgate .premio-box-number.resgatar i {
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
  }
}


/* ========================================
SECTION - RESGATE VÍDEO
======================================== */

/* Vídeo como background para resgate */
.section.resgate-video {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.section.resgate-video.show {
  opacity: 1;
}

/* Vídeo posicionado como background */
.section.resgate-video .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.section.resgate-video .video-background.mobile {
  display: none;
}

/* Containers de vídeo - ocultar todos por padrão */
.section.resgate-video .resgate-video-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section.resgate-video .resgate-video-container.active {
  display: block;
}

/* Classe hide */
.hide {
  display: none !important;
}

@media (max-width: 991px) {
  .section.resgate-video .video-background.desktop {
    display: none;
  }
  
  .section.resgate-video .video-background.mobile {
    display: block;
  }
}

@media (max-width: 991px) {
  .section.inicio .padding {
    padding: 0rem!important;
  }
}

/* ====== Seção: Como participar ====== */
/* Section Como Participar 2 */
.section.como-participar {
  position: relative;
  color: var(--c-white);
  overflow: hidden;
  margin-top: -5px;
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
  max-width: 1920px;
  margin: auto;
  /* Altura mínima para manter o conteúdo estável em 1366x768 e 1920x1080 */
  min-height: clamp(560px, 90vh, 710px);
}

.section.como-participar .header-section {
  margin-bottom: 4rem!important;
}

.section.como-participar .padding {
  max-width: 1920px;
  margin: auto;
}

.section.como-participar .img-acelerador {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.section.como-participar .img-acelerador:hover {
  animation: tremor-acelerador 0.4s ease-in-out infinite;
}

@keyframes tremor-acelerador {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-2px) translateY(-1px); }
  40% { transform: translateX(2px) translateY(1px); }
  60% { transform: translateX(-1px) translateY(2px); }
  80% { transform: translateX(1px) translateY(-2px); }
}

@media (max-width: 991px) {
  .section.como-participar .img-acelerador {
    width: 110%;
    max-width: 400px;
    margin: auto;
    left: -4%;
    position: relative;
    margin-top: 3rem;
  }
}

/* CTA Como participar: hover scale 1 → 0.98 + fade, 2s */
.section.como-participar .img-cta {
  display: block;
  width: 100%;
  height: auto;
  max-width: 550px;
  margin: 0 auto;
  transition: transform 1s ease;
}

.section.como-participar a:hover .img-cta {
  transform: scale(0.97);
  opacity: 1;
}

/* Background com imagem + gradientes para contraste */
/* .section.como-participar::before {
content: "";
position: absolute;
inset: 0 0 0 0;
background-image: url('../img/background/bkgComoParticipar_1920.webp');
background-size: cover;
background-position: center top;
opacity: 1;
pointer-events: none;
}

.section.como-participar::after {
content: "";
position: absolute;
inset: 0 0 0 0;
background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.30) 35%, rgba(0,0,0,.85) 100%);
pointer-events: none;
z-index: 0;
} */

/* ====== Seção: Como participar ====== */
.section.comoparticipar {
  position: relative;
  background: var(--c-white);
}

.section.comoparticipar .padding {
  position: relative;
  position: relative;
  width: 100%;
  padding: 5rem 3rem 5rem 3rem;
  margin: auto;
}

.section.comoparticipar .header-section h2 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-blue1);
}

/* Steps */
/* Carrossel de Passos */
#carouselPassos {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
}

.passo-slide-content {
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.passo-link {
  display: inline-block;
}

.passo-image {
  width: 100%;
  max-width: 500px;
  /* max-width: 1115px; */
  height: auto;
  display: block;
  transition: transform 1s ease;
}

/* Como participar: _415 até 1366px; _500 acima de 1366px */
.passo-image--500 {
  display: none;
}

.passo-image--415 {
  display: block;
}

@media (min-width: 1367px) {
  .passo-image--500 {
    display: block;
  }
  
  .passo-image--415 {
    display: none;
  }
}

.section.como-participar a:hover .passo-image {
  transform: scale(1);
}

/* Estilos para os painéis de animação ScrollTrigger na seção comoparticiparAlternativo */
.comoparticiparAlternativo .passo-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 20px;
}

.comoparticiparAlternativo .passo-panel:first-child {
  margin-top: -3rem;
}

.comoparticiparAlternativo .passo-panel .passo-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Indicadores do carrossel de passos - lado direito, vertical */
.passos-indicators {
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  flex-direction: column;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.passos-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #00000050 !important;
  background-color: #00000050 !important;
  border: none !important;
  opacity: 1 !important;
  margin: 8px 0 !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.passos-indicators button.active {
  width: 12px !important;
  height: 40px !important;
  border-radius: 6px !important;
  background: var(--c-yellow1) !important;
  background-color: var(--c-yellow1) !important;
  border: none !important;
  opacity: 1 !important;
}

/* Controles de navegação do carrossel de passos */
.passos-control {
  width: 50px;
  height: 50px;
  background: var(--c-white);
  border: 2px solid var(--c-blue1);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  left: 0;
  right: auto;
}

.passos-control:hover {
  background: var(--c-blue1);
  opacity: 1;
}

.passos-control:hover .carousel-control-prev-icon,
.passos-control:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.passos-control .carousel-control-prev-icon,
.passos-control .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  /* filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(7158%) hue-rotate(350deg) brightness(90%) contrast(95%); */
}

/* Seta anterior (prev) - acima do centro */
.passos-control.carousel-control-prev {
  top: calc(50% - -5px);
  transform: translateY(0);
  border: 2px solid var(--c-yellow1);
  background: var(--c-yellow1);
}

/* Seta próxima (next) - abaixo do centro */
.passos-control.carousel-control-next {
  top: calc(50% + -55px);
  transform: translateY(0);
  border: 2px solid var(--c-yellow1);
  background: var(--c-yellow1);
}

.passos-control.carousel-control-prev:hover,
.passos-control.carousel-control-next:hover {
  filter: brightness(1.2);
}

@media (max-width: 1200px) {
  .passos-control {
    left: 5px;
  }
  
  .passos-control.carousel-control-prev {
    top: calc(50% - 35px);
  }
  
  .passos-control.carousel-control-next {
    top: calc(50% + 35px);
  }
}

@media (max-width: 991px) {
  .section.comoparticipar .padding {
    padding: 7rem 3rem;
  }
  .section.comoparticipar .header-section h2::before {
    transform: translateY(-50%) translateX(0%);
  }
  .section.comoparticipar .header-section h2::after {
    transform: translateY(-50%) translateX(0%);
  }
  
  /* Reverter para configuração padrão no mobile - igual ao carrossel de prêmios */
  .passos-indicators {
    position: absolute;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
    flex-direction: row;
    margin-bottom: 0;
  }
  
  .passos-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #8B0000 !important;
    background-color: #8B0000 !important;
    margin: 0 8px !important;
  }
  
  .passos-indicators button.active {
    width: 40px !important;
    height: 12px !important;
    border-radius: 6px !important;
    background: var(--c-yellow1) !important;
    background-color: var(--c-yellow1) !important;
  }
  
  .passos-control {
    width: 40px;
    height: 40px;
    left: auto;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .passos-control.carousel-control-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .passos-control.carousel-control-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Section PRODUTOS */
.section.produtosparticipantes {
  position: relative;
  background: #f4f4f4;
  overflow: hidden;
  z-index: 2;
  box-shadow: -1px 0px 20px 0px rgb(0 0 0 / 40%);
}
.section.produtosparticipantes .padding {
  padding: 0rem!important;
  max-width: 1920px;
}

/* Section PRODUTOS LISTA */
.section.produtos.produtos_lista {
  position: relative;
}

.section.produtos.produtos_lista .padding {
  padding: 7rem 3rem 7rem 3rem;
}

.section.produtos.produtos_lista .header-section h2,
.section.produtos.produtos_lista .header-section p.title {
  color: var(--c-blue1);
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  background: #fafafa!important;
  min-height: 250px;
  margin-top: -1px;
}

/* FAQ — perguntas além da primeira página (5): ocultas até [+] ou até bater na busca */
.faq-hidden-paginacao {
  display: none !important;
}

/* Dúvidas — estrutura alinhada ao 002.26_MONSTER (col única + FAQ escuro); fontes/cores Limppano */
.section.duvidas.produtos_lista {
  position: relative;
}

/* FAQ — mesmo padrão de fundo do cadastro pessoal (#frm-cadastro-steps / circleform) */
.section.duvidas .faq-container--dark {
  background: #000096 !important;
  background: -webkit-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: -moz-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000096", endColorstr="#2525CF", GradientType=0);
  padding: 3rem;
  border-radius: 0.4rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.section.duvidas .faq-container--dark .border-faq {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 100%;
}

.section.duvidas .faq-container--dark .border-faq:last-of-type {
  border-bottom: none;
}

.section.duvidas .faq-container--dark .faq-item {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font-sans) !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
  padding: 1.6rem 3.5rem 1.6rem 0 !important;
}

@media (min-width: 992px) {
  .section.duvidas .faq-container--dark .faq-item {
    font-size: 1.8rem !important;
  }
}

.section.duvidas .faq-container--dark .faq-item .faq-numero {
  display: inline !important;
  color: var(--c-bluelight1) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-right: 0.5rem !important;
}

.section.duvidas .faq-container--dark .faq-item::before {
  content: "\f067";
  font-family: "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif !important;
  font-weight: 900;
  background: transparent !important;
  color: var(--c-bluelight1) !important;
  font-size: 1.6rem !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.section.duvidas .faq-container--dark .faq-item[aria-expanded="true"]::before {
  content: "\f068";
  color: var(--c-bluelight1) !important;
  transform: none !important;
}

.section.duvidas .faq-container--dark .faq-item[aria-expanded="true"],
.section.duvidas .faq-container--dark .faq-item:hover {
  color: var(--c-white) !important;
}

.section.duvidas .faq-container--dark .faq-item[aria-expanded="true"] .faq-numero,
.section.duvidas .faq-container--dark .faq-item:hover .faq-numero {
  color: var(--c-bluelight1) !important;
}

.section.duvidas .faq-container--dark .faq-item + div {
  background: transparent !important;
  padding: 0 0 1.8rem 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.section.duvidas .faq-container--dark .faq-item + div p,
.section.duvidas .faq-container--dark .faq-item + div span,
.section.duvidas .faq-container--dark .faq-item + div strong,
.section.duvidas .faq-container--dark .faq-item + div li {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--font-sans) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.section.duvidas .faq-container--dark .faq-item + div p a,
.section.duvidas .faq-container--dark .faq-item + div li a {
  color: var(--c-bluelight1) !important;
  text-decoration: underline;
}

.section.duvidas .faq-container--dark .faq-item + div p a:hover,
.section.duvidas .faq-container--dark .faq-item + div li a:hover {
  color: var(--c-yellow1) !important;
}

.section.duvidas .faq-container--dark .no-results {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  padding: 2rem 0.5rem;
  background: var(--c-blue1);
}

.section.duvidas .faq-container--dark .painel-busca {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .section.duvidas .faq-container--dark {
    padding: 2rem 1.5rem;
  }
}

/* Hero produtos — título + selo aceleradores */
.section.produtos.produtos_lista .produtos-hero-padding {
  padding: 5rem 3rem 2rem 3rem;
}

.section.produtos.produtos_lista .padding-produtos {
  text-align: center;
  margin-bottom: 0;
}

.section.produtos.produtos_lista .img-pack {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.section.produtos.produtos_lista .img-selo-aceleradores {
  max-width: 850px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

/* Novo Layout de Produtos - Lista Completa */
.produtos-header {
  margin-bottom: 3rem;
}

.produtos-header-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.produtos-header-icon {
  font-size: 2.4rem;
  color: var(--c-blue1);
}

.produtos-title-page {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-black2);
  margin: 0;
  line-height: 1.2;
}

/* Campo de Pesquisa */
.produtos-search-container {
  position: relative;
  margin-bottom: 2rem;
}

.produtos-search-input {
  width: 100%;
  padding: 1.2rem 4.5rem 1.2rem 1.5rem;
  font-size: 1.6rem;
  font-family: var(--font-sans);
  border: 0px solid #e0e0e0;
  background: #f7f7f7;
  border-radius: 0.8rem;
  outline: none;
  transition: all 0.3s ease;
}

.produtos-search-input:focus {
  /* border-color: var(--c-blue1); */
  /* box-shadow: 0 0 0 3px rgba(226, 6, 18, 0.1); */
}

.produtos-search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--c-graydark);
  pointer-events: none;
}

/* Tabs de Categorias */
.produtos-tabs-container {
  margin-bottom: 1rem;
}

.produtos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ffffff30;
  justify-content: center;
  padding-bottom: 2rem;
}

.produtos-tab {
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  border-radius: 0.4rem;
  border: 0;
  background: var(--c-white);
  color: var(--c-blue1);
}

.produtos-tab span {
  display: inline-block;
  color: inherit;
}

.produtos-tab:not(.active):hover {
  background: #f0f4fa;
  color: var(--c-blue1);
}

.produtos-tab.active {
  color: var(--c-blue1);
  border-radius: 0.4rem;
  background: var(--c-yellow1);
  border: 0;
}

.produtos-tab.active span {
  color: var(--c-blue1);
}

/* Grid de Produtos */
.produtos-grid-container {
  margin-bottom: 3rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-height: none;
  overflow: visible;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 1200px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scrollbar customizada */
.produtos-grid {
  scrollbar-width: thin;
  scrollbar-color: var(--c-blue1) #ffffff50;
  border: 0px solid var(--c-blue1);
}

.produtos-grid::-webkit-scrollbar {
  width: 8px;
}

.produtos-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.produtos-grid::-webkit-scrollbar-thumb {
  background: var(--c-blue1);
  border-radius: 10px;
}

.produtos-grid::-webkit-scrollbar-thumb:hover {
  background: var(--c-yellow1);
}

/* Cards de Produtos */
.produto-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  background: #f7f7f7;
  border-radius: 0.8rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.produto-card:hover {
  border-color: var(--c-blue1);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.produto-nome {
  font-family: var(--font-sans);
  line-height: 1.35;
  min-height: 7.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--c-bluelight1);
  border-radius: 0.6rem 0.6rem 0 0;
}

.produto-nome-title {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--c-blue1);
  margin: 0 0 0.35rem 0;
  text-transform: uppercase;
  text-align: center;
}

.produto-nome-desc {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-blue1);
  margin: 0;
  opacity: 0.92;
  text-align: center;
}

.produto-imagem-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 0 1.5rem 1.5rem;
}

.produto-imagem {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.produto-pontos {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--c-blue1);
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  margin-top: auto;
}

/* Tarja do produto (cupom acelerador) */
.produto-tarja {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--c-green1);
  color: var(--c-blue1);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  margin-top: auto;
  text-transform: uppercase;
}

.produto-card--acelerador .produto-imagem-wrap {
  background: var(--c-white);
  /* background: linear-gradient(180deg, #ffffff 0%, #f0f4fa 100%); */
}

/* Banner Importante */
.produtos-important-banner {
  background: #f7f7f7;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-top: 3rem;
}

.produtos-important-text {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-black2);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.produtos-important-text strong {
  font-weight: 700;
}

/* Mensagem “sem resultados” — igual .section.duvidas .faq-container--dark .no-results (sobrepõe .no-results global em overload.css) */
.section.produtos.produtos_lista .produtos-empty-message.no-results {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.5rem;
  padding: 2rem 0.5rem;
  background: var(--c-blue1) !important;
  font-family: var(--font-sans);
  font-weight: 700 !important;
  line-height: 1.5;
  text-align: center;
  border: none !important;
  border-radius: 0.4rem;
}

/* Responsive */
@media (max-width: 991px) {
  .produtos-title-page {
    font-size: 2.4rem;
  }
  
  .produtos-header-icon {
    font-size: 2rem;
  }
  
  .produtos-grid {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
  
  .produtos-tabs {
    gap: 0.5rem;
  }
  
  .produtos-tab {
    padding: 0.8rem 1.5rem;
    /* font-size: 1.4rem; */
  }
  
  .produto-nome-title {
    /* font-size: 1.4rem; */
  }
  
  .produto-nome-desc {
    /* font-size: 1.25rem; */
  }
  
  .produtos-important-text {
    /* font-size: 1.4rem; */
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .produtos-header-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .produtos-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .produtos-tab {
    border-bottom: 1px solid #e0e0e0;
    border-left: 0px solid transparent;
    margin-bottom: 0;
    padding-left: 1rem;
  }
  
  .produtos-tab.active {
    border-left: 4px solid var(--c-yellow1);
    border-bottom-color: #e0e0e0;
  }
}

/* Section PRÊMIOS */
.section.premios {
  position: relative;
  margin-bottom: -1px;
  background: #05478E;
  background: radial-gradient(circle, rgba(5, 71, 142, 1) 0%, rgba(34, 45, 89, 1) 100%);
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  /* Altura mínima para estabilizar a composição de prêmios em diferentes resoluções */
  min-height: clamp(640px, 100vh, 640px);
  /* min-height: clamp(560px, 90vh, 840px); */
  /* max-height: 960px; */
}

.section.premios .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0rem;
  margin: auto;
}

.section.premios .sorteio-final-wrapper {
  position: absolute;
  z-index: 2;
  top: 30%;
  right: 7%;
  width: 41%;
  max-width: 770px;
}

.section.premios .sorteio-final-wrapper .img-sorteioFinal-base {
  display: block;
  width: 100%;
  height: auto;
}

.section.premios .sorteio-final-wrapper .img-sorteioFinal-farol {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sorteio-final-farol-blink 3.5s steps(1) infinite;
}

.section.ganhadores .sorteio-final-wrapper {
  position: relative;
  display: inline-block;
  max-width: min(500px, 100%);
  overflow: hidden;
}

.section.ganhadores .sorteio-final-wrapper .img-sorteioFinal-base {
  display: block;
  width: 100%;
  height: auto;
  max-width: 450px;
}

.section.ganhadores .sorteio-final-wrapper .img-sorteioFinal-farol {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sorteio-final-farol-blink 3.5s steps(1) infinite;
}

.section.premios .img-sorteio-semanal {
  position: absolute;
  z-index: 2;
  top: 27%;
  left: 14.2%;
  width: 40%;
  max-width: 750px;
}

.section.premios .img-selo {
  position: absolute;
  z-index: 2;
  top: 5%;
  left: 40.9%;
  width: 19%;
  max-width: 350px;
  display: none;
}

.section.premios .img-txt-sorteio-final {
  position: absolute;
  z-index: 2;
  top: 21.5%;
  right: 32.8%;
  width: 17%;
  max-width: 310px;
}

.section.premios .img-txt-sorteio-semanal {
  position: absolute;
  z-index: 2;
  top: 51%;
  left: 4%;
  width: 17%;
  max-width: 310px;
}

.section.premios .img-base {
  position: absolute;
  z-index: 1;
  bottom: -1%;
  left: 0%;
  width: 100%;
  max-width: 1913px;
}

@media (max-width: 991px) {
  .section.premios .kv-container {
    margin-top: -3rem;
  }
  
  .section.premios .sorteio-final-wrapper {
    position: absolute;
    z-index: 2;
    top: 67%;
    right: 5%;
    width: 90%;
    max-width: 770px;
  }
  
  .section.premios .img-sorteio-semanal {
    position: absolute;
    z-index: 2;
    top: 32%;
    left: inherit;
    right: -9%;
    width: 85%;
    max-width: 750px;
  }
  
  .section.premios .img-selo {
    top: 6%;
    left: 5%;
    width: 45%;
    max-width: 350px;
  }
  
  .section.premios .img-txt-sorteio-final {
    position: absolute;
    z-index: 2;
    top: 57%;
    right: inherit;
    left: 4%;
    width: 47%;
    max-width: 310px;
  }
  
  .section.premios .img-txt-sorteio-semanal {
    position: absolute;
    z-index: 2;
    top: 23.5%;
    left: 5%;
    right: inherit;
    width: 49%;
    max-width: 310px;
  }
  
  .section.premios .img-base {
    position: absolute;
    z-index: 1;
    bottom: -1%;
    left: 0%;
    width: 100%;
    max-width: 1913px;
  }
}

/* Botão Ver mais - Produtos */
.produtos-ver-mais {
  text-align: center;
  margin-top: 4rem;
}

.btn-produtos-ver-mais {
  --btn-bg-solid: var(--c-blue1);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  color: var(--c-white);
  border: none;
  border-radius: 0.4rem;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: var(--font-sans);
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
}

.btn-produtos-ver-mais:hover,
.btn-produtos-ver-mais:focus-visible {
  color: var(--c-white);
  background-position: 0 0;
  transform: translateY(5px) scale(0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-produtos-ver-mais i {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  background: var(--c-white);
  color: var(--c-blue1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: moveIconRight 1s ease-in-out infinite;
}

.btn-produtos-ver-mais:hover i {
  background: var(--c-blue1);
  color: var(--c-white);
  animation: moveIconRightHover .5s ease-in-out infinite;
}

@media (max-width: 991px) {
  .btn-produtos-ver-mais {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
  
  .produtos-ver-mais {
    margin-top: 3rem;
  }
}


/*TOOLTIP */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: var(--font-sans), "Apple Color Emoji", "Segoe UI Emoji",
  "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.2rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 1rem 1rem;
  color: #fff;
  text-align: center;
  background-color: #000000;
  border-radius: 0.7rem;
  border: 1px solid #000000;
}


/* SECTION - CADASTRO PESSOAL */
.section.cadastro-pessoal {
  position: relative!important;
  background: url(../img/background/bkg2_1913.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}

/* Gradiente sobre o background para melhorar legibilidade do texto */ */

/* Garantir que o conteúdo fique sobre o gradiente */
.section.cadastro-pessoal .padding {
  position: relative;
  z-index: 2;
}

/* SECTION - CADASTRO; */
#cadastro {
  position: relative;
}

#cadastro .header-section{
  margin-bottom: 1rem!important;
}

#cadastro .header-section i.fa-brands.fa-whatsapp {
  color: var(--c-white) !important;
  font-size: 2.3rem !important;
  position: relative;
  margin-top: -5px;
  top: 3px;
}

#cadastro .eye [data-togglepassword] {
  color: var(--c-white)!important;
}

#cadastro .title {
  padding: 0px;
  margin-bottom: 4rem;
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-white);
}

#cadastro .selo1 {
  position: relative;
  z-index: 1;
  margin-bottom: -6rem;
}

#cadastro .selo1 img {
  width: 100%;
  max-width: 500px;
}

#cadastro .selo2 {
  position: relative;
  z-index: 1;
}

#cadastro .selo2 img {
  width: 100%;
  max-width: 430px;
}

#cadastro .formulario {
  background: var(--c-white);
  padding: 3rem;
  border-radius: 2rem;
  margin-top: 0rem;
}

#cadastro .formulario .formsteps-buttons {
  text-align: center;
}

#cadastro .formulario .formsteps-btn-prev {
  padding: 1.8rem 3rem 1.8rem 3rem;
}

#cadastro .formulario .formsteps-btn-next {
  padding: 1.8rem 3rem 1.8rem 3rem;
}

#cadastro .formulario .formsteps-btn-finish {
  padding: 1.8rem 3rem 1.8rem 3rem;
}

@media (max-width: 991px) {
  #cadastro .formulario {
    padding: 4rem 3rem;
  }
  
  #cadastro .formulario .formsteps-btn-prev {
    width: 100%;
  }
  
  #cadastro .formulario .formsteps-btn-next {
    width: 100%;
  }
}

.section.cadastro .titulo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  color: var(--c-white);
  text-transform: uppercase;
}

.section.cadastro .titulo .img-titulo {
  position: relative;
  margin-bottom: 20px;
}

.section.cadastro .titulo .img-titulo img {
  max-width: 100%;
}

.section.cadastro .dados-pessoais:hover .titulo span,
.section.cadastro .dados-acesso:hover .titulo span {
  color: var(--c-blue1);
}

/* Barra de Progresso do Cadastro */
/* Botão Finalizar Cadastro — degradê amarelo + slider */
.btn-finalizar-cadastro {
  --btn-bg-solid: var(--c-yellow1);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  color: var(--c-blue1) !important;
  border: none;
  border-radius: 0.4rem;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: var(--font-sans);
  width: auto;
  justify-content: center;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  ) !important;
  background-size: 200% 100% !important;
  background-position: 100% 0 !important;
}

.btn-finalizar-cadastro:hover,
.btn-finalizar-cadastro:focus-visible {
  color: var(--c-blue1) !important;
  background-position: 0 0 !important;
  transform: translateY(2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-finalizar-cadastro i {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  background: var(--c-blue1);
  color: var(--c-yellow1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: moveIconRight 1s ease-in-out infinite;
}

.btn-finalizar-cadastro:hover i {
  background: var(--c-blue1);
  color: var(--c-yellow1);
  animation: moveIconRightHover .5s ease-in-out infinite;
}

@media (max-width: 991px) {
  .btn-finalizar-cadastro {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
}

.section.cadastro .dados-acesso {
  margin-bottom: 20px !important;
}

.section.cadastro-complemento .pack-cadastro-complemento {
  position: relative;
}

.section.cadastro-complemento .pack-cadastro-complemento img {
  max-width: 100%;
}

.section.cadastro .icone-premio {
  position: relative;
  width: 100%;
  margin: auto;
}

.section.cadastro .icone-premio .img-icone-premio {
  max-width: 300px;
  transition: all 0.3s ease-in-out;
}

.section.cadastro img {
  /*width: 100%;*/
  /*max-width: 300px;*/
}

.section.cadastro .slick-dots {
  display: none !important;
}

@media (max-width: 991px) {
  .section.cadastro {
    /*background-color: var(--c-blue1);*/
  }
  
  .section.cadastro .jogadores {
    margin-top: 2rem;
  }
  
  .section.cadastro .bimbo img {
    max-width: 200px;
  }
  
  .section.cadastro .toalha {
    bottom: 0%;
  }
  
  .section.cadastro .jogadores img {
    margin-top: 20px;
    -webkit-animation-name: none !important;
  }
}

/* SECTION - CADASTRO PESSOAL e CUPOM - SUCESSO */
.section.cadastrosucesso {
  position: relative;
}

.section.cadastrosucesso p.description {
  font-size: 1.8rem;
  color: var(--c-white);
  font-family: var(--font-sans);
}

.section.cadastrosucesso p.description_small {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-white);
  font-family: var(--font-sans);
}

.section.cadastrosucesso .logopromocao {
  position: relative;
  margin-top: -15%;
  width: 75%;
  text-align: center;
  display: inline-block;
  z-index: -1;
}

.section.cadastrosucesso .scroll-container {
  max-height: 175px;
}

.section.cadastrosucesso .logopromocao img {
  width: 100%;
}

.section.cadastrosucesso .box {
  position: relative;
  background-color: var(--c-black);
  padding: 4rem 3rem 4.8rem 3rem;
  border-radius: 4rem;
}

.section.cadastrosucesso .box .title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 3rem;
}

.section.cadastrosucesso .box .title .img-hand {
  position: absolute;
  bottom: -30px;
  right: -50px;
}

.section.cadastrosucesso .box .description {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
}

.section.cadastrosucesso .box .description_details {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-blue1);
  font-family: var(--font-sans);
}

@media (max-width: 991px) {
  .section.cadastrosucesso .logopromocao {
    z-index: -1 !important;
    margin-top: -6.7%;
  }
}

.section.cadastrosucesso table.table {
  margin-bottom: 0rem !important;
}

@media (max-width: 991px) {
  .section.cadastrosucesso {
  }
}

.section.cadastrosucesso .cadastrosucessopessoal {
  padding: 5rem 3rem 5rem 3rem !important;
}

/*CONFIGURAÇÃO DO FORM STEPS*/
.formsteps .progressdots {
  display: none !important;
}

.circleform .fc-progresso-mobile {
  display: none !important;
}

.formsteps .progressdots > div[data-progressdots-step] > div {
  display: none;
}

.formsteps .progressdots > div:last-child:not([data-progressdots-step]):before,
.formsteps .progressdots > div:first-child:not([data-progressdots-step]):before,
.formsteps .progressdots > div:not([data-progressdots-step]):before,
.formsteps .progressdots > div[data-progressdots-step]:before,
.formsteps .progressdots > div[data-progressdots-step]:after {
  display: none;
}

.formsteps .progressdots > div[data-progressdots-step] {
  border-color: var(--c-white);
  background-color: var(--c-white);
  border: 1px solid #ffffff !important;
}

.formsteps .progressdots > div[data-progressdots-step].success {
  border-color: var(--c-pink2) !important;
  background-color: var(--c-pink2) !important;
  border: 1px solid var(--c-pink2) !important;
}

.formsteps .progressdots > div[data-progressdots-step].error,
.formsteps .progressdots > div[data-progressdots-step].active.error {
  border-color: #ed3f32 !important;
  background-color: #ed3f32 !important;
  border: 1px solid #ed3f32 !important;
}

.formsteps .progressdots > div[data-progressdots-step].active {
  border-color: var(--c-white);
  background-color: var(--c-white);
  border: 1px solid #ffffff !important;
}

/* Cadastro sucesso  */
.section.cadastrosucesso .table .thead-dark th {
  /* background: #0f0f0f !important; */
  /* color: rgba(255, 255, 255, 0.9) !important; */
  color: var(--c-bluelight1) !important;
}

/* __Elementos | Cadastro */
.section.cadastro .elemento1 {
  position: absolute;
  bottom: 0%;
  left: 73%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento2 {
  position: absolute;
  top: -5%;
  left: 0%;
  width: 20.1%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 9s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento3 {
  position: absolute;
  top: 40%;
  left: 0%;
  width: 11%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 11s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento4 {
  position: absolute;
  bottom: 3%;
  left: 1%;
  width: 21%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 12s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento5 {
  position: absolute;
  top: 7%;
  right: 1%;
  width: 24%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento6 {
  position: absolute;
  top: 40%;
  right: 4%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento7 {
  position: absolute;
  top: 64%;
  right: 56%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

.section.cadastro .elemento1 img,
.section.cadastro .elemento2 img,
.section.cadastro .elemento3 img,
.section.cadastro .elemento4 img,
.section.cadastro .elemento6 img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section.cadastro .elemento1 {
    width: 25%;
    left: -4%;
  }
  
  .section.cadastro .elemento4 {
    bottom: 44%;
    left: -7%;
    width: 25%;
  }
  
  .section.cadastro .elemento5 {
    width: 15%;
    top: 1%;
    right: 2%;
  }
}

/* SECTION - MEUS DADOS */
.section.meusdados {
  position: relative;
}

.section.meusdados .titulo-step {
  font-size: 20px !important;
  line-height: 25px !important;
  color: var(--c-white);
}

.section.meusdados label.custom-control-label {
  padding-top: 0.3rem;
}

.section.meusdados  .form-check .form-check-input:checked {
  background: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
  opacity: 1 !important;
}

.section.meusdados .float-placeholder {
  top: 6px;
}

.section.meusdados
.custom-checkbox
.custom-control-input:disabled:checked
~ .custom-control-label::before {
  background-color: #6c757d;
  border-color: #6c757d;
}

.section.meusdados
.custom-checkbox
.custom-control-input:disabled:checked
~ .custom-control-label
a {
  color: var(--c-white);
}

.section.meusdados #frm-meusdados {
  background: transparent;
  width: 100%;
}

.section.meusdados
#frm-meusdados
.custom-checkbox
.custom-control-input:disabled:checked
~ .custom-control-label
a {
  color: var(--c-white);
}

/* SECTION - REGULAMENTO */
.section.rtp {
}
@media (max-width: 991px) {
  .section.rtp {
  }
}

.section.rtp .box {
  background: var(--c-gray);
  padding: 20px;
  border-radius: 10px;
}

.section.rtp strong {
  font-family: var(--font-sans);
  font-weight: 700;
}

.section.rtp .scroll-container {
  color: var(--c-white);
  margin: 0;
  min-height: 450px;
  font-size: 1.5rem;
  line-height: 140%;
  text-align: left;
  padding: 0px 20px 0px 10px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 400;
}

.section.rtp .ipgs-theme-default .ipgs-stage {
  background-color: var(--c-white);
}

@media (max-width: 991px) {
  .section.rtp .box {
    padding: 0px;
  }
  
  .section.rtp .scroll-container {
    text-transform: none;
    margin: 0px;
    min-height: 500px;
    font-size: 1.5rem;
    line-height: 140%;
    text-align: center;
    border: 0;
    max-height: 100%;
    overflow-y: unset;
    padding: 0px;
    border-radius: 7px;
  }
}

.section.rtp .link.divider::before {
  position: absolute;
  z-index: 1;
  right: -14px;
  top: -10px;
  content: "";
  width: 1px;
  height: 50px;
  border: 1px solid #bb9b5e;
}

@media (max-width: 991px) { 
  .section.rtp .link {
    margin: 0;
    text-align: center;
    font-size: 25px;
    line-height: 25px;
    display: inherit;
    margin-bottom: 1rem;
  }
  
  .section.rtp .link.divider::before {
    display: none;
  }
  
  .section.rtp .btn {
    display: block;
    width: 100%;
    margin: 10px 0 0 0 !important;
  }
}

/* __Elementos | Ganhadores */
.section.rtp .elemento1 {
  position: absolute;
  bottom: 0%;
  left: 73%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento2 {
  position: absolute;
  top: -5%;
  left: 0%;
  width: 20.1%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 9s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento3 {
  position: absolute;
  top: 40%;
  left: 0%;
  width: 11%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 11s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento4 {
  position: absolute;
  bottom: 3%;
  left: 1%;
  width: 21%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 12s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento5 {
  position: absolute;
  top: 7%;
  right: 1%;
  width: 24%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento6 {
  position: absolute;
  top: 40%;
  right: 4%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento7 {
  position: absolute;
  top: 64%;
  right: 56%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
  opacity: 1;
}

.section.rtp .elemento1 img,
.section.rtp .elemento2 img,
.section.rtp .elemento3 img,
.section.rtp .elemento4 img,
.section.rtp .elemento6 img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section.rtp .elemento1 {
    width: 25%;
    left: -4%;
  }
  
  .section.rtp .elemento4 {
    bottom: 44%;
    left: -7%;
    width: 25%;
  }
  
  .section.rtp .elemento5 {
    width: 15%;
    top: 1%;
    right: 2%;
  }
}

/* SECTION - DÚVIDAS */
.section.duvidas {
  position: relative;
  background: url(../img/background/bkg2_1913.webp) no-repeat center center !important;
  background-size: cover !important;
  overflow: hidden !important;
}

/* Imagem pack de produtos na seção de dúvidas */
.section.duvidas .imgHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.section.duvidas .img-header {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1.5rem;
  transition: opacity 0.3s ease;
}

.section.duvidas .scroll-container {
  border: none;
  margin: 10px 0px 10px 0px;
  max-height: 400px;
  overflow-y: scroll;
  padding-right: 10px;
}

.section.duvidas .painel-busca {
  width: 100%;
  /*width: 300px;*/
  margin: auto;
}

.section.duvidas .pesquisar {
  font-size: 1.5rem;
  line-height: 1.7rem;
  color: var(--c-white);
  margin: 0px 0 10px 0;
  font-family: var(--font-sans);
  font-weight: 700;
}

.section.duvidas .descricao {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: var(--c-white);
  text-transform: uppercase;
  margin-top: 40px;
}

.section.duvidas .descricao a {
  color: var(--c-white);
  text-decoration: underline;
}

.section.duvidas .descricao a:hover {
  color: var(--c-white);
  text-decoration: none;
}

.section.duvidas .float-placeholder {
  top: 6px;
}

@media (max-width: 991px) {
  .section.duvidas .descricao {
    font-size: 20px;
    line-height: 25px;
  }
  
  .section.duvidas .scroll-container {
    max-height: 100%;
    margin-top: 0px;
    overflow-y: inherit;
  }
}

.section.duvidas label.custom-control-label {
  padding-top: 0.3rem;
}

/*  COMPONENTES FORMULÁRIO  */
.form-control {
  padding: 1.5rem 2rem 1.6rem 2rem;
  height: 44px;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-black);
}

.form-control2 {
  color: var(--c-white) !important;
  background: var(--c-yellow1) !important;
}

.form-control2::placeholder {
  color: var(--c-white) !important;
}

.form-eye2 .eye [data-togglepassword] {
  color: var(--c-white);
}

.form-control::placeholder {
  opacity: 1;
}

.form-control:focus {
  padding: 1.5rem 2rem 1.6rem 2rem;
  height: 44px;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  /* font-size: 1.3rem; */
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: #666666;
}

select.form-control {
  padding: 1.4rem 2rem 1.5rem 2rem;
  height: 44px;
  border: none;
  margin: 15px 0px 6px 0px;
  /* font-size: 1.3rem; */
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: #666666;
}

select.form-control:focus {
  padding: 1.4rem 2rem 1.5rem 2rem;
  height: 44px;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  /* font-size: 1.3rem; */
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-black);
}

input.form-control:focus {
  padding: 1.5rem 2rem 1.6rem 2rem;
  height: 44px;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-black);
}

.form-control:disabled,
.form-control[readonly] {
  background: var(--c-gray);
  opacity: 0.3;
}

textarea.form-control {
  resize: none;
  padding: 1.5rem 2rem 1.6rem 2rem;
  height: auto;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.3rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-black);
}

textarea.form-control:focus {
  resize: none;
  padding: 1.5rem 2rem 1.6rem 2rem;
  height: auto;
  border-radius: 0.4rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.3rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--c-black);
}

.main .section:nth-child(even) .form-control {
  background: white;
}

.float-placeholder {
  font-size: 1rem;
  line-height: 1;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--c-blue1);
  background: #efeeed;
  border-radius: 0.2rem;
  z-index: 2;
  padding: 0.51rem 0.6rem 0.3rem 0.6rem;
  display: block;
  position: absolute;
  top: -9px;
  left: 0.8rem;
  letter-spacing: 0.2px;
  text-transform: none;
}

.form-check-label {
  color: var(--c-blue1);
  font-size: 1.7rem;
  font-family: var(--font-sans);
  font-weight: 400;
}

.custom-control-label {
  color: var(--c-white);
  padding: 1px 0 0px 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: start;
}

.custom-control-label::before,
.custom-control-label:focus {
  box-shadow: none !important;
  border: 1px solid var(--c-white) !important;
  border-radius: 100px !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: var(--c-black);
  border-color: var(--c-black) !important;
  background-color: var(--c-black);
  z-index: 1;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  display: none;
  box-shadow: none !important;
  border: 1px solid;
  border-radius: 100px !important;
  border-color: var(--c-blue1);
}

.custom-checkbox .custom-control-label::before {
  background: var(--c-white);
  color: var(--c-form);
  border: 1px solid var(--c-black) !important;
  width: 1.5rem;
  height: 1.5rem;
}

.custom-control-label a {
  text-decoration: underline;
  color: var(--c-white);
}

.custom-control-label a:hover {
  text-decoration: none;
  color: var(--c-white);
}

[class*="vld-"] + .error,
label.error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-top: 1px;
  margin-bottom: 8px;
  padding: 0rem;
  background: transparent;
  color: var(--c-error);
}

label#cadastrocupom-QtdProdutosError {
  text-align: center;
}

label#AceiteRegulamento-error,
label#AceitePrivacidade-error,
label#AceitePromo-error,
label#AceitePolitica-error,
label#AceiteCupom-error,
label#AceitePermissao-error,
label#AceiteComunicacao-error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 8px;
  padding: 0rem 0rem 0rem 1rem;
  background: transparent;
  color: var(--c-error);
}

/* COMPONENTES FORMULÁRIO */
/* Regras de senha personalizadas */
#Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha ~ .senha-regras,
#Senha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha ~ .senha-regras {
  display: none;
}

#Senha1:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha1 ~ .senha-regras,
#Senha1.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#Senha1:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha1 ~ .senha-regras {
  display: none;
}

#Senha2:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha2 ~ .senha-regras,
#Senha2.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#Senha2:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha2 ~ .senha-regras {
  display: none;
}

#Senha3:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha3 ~ .senha-regras,
#Senha3.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#Senha3:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#Senha3 ~ .senha-regras {
  display: none;
}

#NovaSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#NovaSenha ~ .senha-regras,
#NovaSenha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#NovaSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#NovaSenha ~ .senha-regras {
  display: none;
}

#txtSenhaNova:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtSenhaNova ~ .senha-regras,
#txtSenhaNova.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#txtSenhaNova:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtSenhaNova ~ .senha-regras {
  display: none;
}

#txtSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtSenha ~ .senha-regras,
#txtSenha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#txtSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtSenha ~ .senha-regras {
  display: none;
}

#txtNovaSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtNovaSenha ~ .senha-regras,
#txtNovaSenha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#txtNovaSenha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#txtNovaSenha ~ .senha-regras {
  display: none;
}

/* Regras de senha para cadastropessoal-Senha */
#cadastropessoal-Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#cadastropessoal-Senha ~ .senha-regras,
#cadastropessoal-Senha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#cadastropessoal-Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#cadastropessoal-Senha ~ .senha-regras {
  display: none;
}

/* Regras de senha para cadastrowhatsapp-Senha */
#cadastrowhatsapp-Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#cadastrowhatsapp-Senha ~ .senha-regras,
#cadastrowhatsapp-Senha.valid:not(:focus) ~ .senha-regras {
  display: none;
}

#cadastrowhatsapp-Senha:not([data-senha-vazio]) ~ .senha-regras,
[data-senha-vazio="true"]#cadastrowhatsapp-Senha ~ .senha-regras {
  display: none;
}

.senha-regras {
  text-align: left;
  font-size: 1.2rem;
  background: #ffd02c;
  border: none;
  border-radius: 0.3rem !important;
  position: absolute;
  z-index: 999;
  padding: 0.4rem 0.5rem 0.4rem 0.5rem;
  margin-top: 0px;
  font-family: var(--font-sans);
  font-weight: 400;
  left: 7px;
  top: 47px;
}

.senha-regras::before {
  content: "\edc4";
  font-family: "icomoon", Arial, sans-serif;
  width: 35px;
  height: 12px;
  text-align: center;
  font-size: 30px;
  line-height: 100%;
  border-radius: 0;
  margin-right: 0px;
  display: inline-block;
  background: transparent;
  color: transparent;
  position: absolute;
  top: -19px;
  left: 3px;
  z-index: 1;
}

.senha-regras > div {
  padding: 0.2rem;
  color: var(--c-black);
}

.senha-regras > div:before {
  content: "\e601";
  font-family: "icomoon", Arial, sans-serif;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  /* background: #ffffff; */
  background: #ccc;
  /* color: var(--c-white); */
  color: #ccc;
}

[data-senha-maiusculas="true"] ~ .senha-regras .regra-maiusculas:before {
  color: transparent;
  background: #4caf50;
}

[data-senha-minusculas="true"] ~ .senha-regras .regra-minusculas:before {
  color: transparent;
  background: #4caf50;
}

[data-senha-numeros="true"] ~ .senha-regras .regra-numeros:before {
  color: transparent;
  background: #4caf50;
}

[data-senha-especiais="true"] ~ .senha-regras .regra-especiais:before {
  color: transparent;
  background: #4caf50;
}

[data-senha-tamanho="true"] ~ .senha-regras .regra-tamanho:before {
  color: transparent;
  background: #4caf50;
}

/*Olho Senha*/
.eye {
  margin: auto;
  display: inherit;
}

.eye [data-togglepassword] {
  height: 25px;
  width: 25px;
  line-height: 30px;
  text-decoration: none !important;
  position: absolute;
  color: var(--c-blue1);
  top: 23px;
  right: 15px;
  z-index: 1;
  font-size: 1.5rem;
  cursor: pointer;
}

.eye [data-togglepassword]:hover {
  color: var(--c-blue1);
  text-decoration: none !important;
}

.eye [data-togglepassword] .password-hide {
  text-decoration: none !important;
}

.eye i {
  color: var(--c-blue1) !important;
}

.eye i:hover {
  color: var(--c-blue1) !important;
}

@media (max-width: 991px) {
  .eye {
    top: 7px;
    right: 20px;
    position: absolute;
  }
  
  .eye [data-togglepassword] {
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
    height: 20px;
    line-height: 25px;
    top: 18px;
  }
}

/* Formulario progresso */
@media (max-width: 991px) {
  #frm-cadastro {
    margin: 0 auto;
    width: 100% !important;
  }
  
  #frm-cadastro [data-step] {
    /*padding: 20px 20px;*/
    padding: 0px;
  }
}

@media (max-width: 768px) {
  #frm-cadastro {
    width: 90%;
  }
}

#frm-cadastrar:not(.carregando) .formulario-carregando {
  display: none;
}

.formulario-carregando {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.25rem;
}

.formulario-carregando > div {
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 200px;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}

.formulario-carregando > div div {
  position: absolute;
  border: 4px solid #313131;
  opacity: 1;
  border-radius: 50%;
  animation: formulario-carregando 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.formulario-carregando > div div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes formulario-carregando {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  
  100% {
    top: 0px;
    left: 0px;
    width: 192px;
    height: 192px;
    opacity: 0;
  }
}

form label {
}

label#erroValor.error,
label#erroQuantidade.error,
label#erroProduto.error {
  text-align: left;
  display: block;
  width: 100%;
  margin-top: 3px;
  font-size: 12px !important;
  line-height: 12px !important;
  padding: 0px 1.5rem 3px 1.5rem !important;
  background: transparent;
  color: var(--c-white) !important;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* Formulario steps */

[data-plugin="formsteps"]:not(.plugin-loaded) {
  display: none;
}

[data-plugin="upload"] .upload-preview {
  font-family: var(--font-sans);
  font-weight: 700;
}

[data-tbitems="Produtos"] tbody td {
  background: white;
}

[data-tbitems="Produtos"][data-items="0"] thead {
  display: none;
}

[data-plugin="tbitems"]:not(.plugin-loaded) {
  display: none;
}

/* Classes para controlar visibilidade dos botões */
.formsteps-btn-hidden {
  display: none !important;
}

.formsteps-btn-visible {
  display: inline-block !important;
}

/* Esconder botão Anterior no primeiro step */
[data-step="0"].active ~ .formsteps-buttons .formsteps-btn-prev {
  display: none !important;
}

/* Esconder botão Próximo no último step */
[data-step="8"].active ~ .formsteps-buttons .formsteps-btn-next {
  display: none !important;
}

/* Esconder botão Finalizar por padrão */
#btnFinalizar {
  display: none !important;
}

/* Mostrar botão Finalizar apenas no último step */
[data-step="8"].active ~ .formsteps-buttons #btnFinalizar {
  display: inline-block !important;
}

@media (max-width: 991px) {
  #frm-cadastrocupom table.table tbody td {
    display: block;
    border: none;
    /*background: #FFFFFF;*/
    border-radius: 0;
    padding: 20px;
  }
  
  #btnAdicionarProduto {
    width: 100%;
  }
}

/* SECTION - GANHADORES - PRÉ-SELEÇÃO */
.section.ganhadores.ganhadores-preselecao {
  position: relative;
  background: url(../img/background/bkg1_1913.webp) no-repeat bottom center;
  background-size: cover;
  overflow: hidden;
}

/* Garantir que o conteúdo fique sobre o gradiente */
.section.ganhadores.ganhadores-preselecao .padding {
  position: relative;
  z-index: 2;
}

/* Quando tiver kv-container, a section se ajusta ao tamanho do vídeo */
.section.ganhadores.ganhadores-preselecao:has(.kv-container) {
  min-height: auto;
}

/* Para página de vale brinde com vídeo - remover background da section quando tiver kv-container */
.section.ganhadores.ganhadores-preselecao:has(.kv-container) {
  background: none;
}

/* Fallback para navegadores que não suportam :has() */
@supports not selector(:has(*)) {
  .section.ganhadores.ganhadores-preselecao .kv-container ~ * {
    /* Mantém o comportamento padrão */
  }
}

.section.ganhadores.ganhadores-preselecao .header-section h2 {
  color: var(--c-white);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
}

.section.ganhadores.ganhadores-preselecao .header-section h3 {
  color: var(--c-white);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-top: 0;
}

/* Estilos AjiPanda para seção de ganhadores */
.section.ganhadores .header-section .ajipanda-header {
  margin-bottom: 4rem;
}

.section.ganhadores .header-section .ajipanda-text {
  font-size: 5rem;
  line-height: 1;
  color: var(--c-white);
  text-align: center;
  font-weight: 700;
}

.section.ganhadores .header-section .ajipanda-title {
  font-size: 3.2rem;
  color: var(--c-yellow1);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 991px) {
  .section.ganhadores .header-section .ajipanda-text {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .section.ganhadores .header-section .ajipanda-title {
    font-size: 2rem;
  }
}

/* Efeito tremor na imagem do ganhador do sorteio */
.sorteio-ganhador img {
  animation: movimentoSelo r4s ease-in-out infinite;
}

/* SECTION - GANHADORES */
.section.ganhadores {
  position: relative!important;
  background: url(../img/background/bkg2_1913.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}

/* Tabs de ganhadores - estilo botão flutuante */
.ganhadores-tabs-buttons .btn-tab-ganhadores {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 900;
  text-transform: uppercase;
  padding: 1.6rem 2rem 1.5rem 2rem;
}
.ganhadores-tabs-buttons .btn-tab-ganhadores span {
  position: relative;
  z-index: 1;
  color: var(--c-white);
}
.ganhadores-tabs-buttons .btn-tab-ganhadores i {
  display: none !important;
  margin-left: 0.5rem;
}
.ganhadores-tabs-buttons .btn-tab-ganhadores.active i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--c-green1) !important;
  background: var(--c-white) !important;
  animation: moveIconDown 1s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes moveIconDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.ganhadores-tabs-buttons .btn-tab-ganhadores.active::before,
.ganhadores-tabs-buttons .btn-tab-ganhadores:hover::before {
  opacity: 1;
}

/* Tabela ordenável */
.section.ganhadores .th-sortable {
  cursor: pointer;
  user-select: none;
}
.section.ganhadores .th-sortable:hover {
  opacity: 0.9;
}

/* Hover nas linhas da tabela */
.section.ganhadores table.table tbody tr td {
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  transform-origin: center center;
}
.section.ganhadores table.table tbody tr:hover td {
  transform: scale(1.1);
  color: var(--c-bluelight1) !important;
}
.section.ganhadores table.table tbody tr:hover td .title-table-mobile {
  color: var(--c-bluelight1) !important;
}

.section.ganhadores table.table tbody td,
.section.ganhadores table.table thead th {
  height: 75px !important;
  vertical-align: middle !important;
  /* font-weight: 600; */
}
@media (max-width: 991px) {
  .section.ganhadores table.table tbody td,
  .section.ganhadores table.table thead th {
    text-align: center;
    margin-top: -1px;
  }
}
.section.ganhadores table.table .filter-result {
  font-weight: 400;
}
.section.ganhadores .table-unique tbody td {
  height: auto !important;
  padding: 2rem 4rem !important;
  text-align: start;
  vertical-align: middle !important;
}
.section.ganhadores .table-unique .title-table-desktop {
  max-width: fit-content;
  color: rgba(255, 255, 255, 0.9);
}
.section.ganhadores .table-unique .filter-result {
  color: rgba(255, 255, 255, 0.9) !important;
}
.section.ganhadores .content-section {
  width: 100%;
  margin: auto;
  padding: 0rem 0rem;
}

.section.ganhadores .categoria {
  padding: 0px;
  margin-bottom: 3rem;
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--c-white);
}

.section.ganhadores .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.section.ganhadores .box .content span.title {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-brown1);
  padding: 0rem 0rem 0.5rem 0rem;
  text-align: left;
  transition: all 0.2s ease-in-out;
}

.section.ganhadores .box:hover .content span.title {
  color: var(--c-blue1);
  transition: all 0.2s ease-in-out;
}

.section.ganhadores .box .content span.description {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--c-white);
  padding: 0rem 0rem 2rem 0rem;
  text-align: left;
  transition: all 0.7s ease-in-out;
}

.section.ganhadores .box .logo-lolla {
  position: absolute;
  bottom: 6%;
  right: 6%;
  width: 100%;
  max-width: 70px;
}

.section.ganhadores .box:hover .logo-lolla {
  -webkit-animation-name: pulseBig;
  animation-name: pulseBig;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.section.ganhadores .input-group > .custom-select:not(:last-child),
.section.ganhadores .input-group > .form-control:not(:last-child) {
  /*padding: 1.6rem 1.5rem 1.2rem 1.5rem;*/
  height: 50px;
  border-radius: 0.7rem 0rem 0rem 0.7rem;
  border: none;
  margin: 12px 0px 6px 0px;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--c-gray);
}

.section.ganhadores .float-placeholder {
  display: none;
}

.section.ganhadores .no-results {
  padding: 2rem;
  border-radius: 0.7rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--c-white);
  border: 1px solid;
  font-family: var(--font-sans);
  font-weight: 700;
  background: var(--c-white);
  border-color: var(--c-white);
  margin-top: 5px;
}

/* Filtro letra */
.section#ganhadores button.btn {
  --btn-bg-solid: var(--c-white);
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
  margin: 3px 1px;
  width: 40px;
  height: 40px;
  color: var(--c-black);
  font-family: var(--font-sans);
  font-weight: 700 !important;
  font-style: normal !important;
  border: 2px solid var(--c-white)!important;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0.45rem 0.7rem 0.45rem;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, border-color 0.3s ease;
}

.section#ganhadores button.btn:hover:not(:disabled):not(.disabled),
.section#ganhadores button.btn:focus-visible:not(:disabled):not(.disabled) {
  background-position: 0 0;
}

.section#ganhadores button.btn.active {
  --btn-bg-solid: var(--c-blue1);
  background: var(--c-blue1) !important;
  background-image: none !important;
  color: var(--c-white);
  opacity: 1;
  border-color: var(--c-blue1);
}

.section#ganhadores .btn.disabled,
.section#ganhadores .btn:disabled {
  opacity: 0.15;
  background: transparent !important;
  background-image: none !important;
  color: var(--c-white);
  border: 2px solid var(--c-white) !important;
  cursor: not-allowed !important;
}

@media (min-width: 992px) and (max-width: 1149px) {
  .section#ganhadores .scroll-container {
    margin: 35px 0;
    max-height: 255px;
  }
}

@media (max-width: 991px) {
  .title-table-desktop {
    display: none;
  }
  
  .section#ganhadores .conteudo {
    position: relative;
    padding: 1rem;
    height: inherit;
    background: transparent;
    background-size: 100% auto;
  }
  
  .section#ganhadores table.table .title-table-mobile,
  .section#ganhadores table.table .filter-result,
  .section#ganhadores table.table img {
    padding: 0rem 2.5rem !important;
  }
  
  .section#ganhadores table.table tbody td {
    height: auto !important;
    padding: 2rem 0.65rem 0rem 0.65rem !important;
  }
  
  .section#ganhadores table.table tbody tr td:last-child {
    padding: 2rem 0.65rem 2rem 0.65rem !important;
  }
}

.certificado-ouro {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-green1);
  text-align: left;
  margin-top: 0.1rem;
}

/* Links de Prêmios - Efeito Hover */
.premio-item.premio-link {
  display: block;
  text-decoration: none;
}

.premio-item.premio-link .premio-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
  margin: auto;
}

/* Cards Ganhadores */
.box-premios .premios-card {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  background: transparent;
  /*overflow: hidden;*/
  margin: auto;
}

.box-premios .premios-card .premios-card-title {
  max-width: 100%;
  margin: auto;
  margin-bottom: 0rem;
}

.box-premios .premios-card .premios-card-thumbnail {
  max-width: 420px;
  text-align: center;
  margin: auto;
}

.box-premios .premios-card .premios-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0rem 3rem;
  min-height: 120px;
  justify-content: space-around;
}

.box-premios .premios-card .premios-card-info.card-info2 {
  min-height: 70px;
  margin-top: 0rem;
  border: 2px solid white;
  border-radius: 1rem;
  background: transparent;
  padding: 1rem 1rem;
}

.box-premios .premios-card .premios-card-info .premios-card-name {
  font-size: 2.5rem;
  font-style: normal;
  line-height: 110%;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: center;
}

.box-premios .premios-card .premios-card-info .premios-card-name.card-name2 {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  color: var(--c-white);
}

.box-premios .premios-card .premios-card-info .premios-card-name.card-name2 span {
  background: var(--c-white);
  color: var(--c-blue1);
  padding: 0.2rem 1rem;
  border-radius: 0.6rem;
  margin: 0rem 0.7rem;
}

.box-premios .premios-card .premios-card-info .premios-card-description {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-blue1);
  background: var(--c-white);
  padding: 2rem;
  display: block;
  text-transform: uppercase;
  text-align: center;
  border-radius: 1rem;
}

.box-premios .premios-card .premios-card-info .premios-buttom {
  text-align: right;
}

.box-premios {
  grid-template-columns: 0.96fr 250px 1fr !important;
  /*grid-template-columns: 1fr 310px 1fr !important;*/
}

.box-premios .slick-list {
  margin-bottom: 0rem !important;
}

.box-premios .slick-slide img,
.box-premios .slick-slide .img-placeholder {
  width: 100%;
  max-width: 350px;
  transform: scale(1);
  margin: auto;
}

/* SECTION - Meu extrato */
.section.meuextrato {
  position: relative;
  background: url(../img/background/bkg1_1913.webp) no-repeat center center !important;
  background-size: cover !important;
  overflow: hidden !important;
}
@media (max-width: 991px) {
  .section.meuextrato {
    background: url(../img/background/bkg1_991.webp) no-repeat center center !important;
  }
}
.section.meuextrato .pack {
  margin-top: -10rem;
  margin-bottom: -10rem;
  z-index: -1;
}
@media (max-width: 991px){
  .section.meuextrato .pack {
    margin-top: 0rem;
    
  }
}
.section.meuextrato .botao-acao a {
  font-size: 1.5rem;
  line-height: 1;
}

.section.meuextrato .scroll-container {
  order: none;
  margin: 20px 0;
  max-height: 307px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.section.meuextrato .box {
  position: relative;
  background-color: var(--c-black);
  padding: 4rem 3rem 4.8rem 3rem;
  border-radius: 4rem;
}

.section.meuextrato .box .title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.section.meuextrato .box .description {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
}

.section.meuextrato .box .description_details {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-blue1);
  font-family: var(--font-sans);
}

/* SECTION - Meus pontos */
/* Header */
.section.meuspontos .header-section {
  max-width: 730px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section.meuspontos .header-section .eyebrow {
  color: var(--c-white);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
/* ====== Box Total de Pontos ====== */
.section.meuspontos .total-pontos-box {
  position: relative;
  text-align: center;
}

.section.meuspontos .total-pontos-number {
  background: white;
  box-shadow: inset -1px 0px 60px 20px #ebdfcf;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* box-shadow:  0px 0px 8px 0px rgb(255 190 0); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.section.meuspontos .total-pontos-number:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section.meuspontos .total-pontos-number .number {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-sans);
  color: var(--c-black2);
  margin-bottom: 1rem;
}

.section.meuspontos .total-pontos-number .label {
  font-size: 1.8rem;
  color: var(--c-black2);
  text-align: center;
  margin-bottom: 0rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

@media (max-width: 991px) {
  .section.meuspontos .total-pontos-number {
    padding: 2.5rem 1.5rem;
  }
  
  .section.meuspontos .total-pontos-number .number {
    font-size: 3.5rem;
  }
  
  .section.meuspontos .total-pontos-number .label {
    font-size: 1.4rem;
  }
}

/* Botão de resgate */
.section.meuspontos .ctaFlutuante {
  margin-top: 0rem;
  margin-bottom: 2rem;
}

/* Animação de pulsar para o botão Quero Resgatar (apenas quando habilitado) */
@keyframes pulseBtnResgatar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.section.meuspontos #btn-resgatar:not([disabled]):not([aria-disabled="true"]) {
  animation: pulseBtnResgatar 0.5s ease-in-out infinite;
}

.section.meuspontos #btn-resgatar[disabled],
.section.meuspontos #btn-resgatar[aria-disabled="true"] {
  animation: none !important;
}

/* SECTION - Pontuação */
.section.pontuacao {
  position: relative;
  background: url(../img/background/bkg2_1913.webp) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
/* Product Points Section */
.section.pontuacao .cp2-product-points {
  position: relative;
  z-index: 2;
  margin-top: 0rem;
}

.section.pontuacao .cp2-product-points .points-box {
  background: white;
  box-shadow: inset -1px 0px 60px 20px #ebdfcf;
  border-radius: 1.5rem;
  padding: 4.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section.pontuacao .cp2-product-points .points-title {
  font-size: 2.2rem;
  color: var(--c-black2);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.section.pontuacao .cp2-product-points .points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0;
  align-items: start;
  position: relative;
}

.section.pontuacao .cp2-product-points .points-column {
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}

.section.pontuacao .cp2-product-points .points-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-blue1);
}

.section.pontuacao .cp2-product-points .points-value {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-white);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-family: var(--font-sans);
  display: inline-block;
  background: var(--c-blue1);
  padding: 1rem 2rem 0.9rem 2rem;
  border-radius: 2rem;
}

.section.pontuacao .cp2-product-points .points-brands {
  display: flex;
  flex-direction: row;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.section.pontuacao .cp2-product-points .brand-img {
  height: 45px;
  object-fit: contain;
  display: block;
}

/* Responsivo básico - Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
  .section.pontuacao .equation {
    padding-left: 0rem;
  }
  
  .section.pontuacao .cp2-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section.pontuacao .cp2-steps .step-title {
    font-size: 1.4rem;
  }
  
  .section.pontuacao .cp2-steps .step-text {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-left: 0rem;
  }
  
  .section.pontuacao .cp2-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .section.pontuacao .cp2-ajipanda {
    margin-top: 6rem;
  }
  
  .section.pontuacao .cp2-ajipanda .ajipanda-title {
    font-size: 2.4rem;
  }
  
  .section.pontuacao .cp2-product-points .points-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  
  .section.pontuacao .cp2-product-points .points-column {
    padding: 0 1.5rem;
  }
  
  .section.pontuacao .cp2-product-points .points-box {
    padding: 3rem 2rem;
  }
  
  .section.pontuacao .cp2-product-points .points-brands {
    gap: 1rem;
  }
  
  .section.pontuacao .cp2-product-points .brand-img {
    max-width: 100px;
  }
}

/* Responsivo básico - Mobile */
@media (max-width: 991px) {
  .section.pontuacao .padding {
    padding: 5rem 3rem!important;
  }
  .section.pontuacao .cp2-product-points {
    margin-top: 0rem;
  }
  
  .section.pontuacao .cp2-product-points .points-box {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }
  
  .section.pontuacao .cp2-product-points .points-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  
  .section.pontuacao .cp2-product-points .points-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  
  .section.pontuacao .cp2-product-points .points-column {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
  
  .section.pontuacao .cp2-product-points .points-column:not(:last-child)::after {
    display: none;
  }
  
  .section.pontuacao .cp2-product-points .points-column::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.5rem;
    height: 1px;
    background: var(--c-blue1);
  }
  
  .section.pontuacao .cp2-product-points .points-column:last-child::before {
    display: none;
  }
  
  .section.pontuacao .cp2-product-points .points-brands {
    gap: 1rem 4rem;
  }
  
  .section.pontuacao .cp2-product-points .brand-img {
    max-width: 100px;
  }
}

/*SECTION - REALIZAR UPLOAD */
.section.realizarupload {
  position: relative;
}

/*SECTION - ESQUECI MINHA SENHA */
.section.redefinirsenha {
  position: relative;
}
/* Gradiente sobre o background para melhorar legibilidade do texto */

.section.redefinirsenha .content-section {
  width: 100%;
  margin: auto;
}

/*SECTION - REDEFINIÇÃO DE SENHA */
.section.redefinirsenha {
  position: relative;
}

.section.redefinirsenha .header-section h2 {
  color: var(--c-white);
}

.section.redefinirsenha .header-section h3 {
  text-align: center;
  color: var(--c-white);
  font-weight: 400;
}

/* .section.redefinirsenha [class*="vld-"] + .error,
.section.redefinirsenha label.error {
background-color: var(--c-blue1);
color: var(--c-white);
font-size: 1.1rem;
line-height: 1;
padding: 0.5rem 1.8rem;
border-radius: 0.3rem;
margin-top: -3px;;
} */

.section.redefinirsenha .float-placeholder {
  top: 6px;
}

@media (max-width: 991px) {
  /* Base protótipo */
  .main .header .content {
    width: auto;
  }
  
  .main .section .content {
    width: auto;
  }
  
  .main .footer .content {
    width: auto;
  }
}

/*Tela de Erro*/
#erro {
  position: relative;
}

#erro .padding {
  padding: 5rem 3rem;
}

#erro .content-section {
  position: relative;
  height: 100%;
}

#erro .header-section {
  margin-bottom: 4rem;
}

@media (min-width: 320px) and (max-width: 374px) {
  #erro .content-section {
    height: 533px !important;
  }
}

@media (min-width: 375px) and (max-width: 413px) {
  #erro .content-section {
    height: 777px !important;
  }
}

@media (min-width: 375px) and (height: 667px) {
  #erro .content-section {
    height: 822px !important;
  }
}

#erro .logo-promocao {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

#erro .logo-promocao img {
  width: 100%;
  max-width: 550px;
}

.section.inicio.aguarde {
  position: relative!important;
  background: url(../img/background/bkg1_1913.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}

.section.inicio.aguarde .padding {
  padding: 7rem 3rem 10rem 3rem;
}
@media (max-width: 991px) {
  .section.inicio.aguarde .padding {
    padding: 7rem 3rem 7rem 3rem!important;
  }
}

.section.inicio.aguarde .logo {
  margin-bottom: 3rem;
}

.section.inicio.aguarde .header-section h2 {
  font-size: 2.5rem;
}

.section#erro .aguarde {
  position: absolute;
  z-index: 3;
  top: 60%;
  left: 5%;
  width: 36%;
}

.section#erro .aguarde .img-aguarde {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section.aguarde .header-section h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--c-white);
  font-size: 3.5rem;
  line-height: 120%;
}

.section.aguarde .icone-aguarde1 {
  position: absolute;
  top: 0%;
  left: -7%;
}

.section.aguarde .icone-aguarde1 img {
  max-width: 100%;
}

.section.aguarde .icone-aguarde2 {
  position: absolute;
  top: 0%;
  right: -7%;
}

.section.aguarde .icone-aguarde2 img {
  max-width: 100%;
}

.section.aguarde h2.titulo.tituloaguarde {
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic !important;
  text-transform: none !important;
  font-size: 60px !important;
  line-height: 60px !important;
}

@media (max-width: 412px) {
  .section.aguarde h2.titulo.tituloaguarde {
    font-size: 40px !important;
    line-height: 50px !important;
  }
  
  .section.aguarde .header-section h1 {
    font-size: 25px;
    line-height: 120%;
    margin-top: -40px !important;
    margin-bottom: 5px !important;
  }
  
  .section.aguarde .logopromocao {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .section#erro .aguarde {
    position: absolute;
    z-index: 3;
    top: 28%;
    left: 5%;
    width: 86%;
  }
  
  .section#erro .aguarde .img-aguarde {
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .section#erro .logopromocao {
    width: 100% !important;
  }
  
  #erro .header-section {
    margin-top: 30px;
  }
}

#erro .titulo {
  position: relative;
  font-size: 3.5rem;
  line-height: 40px;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
}

#erro .texto {
  position: relative;
  font-size: 20px;
  line-height: 25px;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: none;
}

#erro .texto span {
}

#erro .call-to-action {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #erro {
    position: relative;
  }
  
  #erro .padding {
    padding: 3rem 3rem !important;
  }
  
  #erro .content-section {
    height: 100vh !important;
  }
  
  #erro .titulo {
  }
  
  #erro .texto {
    position: relative;
    font-size: 20px;
    line-height: 25px;
  }
  
  #erro .titulo {
    margin-bottom: 10px !important;
  }
}

/* __Elementos | Aguarde - Erro */
#erro .elemento1 {
  position: absolute;
  bottom: 25%;
  left: 68%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento2 {
  position: absolute;
  top: 10%;
  left: 9%;
  width: 20.1%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 9s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento3 {
  position: absolute;
  top: 40%;
  left: 0%;
  width: 11%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 11s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento4 {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 21%;
  animation-name: efeitoSobeDesceDois;
  animation-duration: 12s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento5 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 24%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento6 {
  position: absolute;
  top: 35%;
  right: 22%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento7 {
  position: absolute;
  top: 13%;
  right: 41%;
  width: 20%;
  animation-name: efeitoSobeDesce;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 1;
}

#erro .elemento1 img,
#erro .elemento2 img,
#erro .elemento3 img,
#erro .elemento4 img,
#erro .elemento6 img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #erro .elemento1 {
    width: 25%;
    left: -4%;
  }
  
  #erro .elemento4 {
    bottom: 44%;
    left: -7%;
    width: 25%;
  }
  
  #erro .elemento5 {
    width: 15%;
    top: 1%;
    right: 2%;
  }
}

/* Faixa de encerramento da promocão */
.encerramento {
  display: none !important;
  position: fixed;
  z-index: 99999999;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  text-align: center;
  font-weight: 700;
  line-height: 100%;
  color: var(--c-white);
  background: var(--c-yellow1);
  font-family: var(--font-sans);
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.encerramento i {
  color: var(--c-yellow1);
  display: inline-block;
  font-size: 3rem;
  position: relative;
  top: 3px;
  margin-right: 0.8rem;
}

.encerramento[data-enable-shutdown="false"] {
  display: none !important;
}

.encerramento[data-enable-shutdown="true"] {
  display: block !important;
}

@media (max-width: 991px) {
  .encerramento {
    padding: 2.5rem 9rem;
  }
  
  .encerramento i {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    top: inherit;
    margin-right: inherit;
  }
}

[class*="vld-"] + .select2 + .error {
  text-align: left;
  display: inline-block;
  width: 100%;
  margin-top: 3px;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  padding: 5px 1.5rem 7px 1.5rem !important;
  background: #d30c0c;
  border-radius: 4px !important;
  color: var(--c-white);
  font-family: "Knockout-HTF29", Arial, sans-serif;
  margin-bottom: 7px;
}

[class*="vld-"] + .select2 + .error {
  font-size: 12px;
  line-height: 12px;
  color: #fff4fa;
  display: block;
  background: red;
  padding: 8px 1.5rem;
  border-radius: 11px 0px 10px 0px;
}

[class*="vld-"]:not(.error) + .select2 + .error {
  display: none;
}

/*PDF*/
.rtp .panel {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 1.5rem;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  background: #ffffff;
  min-height: 200px;
}

.rtp .loading {
  color: #000000 !important;
}

.rtp .loading i[class^="icon-"] {
  color: #fd8830 !important;
}

.ipgs-theme-default .ipgs-book-loading-info {
  background: rgb(226 0 25) !important;
}

.ipgs-theme-default .ipgs-stage {
  background-color: var(--c-white);
  /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) inset;*/
  box-shadow: none !important;
}

.ipgs-theme-default .ipgs-page .ipgs-extra .ipgs-number {
  display: none !important;
}

.ipgs-theme-default .ipgs-book-loading {
  background: var(--c-white);
}

.ipgs-theme-default .ipgs-control-pagenumber .ipgs-pagenumber-label {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #000000 !important;
}

.ipgs-control {
  transition: all 0.3s ease-in-out !important;
}

.ipgs-control:hover {
  transform: scale(1.1) !important;
}

.ipgs-control.ipgs-control-download {
  cursor: pointer !important;
  background: var(--c-blue1);
  border-radius: 5px !important;
}

.ipgs-control.ipgs-control-download .ipgs-icon-download {
  opacity: 1 !important;
  filter: invert() !important;
}

/* CADASTRO CUPOM - REALIZAR UPLOAD */
/* =============================== */
/* --------- IMG styles --------- */
/* =============================== */

#cadastrocupom-imgUpload {
  display: table;
  margin: auto;
  border-spacing: 20px 15px;
  width: 100%;
}

#cadastrocupom-imgUpload > div {
  display: grid;
  vertical-align: inherit;
  margin: auto;
  text-align: center !important;
  margin-top: 10px;
}

#cadastrocupom-imgUpload > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#cadastrocupom-imgUpload:not(.loaded) .upload-reset,
#cadastrocupom-imgUpload.loaded .upload-change,
#cadastrocupom-imgUpload:not(.loaded) .filename,
#cadastrocupom-imgUpload.loaded .placeholder {
  display: none;
}

#cadastrocupom-imgUpload .txt-envie {
  margin-top: 15px;
  color: var(--c-white);
  font-size: 15px;
  line-height: 17px;
  font-family: var(--font-sans);
  font-weight: 700;
}

#cadastrocupom-imgUpload .icone-arquivo-carregado {
  /* color: #ece113; */
  display: none;
}

#cadastrocupom-imgUpload .arquivo-carregado,
#cadastrocupom-imgUpload .filename {
  font-size: 14px;
  line-height: 140%;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 0px;
}

#cadastrocupom-imgUpload .filename {
  color: var(--c-blue1);
  font-weight: 700;
}

#cadastrocupom-imgUpload .upload-preview {
  width: 130px;
  height: 130px;
  background-color: var(--c-blue1);
  border-radius: 7px;
  border: 0;
}

#cadastrocupom-imgUpload [data-plugin="upload"] .upload-preview > div {
  display: grid !important;
}

/*Não exibe o hover, após a imagem carregada*/
#cadastrocupom-imgUpload [data-plugin="upload"].loaded .upload-preview:hover > div {
  opacity: 0 !important;
}

@media (max-width: 991px) {
  #cadastrocupom-imgUpload {
    margin-left: 0;
    border-spacing: 0;
    width: 100%;
  }
  
  #cadastrocupom-imgUpload > div {
    text-align: center !important;
    width: 100% !important;
    display: grid;
    vertical-align: inherit !important;
    margin: auto !important;
  }
  
  #cadastrocupom-imgUpload > div [class*="vld-"] + .error {
    background: var(--c-white);
  }
  
  #cadastrocupom-imgUpload:not(.loaded) .upload-reset,
  #cadastrocupom-imgUpload.loaded .upload-change,
  #cadastrocupom-imgUpload:not(.loaded) .filename,
  #cadastrocupom-imgUpload.loaded .placeholder {
    display: none;
  }
  
  #cadastrocupom-imgUpload .txt-envie {
    margin-top: 15px;
    /*color: #ffffff;*/
    font-size: 15px;
    line-height: 17px;
    font-family: var(--font-sans);
    font-weight: 700;
  }
  
  #cadastrocupom-imgUpload .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
  }
  
  #cadastrocupom-imgUpload .arquivo-carregado,
  #cadastrocupom-imgUpload .filename {
    font-size: 12px;
    color: var(--c-white);
    font-family: var(--font-sans);
    font-weight: 500;
  }
  
  #cadastrocupom-imgUpload .upload-preview {
    /*width: 100px;*/
    /*height: 100px;*/
    /*background-color: #f5efdd;*/
    /*border-radius: 7px;*/
    /*border: 0;*/
  }
}

/* Preview principal dos uploads, adaptado para #img2 */
#cadastrocupom-imgUpload .upload-preview {
  width: 180px;
  height: 180px;
  background-color: var(--c-blue1);
  border: 2px solid var(--c-white);
  background-size: cover;
}

#cadastrocupom-imgUpload .upload-preview.upload-preview--pdf {
  /* Ícone PDF: no máximo 100px (largura), altura proporcional */
  background-size: 100px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Especificidade acima de .section.cadastro-cupom #cadastrocupom-imgUpload .upload-preview (qrcode.css) */
.section.cadastro-cupom #cadastrocupom-imgUpload .upload-preview.upload-preview--pdf {
  background-size: 100px auto !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* REALIZAR UPLOAD */
/* =============================== */
/* --------- IMG styles --------- */
/* =============================== */

#realizarupload-imgUpload {
  display: table;
  margin: auto;
  border-spacing: 20px 15px;
  width: 100%;
}

#realizarupload-imgUpload > div {
  display: grid;
  vertical-align: inherit;
  margin: auto;
  text-align: center !important;
  margin-top: 10px;
}

#realizarupload-imgUpload > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#realizarupload-imgUpload:not(.loaded) .upload-reset,
#realizarupload-imgUpload.loaded .upload-change,
#realizarupload-imgUpload:not(.loaded) .filename,
#realizarupload-imgUpload.loaded .placeholder {
  display: none;
}

#realizarupload-imgUpload .txt-envie {
  margin-top: 15px;
  color: var(--c-white);
  font-size: 15px;
  line-height: 17px;
  font-family: var(--font-sans);
  font-weight: 700;
}

#realizarupload-imgUpload .icone-arquivo-carregado {
  /* color: #ece113; */
  display: none;
}

#realizarupload-imgUpload .arquivo-carregado,
#realizarupload-imgUpload .filename {
  font-size: 14px;
  line-height: 140%;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 0px;
}

#realizarupload-imgUpload .filename {
  color: var(--c-yellow1);
  font-weight: 700;
}

#realizarupload-imgUpload .upload-preview {
  width: 130px;
  height: 130px;
  background: var(--c-bluelight1)!important;
  border-radius: 7px;
  border: 0;
}

#realizarupload-imgUpload [data-plugin="upload"] .upload-preview > div {
  display: grid !important;
}

/*Não exibe o hover, após a imagem carregada*/
#realizarupload-imgUpload [data-plugin="upload"].loaded .upload-preview:hover > div {
  opacity: 0 !important;
}

@media (max-width: 991px) {
  #realizarupload-imgUpload {
    margin-left: 0;
    border-spacing: 0;
    width: 100%;
  }
  
  #realizarupload-imgUpload > div {
    text-align: center !important;
    width: 100% !important;
    display: grid;
    vertical-align: inherit !important;
    margin: auto !important;
  }
  
  #realizarupload-imgUpload > div [class*="vld-"] + .error {
    background: var(--c-white);
  }
  
  #realizarupload-imgUpload:not(.loaded) .upload-reset,
  #realizarupload-imgUpload.loaded .upload-change,
  #realizarupload-imgUpload:not(.loaded) .filename,
  #realizarupload-imgUpload.loaded .placeholder {
    display: none;
  }
  
  #realizarupload-imgUpload .txt-envie {
    margin-top: 15px;
    /*color: #ffffff;*/
    font-size: 15px;
    line-height: 17px;
    font-family: var(--font-sans);
    font-weight: 700;
  }
  
  #realizarupload-imgUpload .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
  }
  
  #realizarupload-imgUpload .arquivo-carregado,
  #realizarupload-imgUpload .filename {
    font-size: 12px;
    color: var(--c-white);
    font-family: var(--font-sans);
    font-weight: 500;
  }
  
  #realizarupload-imgUpload .upload-preview {
    /*width: 100px;*/
    /*height: 100px;*/
    /*background-color: #f5efdd;*/
    /*border-radius: 7px;*/
    /*border: 0;*/
  }
}

/* Preview principal dos uploads, adaptado para #img2 */
#realizarupload-imgUpload .upload-preview {
  width: 180px;
  height: 180px;
  background-color: var(--c-blue1);
  border: 2px solid var(--c-white);
  background-size: cover;
}

/* Centralizar label de erro do upload (CupomImagem) */
label#CupomImagem-error {
  text-align: center;
}

/* SECTION - CADASTRO CUPOM; */
.section.cadastro-cupom .chave-acesso {
  background: var(--c-black);
  padding: 3rem;
  display: inline-block;
  border-radius: 2rem;
  margin-bottom: 5rem;
  width: 100%;
  max-width: 600px;
}

.section.cadastro-cupom .chave-acesso .text-chaveacesso {
  font-size: 2.4rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 2rem;
}

.section.cadastro-cupom .content-section {
  width: 90%;
  margin: auto;
}

#cadastrocupom label.custom-control-label {
  padding-top: 0.4rem;
}

.section.cadastro-cupom .box {
  background: transparent;
  padding: 0px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.section.cadastro-cupom .responsabilidade {
  background: var(--c-blue1);
  padding: 2rem;
  position: relative;
  border-radius: 0rem;
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: var(--font-sans);
  font-weight: 400;
  margin-top: 0rem;
  margin-bottom: 0rem;
  border: 0px solid var(--c-white);
}

.section.cadastro-cupom .titulo-step {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--c-white);
  font-size: 28px;
  line-height: 29px;
  text-align: left;
  text-transform: uppercase;
}

.section.cadastro-cupom a.icone {
  position: absolute;
  color: #0b6d3a;
  top: 27px;
  right: 25px;
  z-index: 1;
  font-size: 23px;
  cursor: pointer;
}

.section.cadastro-cupom .eye [data-togglepassword] {
  top: 50%;
  transform: translateY(-50%);
}

.section.cadastro-cupom .enviar .vld-img.vld-error {
  font-size: 1.5rem;
  line-height: 23px;
  color: #e90a2a;
  font-family: var(--font-sans);
  font-weight: 500;
}

.total {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 25px;
  line-height: 26px;
  color: var(--c-white);
  letter-spacing: 0px;
  text-transform: inherit;
  text-align: center;
  margin-bottom: 20px;
}

.total span {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-white);
}

.tbitems-remove {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--c-bluelight1);
  transition: all 0.3s ease;
}
.tbitems-remove:hover,
.tbitems-remove:focus {
  color: var(--c-bluelight1);
}

.section.cadastro-cupom [class*="vld-"] + .error {
  color: var(--c-error);
}

.section.cadastro-cupom .float-placeholder {
  top: 5px;
}

#cadastrocupom-frm-chaveacesso .float-placeholder {
  top: -10px;
}

.section.cadastro-cupom label#cadastrocupom-CupomImagem-error ,
.section.cadastro-cupom label#cadastrocupom-CadastroCupomAceite-error {
  text-align: center;
}

label.custom-control-label {
  padding-top: 0.8rem;
}

.section.cadastro-cupom label#AceiteRegulamento-error,
.section.cadastro-cupom label#AceitePrivacidade-error,
.section.cadastro-cupom label#AceitePromo-error,
.section.cadastro-cupom label#AceitePolitica-error,
.section.cadastro-cupom label#AceiteComunicacao-error,
.section.cadastro-cupom label#Pincode-error {
  color: var(--c-error);
}

.section.cadastro-cupom .box-categoria {
  position: relative;
  background: #b500005c;
  padding: 4rem 2rem 2rem 2rem;
  border: 2px solid #ffcb05;
  border-radius: 2rem;
}

label#QtdProdutos-error {
  text-align: center;
}

#frm-cadastrocupom table.table tbody td i {
  display: none !important;
}

.cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
  display: contents;
}

#frm-cadastrocupom
.custom-control-input:checked
~ .custom-control-label::before {
  background: var(--c-white) !important;
  border-color: var(--c-white) !important;
}

.cadastro-cupom table.table th {
  background-color: transparent !important;
  color: var(--c-bluelight1) !important;
  padding: 2rem 2rem 2rem 2rem;
  text-transform: uppercase;
}

/* Tabela de itens — miniatura alinhada à listagem de produtos */
.cadastro-cupom .cadastro-produtos-table .cadastro-produtos-table__thumb {
  width: 100%;
  max-width: 120px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cadastro-cupom .cadastro-produtos-table .cadastro-produtos-table__img {
  text-align: center;
  vertical-align: middle;
}

.cadastro-cupom .cadastro-produtos-table .cadastro-produtos-table__nome {
  font-weight: 600;
  color: var(--c-white);
}

/* Estado vazio da tabela */
.cadastro-cupom .cadastro-produtos-table tr.tbitems-placeholder td {
  color: #00baff !important;
  font-weight: 800;
  text-align: center;
  padding: 2rem 1.5rem !important;
  background: rgb(1 4 191) !important;
}

.cadastro-cupom table.table th i {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .section.cadastro-cupom .content-section {
    width: 100%;
  }
  
  .section.cadastro-cupom .titulo {
    text-align: center;
  }
  
  .section.cadastro-cupom .total {
    margin-bottom: 15px;
  }
  
  .cadastro-cupom table.table .title-table-mobile {
    text-transform: uppercase !important;
  }
  
  .cadastro-cupom table.table tbody tr td:first-child {
    font-weight: 500 !important;
  }
  
  #frm-cadastrocupom table.table tbody td {
    padding: 10px 10px !important;
  }
  
  #frm-cadastrocupom table.table tbody td i {
    display: none !important;
  }
}

/* Cols com ícones (vercupom, eye, buscaCep) - necessário para position: absolute */
.col:has(.vercupom),
.col:has(.eye),
.col:has(.buscaCep),
[class*="col-"]:has(.vercupom),
[class*="col-"]:has(.eye),
[class*="col-"]:has(.buscaCep) {
  position: relative;
}

/* Evitar sobreposição do texto com ícones nos campos */
.col:has(.vercupom) .form-control,
[class*="col-"]:has(.vercupom) .form-control {
  padding-right: 4.5rem;
}

.col:has(.buscaCep) .form-control,
[class*="col-"]:has(.buscaCep) .form-control {
  padding-right: 4.5rem;
}

.col:has(.eye) .form-control,
[class*="col-"]:has(.eye) .form-control {
  padding-right: 4rem;
}

/* Busca CEP - ícone de ajuda no campo CEP */
.buscaCep {
  margin: auto;
  display: inherit;
}

.buscaCep a {
  height: 35px;
  width: 35px;
  text-decoration: none !important;
  position: absolute;
  color: var(--c-black);
  background: transparent;
  border-radius: 100px;
  top: 25px;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 16px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.buscaCep a:hover {
  color: var(--c-black);
  background: transparent;
}

.buscaCep a i {
  color: var(--c-gray);
  line-height: 35px;
}

.buscaCep a i:hover {
  color: var(--c-white);
}

/*Imagem cupom fiscal*/
.vercupom {
  margin: auto;
  display: inherit;
}

.vercupom a {
  height: 35px;
  width: 35px;
  text-decoration: none !important;
  position: absolute;
  color: var(--c-blue1);
  background: transparent;
  border-radius: 100px;
  top: 16px;
  right: 9px;
  z-index: 1;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
}

.vercupom a:hover {
  color: var(--c-blue1);
  background: transparent;
}

.vercupom a i {
  color: var(--c-blue1);
}

.vercupom a i:hover {
  color: var(--c-blue1);
}

.popup-vercupom .cupomfiscal {
  position: relative;
}

.popup-vercupom .cupomfiscal img {
  width: 100%;
  max-width: 350px;
}

.popup-vercupom .carousel-item {
  padding-left: 10px;
  padding-right: 10px;
}

.popup-vercupom .cupom-de-exemplo {
  position: relative;
  margin-top: 20px;
}

.popup-vercupom .cupom-de-exemplo .img-cupom-de-exemplo {
  width: 100%;
  max-width: 520px;
}

@media (max-width: 991px) {
  .popup-vercupom {
    right: 20px;
    position: absolute;
  }
  
  .popup-vercupom a {
    text-align: center;
    font-size: 25px;
    line-height: 25px;
  }
  
  .popup-vercupom .carousel-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.popup-vercupom .carousel-control-prev-icon,
.popup-vercupom .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23eec951' viewBox='0 0 8 8'%3E%3Cpath d='M4.854 1.146a.5.5 0 0 1 0 .708L2.707 4l2.147 2.146a.5.5 0 0 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708l2.5-2.5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.popup-vercupom .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23eec951' viewBox='0 0 8 8'%3E%3Cpath d='M3.146 1.146a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 1 1-.708-.708L5.293 4 3.146 1.854a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.popup-vercupom .carousel-control-prev-icon,
.popup-vercupom .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/* SECTION - CADASTRO SELECAO; */
.section.cadastro-selecao {
}
@media (max-width: 991px) {
  .section.cadastro-selecao {
  }
}

.section.cadastro-selecao .selecao {
  margin-top: 0rem;
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
}

/*.section.cadastro-selecao .selecao .img-selecao {}*/

.section.cadastro-selecao .selecao .text-selecao {
  font-size: 3.5rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  text-align: center;
}
.section.cadastro-selecao .selecao .selecao1:hover .text-selecao {
  color: var(--c-white);
}
.section.cadastro-selecao .selecao .selecao2:hover .text-selecao {
  color: var(--c-white);
}

/* SECTION - CADASTRO PINCODE; */
.section.cadastro-pincode {
}
@media (max-width: 991px) {
  .section.cadastro-pincode {
  }
}

.section.cadastro-pincode .inserir-pincode {
  background: var(--c-blue1);
  padding: 3rem;
  display: inline-block;
  border-radius: 2rem;
  width: 100%;
  max-width: 600px;
}

.section.cadastro-pincode .inserir-pincode .text-pincode {
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  text-align: center;
}

/* Section PRODUTOS LISTA */
.section.produtos .subcategoria {
  padding: 0px;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-white);
}

.section.produtos.produtos_lista .lista-produtos .item .nome {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1rem;
  color: var(--c-blue1);
  background: var(--c-white);
  text-transform: none;
  border-radius: 0.7rem 0.7rem 0rem 0rem;
  margin-bottom: 0px;
  letter-spacing: 0px;
  height: 84px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section.produtos.produtos_lista .lista-produtos .item .nome p.title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: var(--c-blue1);
  font-weight: 700;
}

.section.produtos.produtos_lista .lista-produtos .item .nome p.description,
.section.produtos.produtos_lista .lista-produtos .item .nome p.description2 {
  font-size: 1.7rem;
  margin-bottom: 0rem;
  font-weight: 400;
  color: var(--c-black);
  text-align: center;
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  position: relative;
  padding: 2rem;
  background: var(--c-white);
  border-radius: 0rem 0rem 0.7rem 0.7rem;
  /**/
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca img {
  max-width: 50%;
}

img.img-pontos {
  position: absolute !important;
  top: 5px !important;
  right: 5px !important;
  width: 100% !important;
  max-width: 80px !important;
}

.section.produtos.produtos_lista .lista-produtos {
  width: 100%;
  text-align: center;
  margin: 20px 0 20px 0;
}

/* Contador */
.box-countdown {
  background: var(--c-blue1);
  border-radius: 1rem;
  padding: 4rem 3rem 3rem 3rem;
  max-width: 500px;
  margin: auto;
}
.countdown {
  position: relative;
  top: 0%;
  right: 0%;
  z-index: 9;
  margin-bottom: 5px;
  /* width: 800px; */
  margin-bottom: 2rem;
}

.countdown .count {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.countdown .digits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--c-white) !important;
  width: 80px;
  height: 100px;
  border-radius: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 400;
  box-shadow: 0px 11px 10px 1px rgba(0, 0, 0, 0.2);
}

.countdown .digits br {
  display: none;
}

span.line {
  position: absolute;
  z-index: 0;
  left: 12.6%;
  top: 43px;
  content: "";
  width: 77.7px;
  height: 1px;
  border: 1px solid #5b5b5b;
}

.countdown .digits span {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-blue1);
}

@media (max-width: 991px) {
  .countdown {
    margin-bottom: 15px;
    margin-top: 5px;
    width: 100%;
  }
  .countdown .count {
    gap: 1rem;
  }
  .countdown .digits div {
    font-size: 3.5rem!important;
  }
  .countdown .digits {
    width: 60px;
    height: 80px;
  }
}

.countdown .info {
  font-size: 3rem;
  padding: 0px;
  line-height: 100%;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.countdown .digits div {
  font-size: 4.5rem;
  color: var(--c-yellow1);
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  z-index: 1;
  width: auto;
  height: auto;
  position: relative;
}

/* Caue CSS */

/* Meu Extrato */
.total-sorte-container p {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.total-sorte-container span {
  padding: 4px 12px;
  align-self: flex-end;
  justify-self: flex-end;
  border-radius: 2rem;
  background: var(--c-white);
  font-weight: 700;
  font-size: 2.8rem;
  margin-left: 8px;
  text-align: center;
}

/* Geral */
.text-xl {
  font-size: 2.4rem !important;
}

/* Popup Foto Cupom */
#popup-fotocupom .modal-content {
  min-width: 750px;
}

#popup-fotocupom .modal-dialog {
  max-width: 750px;
}

#popup-fotocupom .cupom-exemplo-container img {
  transition: all 0.3s ease;
}

#popup-fotocupom .cupom-exemplo-container img:focus,
#popup-fotocupom .cupom-exemplo-container img:hover {
  transform: scale(1.1);
}

#popup-fotocupom .box-info-cupom {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: 10px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--c-black);
  max-width: 260px;
  font-size: 1.6rem;
  margin: 0 auto;
}

.cupom-exemplo-container {
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  #popup-fotocupom .box-info-cupom {
    transform: translateX(20%);
  }
  
  #popup-fotocupom .titulo {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 400px) {
  #popup-fotocupom .box-info-cupom {
    transform: none;
  }
}

/* Copiar */
.btn-copiar {
  --btn-bg-solid: var(--c-blue1);
  width: 100%;
  padding: 2.4rem 4rem !important;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  ) !important;
  background-size: 200% 100% !important;
  background-position: 100% 0 !important;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-copiar .copiar-value,
.btn-copiar .copiar-value i {
  color: white !important;
  font-size: 2.4rem !important;
}

.btn-copiar:hover,
.btn-copiar:focus-visible {
  background-position: 0 0 !important;
}

.copiar-value {
  font-weight: bold;
}

.feedback-codigo .feedback-codigo-text {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  color: var(--c-white) !important;
  background: rgba(0, 0, 0, 0.65);
  padding: 1rem;
  width: 100%;
  border-radius: 12px;
  margin: 0 !important;
  margin-bottom: 0.8rem !important;
  transition: all 0.1s ease;
}

/* Checkbox */
.section.cadastro-cupom .custom-checkbox label.error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-left: 1.2rem;
  margin-top: 8px;
  padding: 0rem;
  background: transparent;
  text-align: center;
}

#CadastroCupomAceite-error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-left: 1.2rem;
  margin-top: 8px;
  padding: 0rem;
  background: transparent;
  text-align: center;
  color: var(--c-error)!important;
}

/* Switch */
.form-switch {
  display: flex !important;
  padding-left: 0 !important;
  cursor: pointer !important;
  justify-content: flex-end !important;
}

.form-switch input {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  max-width: 32px !important;
  max-height: 16px !important;
  margin-left: 0 !important;
  cursor: pointer !important;
}

.form-switch .custom-control-label {
  font-family: var(--font-sans);
  font-size: 1.3rem !important;
  text-transform: uppercase;
  font-style: normal !important;
  font-weight: 700;
  white-space: nowrap !important;
  color: var(--c-white) !important;
  padding: 5px 0 0px 1rem;
}

/* Not Checked e Focus */
.form-switch .form-check-input,
.form-switch .form-check-input:focus {
  background-color: var(--c-white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2316222B'/%3e%3c/svg%3e") !important;
  border: 1px solid var(--c-white) !important;
  outline: none !important;
}

/* Checked */
.form-switch .form-check-input:checked {
  background-color: var(--c-white);
  border-color: var(--c-white) !important;
  opacity: 1 !important;
  background-position: right center !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2316222B'/%3e%3c/svg%3e") !important;
}

/* Checkbox */
.form-check {
  /*display: flex !important;*/
  /*align-items: center;*/
  /*flex-wrap: wrap;*/
}

.cadastro.cadastro-cupom .form-check {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
}

.form-check label.error {
  margin-top: 8px;
}

.form-check .form-check-input {
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  min-height: 16px;
  max-height: 16px;
  background: transparent;
  border: 1px solid var(--c-white);
  border-radius: 5px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-check .form-check-input:focus {
  border: 2px solid #fff !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-check .form-check-input:checked {
  background: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
  opacity: 1 !important;
}

/* .form-check .form-check-input:checked[type="checkbox"] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23101920' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
background-repeat: no-repeat !important;
background-position: center center !important;

background: #fdc500 !important;
border-radius: 10rem !important;
} */

/* Boostrap */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  position: relative;
}

.slick-prev {
  left: 28px !important;
}

.slick-next {
  right: 28px !important;
}

button {
  background: none;
  border: none;
  outline: none;
}

button:hover,
button:focus {
  border-color: transparent;
  outline: none !important;
}

/* Select2 */
.select2-container {
  display: block !important;
  width: auto !important;
}

.select2-container--default .select2-results__group {
  color: var(--c-yellow1) !important;
  font-weight: 700 !important;
}

.select2-container--default .select2-selection--single:focus {
  outline-color: #ffd998;
}

.section.cadastro-cupom .select2-container--default .select2-selection--single .select2-selection__rendered {
  top: 0 !important;
}

.select2-container--default .select2-selection--single {
  padding: 0.4rem 2rem 0.4rem 2rem !important;
  height: 44px !important;
  border-radius: .4rem !important;
  border: none !important;
  margin: 15px 0px 6px 0px !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  background: var(--c-gray) !important;
  font-family: var(--font-sans) !important;
  font-weight: 400 !important;
  color: #737373 !important;
  width: 100%;
  text-transform: none;
  overflow: hidden;
  outline-color: var(--c-white);
  outline-width: 0;
  outline-offset: 0;
  outline-style: solid;
  transition: all 0.3s ease-in-out;
}

.select2-container--open .select2-dropdown {
  top: -1px;
  left: 1px !important;
}

.select2-container--default.select2-container--open.select2-container--below
.select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
.select2-selection--multiple {
  word-break: break-all !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  border-radius: 0.4rem;
  border: 1px solid var(--c-black) !important;
  background: #e9e9e9;
  outline: none;
  padding: 1rem;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
  position: relative;
  top: -6px;
  color: #636363 !important;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  text-shadow: none;
  text-transform: none;
  letter-spacing: var(--form-control-letter-spacing);
  text-align: left;
  padding-left: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  overflow: hidden;
  word-break: break-all;
  white-space: initial;
}

.select2-container--default .select2-results__option--disabled {
  color: var(--c-black) !important;
  background: var(--c-gray2) !important;
  padding: 1rem !important;
  font-weight: 600 !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
  opacity: 0;
}

.select2-container--default
.select2-results__option--highlighted.select2-results__option--selectable {
  color: var(--c-black) !important;
  background: #eeeeee!important;
  padding: 1rem !important;
  font-weight: 400 !important;
  /* display: none; */
}

.select2-results__option--selectable {
  color: var(--c-black);
  font-size: 1.6rem;
  padding: 1rem !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: #eeeeee !important;
}

.select2-results__option {
  color: var(--c-black);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  text-shadow: none;
  text-transform: none;
}

.select2-dropdown {
  border: 0px solid #ffffff !important;
  border-radius: 0rem;
  overflow: hidden;
}

.select2-results ::-webkit-scrollbar-thumb {
  background: var(--c-white) !important;
  border-radius: 5rem !important;
}

/* Arquivo de sobreposição para o desenvolvedor */
[data-plugin="formsteps"] [data-step] + [data-step]:not(.active) {
  display: none;
}

[data-plugin="formsteps"]:not(.plugin-loaded) .formsteps-btn-finish,
[data-plugin="formsteps"]:not(.plugin-loaded) .formsteps-btn-prev {
  display: none;
}

/* Chave acesso */
.loading.infosCupom input.form-control {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #ffffff 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1s infinite ease-in-out;
  border-color: #ddd;
}

.infosCupom .col-lg-6.absolute {
  left: 50%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Resgate */
.voucher-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.box-link-resgate {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: auto;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: var(--c-white);
  color: var(--c-black);
  font-size: 18px;
  font-weight: 400;
}

.box-link-resgate:hover, .box-link-resgate:focus {
  transform: scale(1.05);
  color: var(--c-black);
}

/*ROLAR A PÁGINA*/
/* Animação - Role a página */
.rolar-pagina{
  display: inline-block;
  position: relative;
  text-align: center;
  padding:10px;
  border-radius: 10px;
  background: #ffffff;
}

.rolar-pagina .text{
  font-size: 16px;
  font-weight: 500;
  margin:0 0 5px 0;
}

.rolar-pagina .content{
  display: inline-block;
  padding:0 15px 0 30px;
}

.rolar-pagina .content:after{
  position: relative;
  content: '\f25a'; /* Ícone de touch */
  top: 22px;
  color: #b3b2b7;
  font-family: 'FontAwesome', Arial, sans-serif;
  font-size: 22px;
  line-height: 100%;
  animation-name: finger-rolar-pagina;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.rolar-pagina .animation{
  position: relative;
  display: inline-block;
  width: 24px;
  height:45px;
  border: 2px solid #b3b2b7;
  border-radius: 20px;
}

.rolar-pagina .animation .arrow:before{
  position: relative;
  content: '\f107'; /* Ícone de seta para baixo */
  top: 0;
  font-family: 'FontAwesome', Arial, sans-serif;
  font-size: 22px;
  line-height: 100%;
  animation-name: arrow-rolar-pagina;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes arrow-rolar-pagina {
  0% {
    top: 0;
    opacity: 0;
    font-size: 10px;
  }
  35% {
    opacity: 1;
    font-size: 22px;
  }
  65% {
    opacity: 1;
    font-size: 22px;
  }
  100% {
    top: 22px;
    opacity: 0;
    font-size: 10px;            
  }
}

@keyframes finger-rolar-pagina {
  0% {
    top: 22px;
    opacity: 0;
    font-size: 10px;
  }
  35% {
    opacity: 1;
    font-size: 22px;
  }
  65% {
    opacity: 1;
    font-size: 22px;
  }
  100% {
    top: 0;
    opacity: 0;
    font-size: 10px;            
  }
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 1s linear infinite;
  -moz-animation: rotating 1s linear infinite;
  -ms-animation: rotating 1s linear infinite;
  -o-animation: rotating 1s linear infinite;
  animation: rotating 1s linear infinite;
}

.box-rolar-pagina {
  position: absolute;
  bottom: 14%;
  left: 35%;
}

.rolar-pagina{
  width: 100px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 991px){
  .rolar-pagina{
    position: inherit;
    margin: 30px auto 20px auto;
  }
  
  .box-rolar-pagina{
    display: none;
  }
}

.rolar-pagina .animation{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 60px;
  border: 3px solid #ffffff;
  border-radius: 20px;
}

.rolar-pagina .animation .arrow:before{
  color: #ffffff;
}

.rolar-pagina .content {
  display: inline-block;
  padding: 0 15px 0 30px;
}

.rolar-pagina .content:after{
  color: #d2cf9a;
  display: none;
}

.rolar-pagina .text{
  color: #ffffff;
  font-family: 'Knockout-HTF48', Arial, sans-serif;
  font-size: 25px;
  line-height: 25px;
  text-transform: none;
  display: inline-block;
  position: absolute;
  margin: 5px 0px 0px 0px;
}

/* Contador de caracteres - Chave de acesso */
#frm-chaveacesso .position-relative {
  position: relative;
}

#frm-chaveacesso .position-relative .float-placeholder {
  top: -15px;
  left: 0px;
}

#CupomChave-counter,
#cadastrocupom-CupomChave-counter {
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 1.2rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* =========================================
Trilha sonora (index) – botão fixo ligar/desligar áudio
=========================================
Botão fixo no topo direito, abaixo do menu.
Estado normal: som ligado (ícone volume).
Estado .muted: som desligado (ícone mudo).
========================================= */

/* Container do botão: fixo, abaixo do menu, sempre visível no scroll */
.btn-trilha-sonora {
  --btn-bg-solid: rgba(226, 201, 81, 0.95);
  position: fixed;
  top: 85px;
  right: 20px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
}

.btn-trilha-sonora i,
.btn-trilha-sonora svg {
  position: relative;
  z-index: 1;
}

/* Hover: destaque e leve aumento */
.btn-trilha-sonora:hover,
.btn-trilha-sonora:focus-visible {
  background-position: 0 0;
  transform: scale(1.05);
}

/* Estado mudo: visual diferenciado */
.btn-trilha-sonora.muted {
  --btn-bg-solid: rgba(120, 120, 120, 0.9);
  background-image: none;
  background: rgba(120, 120, 120, 0.9);
  color: #fff;
}

.btn-trilha-sonora.muted:hover,
.btn-trilha-sonora.muted:focus-visible {
  background: rgba(90, 90, 90, 0.95);
  background-image: none;
  transform: scale(1.05);
}