﻿:root {
  --c-red1: #E20612;
  --c-red2: #cb020d;
  --c-reddark: #AF0011;
  --c-yellow1: #ffbe00;
  
  --c-black: #000000;
  --c-black2: #313131;
  --c-blackform: #6c757d;
  --c-white: #ffffff;
  --c-graydark: #666666;
  --c-gray: #f7f7f7;
  --c-gray2: #efeeed;
  --c-check: #1cb111;
  --c-error: #ffbe00;
  --c-error2: #AF0011;
}

/*
[Fontes do projeto]
    Amfibia [Light-300]
    Amfibia [Book-400]
    Amfibia [Bold-700]
    Amfibia [ExtraBold-800]
*/

body {
  padding-top: 75px;
  transition: opacity 1s ease-in-out;
  opacity: 1 !important;
  letter-spacing: 0;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  background: var(--c-red1);
  -webkit-font-smoothing: antialiased !important;
  appearance: none !important;
  text-rendering: optimizelegibility;
}

@media (max-width: 991px) {
  body {
    padding-top: 70px!important;
  }
}

.body-index {
  background: var(--c-white);
}

/* Evita FOUC */
body.preload {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

strong {
  color: inherit!important;
}

.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 inicial */
.scroll-fade {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

.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*/
@keyframes efeitoMao {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg); /* sentido anti-horário */
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes efeitoCabeca {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-2deg); /* sentido horário */
  }
  100% {
    transform: rotate(0deg);
  }
}

.animatePack .content-mecanica .mao {
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center; /* MUITO IMPORTANTE: trava o giro no centro do elemento */
  transition: all 0.3s ease-in-out;
}
.animatePack .content-mecanica .cabeca {
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center; /* MUITO IMPORTANTE: trava o giro no centro do elemento */
  transition: all 0.3s ease-in-out;
}

@keyframes efeitoPack {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.06);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.animatePack .content-pack [class^="pack"] {
  animation-name: efeitoPack;
  animation-duration: 7s; /* ciclo completo */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes efeitoPulsar {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  50% {
    -webkit-transform: scale(0.98) rotate(0deg);
    -ms-transform: scale(0.98) rotate(0deg);
    transform: scale(0.98) rotate(0deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.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: 900;
}

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 {
  font-family: "Amfibia", Arial, sans-serif;
  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-red1);
  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-red1) !important;

  color: var(--c-white) !important;
  background: transparent!important;
  border: 1px solid var(--c-white) !important;
  border-radius: 0.4rem;
}

.tab-btn .btn:focus,
.tab-btn .btn:hover {
  font-family: "Amfibia", Arial, sans-serif;
  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-red1);
  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-red1) !important;

  color: var(--c-white) !important;
  background: transparent!important;
  border: 1px solid var(--c-white) !important;
  border-radius: 0.4rem;
}

.tab-btn .btn.active {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-red1)!important;
  background: var(--c-white)!important;
  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;
}

.tab-btn .btn.active:focus,
.tab-btn .btn.active:hover {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-red1);
  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;
}

@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-red1);
}

.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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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 {
  position: relative;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-red1);
  background: var(--c-white);
  font-size: 1.6rem;
  line-height: 1;
  padding: 1.5rem 3rem 1.5rem 3rem;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
}

.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-red1);
  background: var(--c-white);
}

.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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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 {
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 5px 10px;
  color: var(--c-white);
  background: #00cc00;
  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;
}

@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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-red1);
  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-red1) !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: "Amfibia", Arial, sans-serif;
  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-red2);
  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-red2) !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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red1);
}

#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-red1);
  border-color: var(--c-red1);
}

#popup-cookiesgeral
  .custom-switch
  .custom-control-input:checked
  ~ .custom-control-label::after {
  transform: translateX(0.65rem);
  background: var(--c-red1);
  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: "Amfibia", Arial, sans-serif;
  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;
}

.modal .btn {
  font-size: 1.6rem;
  padding: 1.3rem 2rem 1.2rem 2rem;
}

.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: var(--c-red1);
}

.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.1);
}
.modal .btn-fechar i {
  color: var(--c-bluedark1);
  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: 3rem;
  line-height: 1;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 5px #ffbe0082,
    0 0 10px #ffbe0082,
    0 0 20px #ffbe0082,
    0 0 30px #ffbe0082;
}

.modal .titulo span {
  color: var(--c-white);
}

.modal .descricao {
  font-size: 1.7rem;
  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: 900;
  line-height: 1.3;
}

.modal [class*="vld-"] + .error {
  color: var(--c-white);
}

.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 {
  color: var(--c-white);
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 14px 25px 11px 25px;
  text-decoration: none;
  background: var(--c-red1);
  margin: 3px 0px;
  border-radius: 100px;
}

.modal.popup-minhaconta .btn-minhaconta:hover {
  color: var(--c-white);
  background: var(--c-red1);
}

.modal.popup-minhaconta .btn-minhaconta-sair {
  color: var(--c-white);
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 14px 25px 11px 25px;
  text-decoration: none;
  background: var(--c-red1);
  border-radius: 100px;
  margin: 3px 0px;
  transition: all 0.3s ease-in-out;
}

.modal.popup-minhaconta .btn-minhaconta-sair:hover {
  background: var(--c-red1);
  color: var(--c-white);
  transform: scale(1.02);
}

.modal.popup-minhaconta .navbar-nav .nav-link {
  color: var(--c-white);
  font-family: "Amfibia", Arial, sans-serif;
  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-red2);
  box-shadow: 0 0 50px var(--c-red2);
}

.modal.popup-contato .titulo {
  /*color: var(--c-red1);*/
}

.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-red1) !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-red1);
  color: var(--c-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  text-align: center;
  font-family: "Amfibia", Arial, sans-serif;
  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: 10px;
  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-reddark);
  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-red1);
  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: 30px;
  }
}

/* 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;
  z-index: 10;
  bottom: 22px;
  right: 0;
  width: 100%;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

.barra-participe .btn {
  padding: 2.1rem 3rem 2rem 3rem;
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
  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);
  /*    text-shadow: 0px 0px 11px #fdc200;*/

  background: #aa063a;
  /*    box-shadow: 0px 0px 11px 5px rgb(170 6 58 / 67%);*/
  transition: all 0.3s ease-in-out !important;
}

/* Botão CTA */
.ctaFlutuante {
  text-align: left;
  margin-top: 2rem;
  margin-left: 2rem;
  /* text-align: center; */
}

.btnFlutuante {
  display: inline-flex;
  background: var(--c-white);
  color: var(--c-red1);
  border: none;
  border-radius: 0.5rem;
  padding: 1.2rem 2.5rem 1.2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  align-content: center;
  align-items: center;
  height: 50px;
}

.btnFlutuante p {
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  margin-bottom: inherit;
  color: var(--c-red1);
  top: 1px;
  position: relative;
}

.btnFlutuante:hover {
  background: var(--c-yellow1);
  color: var(--c-red1);
  transform: scale(0.9);
  box-shadow:  0px 0px 20px 0px rgb(255 190 0);
}

.btnFlutuante i {
  font-size: 1.3rem;
  background: var(--c-red1) !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-red1) !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;
  }
}

@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: #d9d9d9;
  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-red1 { color: var(--c-red1) !important; }
.text-red2 { color: var(--c-red2) !important; }
.text-reddark { color: var(--c-reddark) !important; }
.text-yellow1 { 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-red1) !important; }
.bkg-red2 { background: var(--c-red2) !important; }
.bkg-reddark { background: var(--c-reddark) !important; }
.bkg-yellow1 { 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; }

/* 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-red1);
}

@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 {
  overflow-x: hidden;
}

.main .section {
  /* position: relative; */
}

.main .section .padding {
  padding: 7rem 3rem 7rem 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: 3.2rem;
  color: var(--c-white);
  /* color: var(--c-black); */
  margin-bottom: 1rem;
  text-transform: none;
  line-height: 1;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.main .section .header-section h3 {
  font-family: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: 11rem 3rem 5rem 3rem !important;
  }

  .main .section .header-section {
    margin: 0 0 3rem 0;
  }

  .main .section .header-section h2 {
    font-size: 3.5rem;
  }
}

/*====== 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;
  }
}

/* ====== Elementos animados ====== */
/* ====== Elemento: Logo da promoção ====== */
.animatePack .content-image {
  position: absolute;
  z-index: 2;
  top: 21%;
  left: 8%;
  width: 35.9%;
}
.animateLogo .content-image .group-selo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 0%;
  opacity: 0;
}
.animateLogo .content-image .promocao {
  position: absolute;
  z-index: 2;
  top: 1.2%;
  left: 3.6%;
  width: 30.5%;
  max-width: 208px;
}
.animateLogo .content-image .logo {
  position: absolute;
  z-index: 2;
  top: 0.1%;
  left: 0%;
  width: 81%;
  max-width: 552px;
}
.animateLogo .content-image .opremio {
  position: absolute;
  z-index: 2;
  top: 50.8%;
  left: 21.2%;
  width: 78.9%;
  max-width: 538px;
}
.animateLogo .content-image .mao-ok {
  position: absolute;
  z-index: 3;
  top: -54%;
  left: -27%;
  width: 42.6%;
  max-width: 290px;
}
.animateLogo .content-image .mao-caixa {
  position: absolute;
  z-index: 3;
  top: -48%;
  left: 82%;
  width: 75.2%;
  max-width: 513px;
}
.animateLogo .content-image .mao-apontando {
  position: absolute;
  z-index: 3;
  bottom: -33%;
  left: -66%;
  width: 80.7%;
  max-width: 550px;
}

/* ====== Elemento: Pack ====== */
.animatePack .content-pack {
  position: relative;
  margin-top: -1%;
  display: inline-block;
  text-align: center;
  margin: auto;
}
.animatePack .content-pack .group-pack {
  position: relative;
  z-index: 0;
  max-width: 100%;
  margin-bottom: 0%;
  opacity: 0;
}
.animatePack .content-pack .pack1 {
  position: absolute;
  z-index: 1;
  top: 0%;
  left: 0%;
  width: 35.9%;
  animation-name: efeitoPack;
  animation-delay: 0s;
}
.animatePack .content-pack .pack2 {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 14.5%;
  width: 20.87%;
  animation-name: efeitoPack;
  animation-delay: 1s;
}
.animatePack .content-pack .pack3 {
  position: absolute;
  z-index: 3;
  top: 40.1%;
  left: 23.4%;
  width: 22.72%;
  animation-name: efeitoPack;
  animation-delay: 2s;
}
.animatePack .content-pack .pack4 {
  position: absolute;
  z-index: 2;
  top: 16.6%;
  left: 38.8%;
  width: 19.76%;
  animation-name: efeitoPack;
  animation-delay: 3s;
}
.animatePack .content-pack .pack5 {
  position: absolute;
  z-index: 3;
  top: 30.5%;
  left: 43.4%;
  width: 30.44%;
  animation-name: efeitoPack;
  animation-delay: 4s;
}
.animatePack .content-pack .pack6 {
  position: absolute;
  z-index: 2;
  top: 23%;
  left: 61.1%;
  width: 26.88%;
  animation-name: efeitoPack;
  animation-delay: 5s;
}
.animatePack .content-pack .pack7 {
  position: absolute;
  z-index: 3;
  top: 25%;
  left: 75.7%;
  width: 25.15%;
  animation-name: efeitoPack;
  animation-delay: 6s;
}

@media (max-width: 991px) {
}

/* ====== Elemento: Mecanica ====== */
.animatePack .content-mecanica {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 45.71%;
  text-align: right;
}
.animatePack .content-mecanica .group-mecanica {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
}
.animatePack .content-mecanica .abriu {
  position: absolute;
  z-index: 2;
  top: -0.3%;
  left: 15.2%;
  width: 27.35%;
  max-width: 230px;
}
.animatePack .content-mecanica .aembalagem {
  position: absolute;
  z-index: 2;
  top: 2.6%;
  left: 41.2%;
  width: 39.75%;
  max-width: 334px;
}
.animatePack .content-mecanica .achou {
  position: absolute;
  z-index: 2;
  top: 10.6%;
  left: 23.2%;
  width: 44.05%;
  max-width: 370px;
}
.animatePack .content-mecanica .ganhou {
  position: absolute;
  z-index: 2;
  top: 24.6%;
  left: 14.5%;
  width: 79.31%;
  max-width: 667px;
}
.animatePack .content-mecanica .entregue {
  position: absolute;
  z-index: 2;
  top: 39.8%;
  left: 55%;
  width: 35.2%;
  max-width: 296px;
}
.animatePack .content-mecanica .premiacao-geral {
  position: absolute;
  z-index: 2;
  top: 50.2%;
  left: 0.1%;
  width: 100.3%;
}
.animatePack .content-mecanica .premiacao-geral2 {
  position: absolute;
  z-index: 2;
  top: 45.2%;
  left: 23%;
  width: 59.5%;
}
.animatePack .content-mecanica .cta {
  position: absolute;
  z-index: 2;
  top: 88.6%;
  left: 20.7%;
  width: 58.3%;
}
@media (max-width: 991px) {
  .animatePack .content-mecanica .entregue {
    position: absolute;
    z-index: 2;
    top: 39.8%;
    left: 30%;
    width: 60%;
  }
  .animatePack .content-mecanica .cta {
    position: absolute;
    z-index: 2;
    top: 87%;
    width: 100%;
    max-width: 490px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ====== Seção: Login ====== */
.section.login {
  position: relative;
  overflow: hidden;
}

.section.login .padding {}

.section.login .content-section {
  position: relative;
  width: 100%;
  margin: auto;
}

.section.login .selo1 {
  position: relative;
  z-index: 1;
  margin-bottom: -6rem;
}

.section.login .selo1 img {
  width: 100%;
  max-width: 500px;
}

.section.login .selo2 {
  position: relative;
  z-index: 1;
}

.section.login .selo2 img {
  width: 100%;
  max-width: 430px;
}

@media (max-width: 991px) {
  /*.section.login .logopromo {
        margin-top: 20px!important;
    }*/
}

.section.login .box-login {
  position: relative;
  z-index: 1;
  padding: 4rem;
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  border-radius: 0.4rem;
  border-radius: 1.5rem;
  background: var(--c-reddark);
}

.section.login .box-login:hover {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.section.login .box-login .header-section {
  margin-bottom: 10px !important;
}

.section.login .box-login .header-section h2,
.section.login .box-login .title {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-white);
}

.section.login .box-login .header-section h3 {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--c-white);
}

.section.login .box-login .esquecisenha {
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: underline;
}

.section.login .box-login .esquecisenha:hover {
  text-decoration: none;
  color: var(--c-white);
}

@media (max-width: 991px) {
  .section.login .content-section {
    position: relative;
    height: inherit;
    width: 100%;
  }

  .section.login .logopromocao {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
  }

  .section.login .logopromocao img.logopromocao {
    width: 100%;
  }

  .section.login .logopromo {
    margin-top: -30px;
  }
}

.box-red {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-radius: 0.7rem;
  background: var(--c-red1);
  color: white;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.box-red span {
  font-family: "Amfibia", Arial, sans-serif;
  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-red1);
  margin: 12px auto;
  white-space: nowrap;
  text-transform: uppercase;
}

.box-outline span {
  color: var(--c-red1);
  text-align: center;
  font-family: "Amfibia", Arial, sans-serif;
  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-red2);
  margin: auto;
  margin-top: 12px;
  text-transform: uppercase;
}

.resgate-container .box span {
  color: #fff;
  text-align: center;
  font-family: "Amfibia", Arial, sans-serif;
  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;
}

.section.inicio .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0rem;
  margin: auto;
}

.section.inicio .img-premioFinal {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  right: 33%;
  width: 31%;
  max-width: 670px;
}

.section.inicio .img-selo {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 5.7%;
  width: 30.3%;
  max-width: 580px;
  animation: movimentoSelo 3s ease-in-out infinite;
}

@keyframes movimentoSelo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section.inicio .img-sorteio {
  position: absolute;
  z-index: 2;
  top: 14.2%;
  right: 10.5%;
  width: 50%;
  max-width: 850px;
  animation: pulseSorteio 2s ease-in-out infinite;
}

@keyframes pulseSorteio {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.94);
  }
}

.section.inicio .img-valebrinde {
  position: absolute;
  z-index: 2;
  top: 43.2%;
  right: 4.5%;
  width: 53%;
  max-width: 1000px;
}

.section.inicio .img-pack {
  position: absolute;
  z-index: 2;
  bottom: -3.7%;
  right: 11.5%;
  width: 36.6%;
  max-width: 700px;
}

.section.inicio .img-compre {
  position: absolute;
  z-index: 2;
  top: 8.4%;
  right: 17.3%;
  width: 32%;
  max-width: 610px;
}

@media (max-width: 991px) {
  .section.inicio .img-selo {
    top: 3%;
    left: 29%;
    width: 66%;
    max-width: 580px;
    animation: none !important;
    transform: rotate(5deg) !important;
  }

  .section.inicio .img-sorteio {
    top: 51%;
    right: 3.5%;
    width: 94%;
  }

  .section.inicio .img-valebrinde {
    top: 68.9%;
    right: inherit;
    left: 7%;
    width: 86%;
  }

  .section.inicio .img-compre {
    display: none;
  }

  .section.inicio .img-pack {
    bottom: -3%;
    right: 12.5%;
    width: 74%;
    max-width: 700px;
  }
}

/* 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-red1);
  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%);
}

/* Garantir que o kv-container fique abaixo do box vermelho */
.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-red1);
  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: "Amfibia", Arial, sans-serif;
  color: white;
}

.premio-box-number .label {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.3rem;
    font-family: "Amfibia", Arial, sans-serif;
    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-red1);
  /* 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: "Amfibia", Arial, sans-serif;
    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: "Amfibia", Arial, sans-serif;
  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: -10px;
    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: "Amfibia", Arial, sans-serif;
    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-red1);
}

.section.resgate .premio-box-number.resgatar {
    background: var(--c-yellow1);
    color: var(--c-red1);
    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-red1) !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-red1);
    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-red1);
    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 */
.faq-item-hidden {
  display: none !important;
}

.hide {
  display: none !important;
}

@media (max-width: 991px) {
  .section.resgate-video .video-background.desktop {
    display: none;
  }
  
  .section.resgate-video .video-background.mobile {
    display: block;
  }
}

/* Estilos base para confetes */
.img-confetes-1,
.img-confetes-2,
.img-confetes-3,
.img-confetes-4,
.img-confetes-5,
.img-confetes-6 {
  position: absolute;
  z-index: 0;
  /* z-index: 5; */
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* Permite cliques passarem através */
  animation: pulsarMovimentoConfetes 3s ease-in-out infinite;
  max-width: 450px;
}

/* Classes neutras para confetes - podem ser usadas em qualquer contexto | desktop */
.img-confetes-1 {
  top: 5%;
  left: 3%;
  width: 15%;
  animation-delay: 0s;
}

.img-confetes-2 {
  top: 10%;
  right: 3%;
  width: 15%;
  animation-delay: 1s;
}

.img-confetes-3 {
  bottom: 5%;
  left: 5%;
  width: 15%;
  animation-delay: 0s;
}

.img-confetes-4 {
  bottom: 10%;
  right: 7%;
  width: 13%;
  animation-delay: 0.5s;
}

.img-confetes-5 {
  top: 50%;
  left: 2%;
  width: 12%;
  animation-delay: 0.8s;
}

.img-confetes-6 {
  top: 47%;
  right: 5%;
  width: 12%;
  animation-delay: 1.5s;
}

/* Classes neutras para confetes - podem ser usadas em qualquer contexto | mobile */
@media (max-width: 991px) {
  .img-confetes-1 {
    top: 5%;
    left: -26%;
    width: 15%;
  }
  
  .img-confetes-2 {
    top: -1%;
    right: -7%;
    width: 37%;
  }
  
  .img-confetes-3 {
    bottom: -5%;
    left: -15%;
    width: 42%;
  }
  
  .img-confetes-4 {
    bottom: -4%;
    right: -9%;
    width: 33%;
  }
  
  .img-confetes-5 {
    width: 27%;
  }
  
  .img-confetes-6 {
    top: 51%;
    right: -2%;
    width: 40%;
  }
}

/* Animação de pulse para estrelas pequenas (100px e 150px) - loop contínuo fluido */
@keyframes pulseConfetes {
  0%, 100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(0.97);
    filter: saturate(1.3) hue-rotate(10deg);
  }
}

/* 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);
  }
}

@keyframes pulsarMovimentoConfetes {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .section.inicio .padding {
    padding: 0rem!important;
  }
}

/* ====== Seção: Como participar ====== */
/* Section Como Participar 2 */
.section.como-participar {
  position: relative;
  background: var(--c-red1);
  color: var(--c-white);
  overflow: hidden;
  margin-top: -5px;
}

/* Tarja de marcas - Genérica para uso em qualquer local */
.tarja-marcas {
  position: relative;
  width: 100%;
  background: var(--c-white);
  padding: 2.5rem 0;
  overflow: hidden;
  z-index: 1;
}

.tarja-marcas-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tarja-marcas-content {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-marcas 30s linear infinite;
  will-change: transform;
  white-space: nowrap;
  width: max-content;
}

.tarja-marcas .marca-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.tarja-marcas .marca-logo:hover {
  opacity: 1;
}

/* Animação de scroll infinito */
@keyframes scroll-marcas {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 991px) {
  .tarja-marcas {
    padding: 2rem 0;
  }

  .tarja-marcas-content {
    gap: 3rem;
    animation-duration: 25s;
  }

  .tarja-marcas .marca-logo {
    height: 45px;
  }
}

.section.como-participar .padding {
  padding: 10rem 3rem 10rem 3rem;
}

/* 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;
}

/* Shapes laterais */
.section.como-participar .shape {
  position: absolute;
  top: 45rem;
  width: 80px;
  height: auto;
  z-index: 1;
}

.section.como-participar .shape-left {
  left: 0;
}

.section.como-participar .shape-right {
  right: 0;
}

/* Header */
.section.como-participar .header-section {
  max-width: 730px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section.como-participar .header-section .eyebrow {
  color: var(--c-yellow1);
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.section.como-participar .header-section h2 {
  font-size: 3rem;
  line-height: 1.25;
  color: var(--c-white);
  text-align: center;
  font-weight: 500;
}

.section.como-participar .header-section h2 .hl {
  color: var(--c-yellow1);
}

.section.como-participar .header-section .footnote {
  font-size: 1.5rem;
  text-align: center;
  color: var(--c-white);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Steps */
.section.como-participar .cp2-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.0rem;
  margin-top: 10rem;
  margin-bottom: 6rem;
  z-index: 2;
}

.section.como-participar .cp2-steps .step {
  padding: 0rem 2.5rem;
}

.section.como-participar .cp2-steps .step-head {
  display: flex;
  gap: 1.2rem;
  margin-bottom: .8rem;
  min-height: 80px;
  border-bottom: 1px solid var(--c-yellow1);
  align-items: center;
  padding-bottom: 3rem;
  justify-content: center;
}

.section.como-participar .cp2-steps .step-ico {
  background: transparent;
  opacity: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 0px solid var(--c-yellow1);
  flex-shrink: 0;
}

.section.como-participar .cp2-steps .step-ico svg {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid var(--c-yellow1);
  padding: 1rem;
}

.section.como-participar .cp2-steps .step-ico img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.section.como-participar .cp2-steps .step-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  text-align: left;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.section.como-participar .cp2-steps .step-text {
  font-size: 1.9rem;
  color: var(--c-white);
  margin-top: 3rem;
  /* padding-left: 9rem; */
  text-align: center;
}

.section.como-participar .cp2-steps .step-text a {
  color: var(--c-yellow1);
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.section.como-participar .cp2-steps .step-text a:hover {
  color: var(--c-yellow1);
  text-decoration: none;
}

/* Heart Icon */
.section.como-participar .heart-icon {
  display: inline-block;
  margin-bottom: 1rem;
}

/* AjiPanda Section */
.section.como-participar .cp2-ajipanda {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  margin-bottom: 6rem;
  text-align: center;
}

.section.como-participar .cp2-ajipanda .ajipanda-header {
  margin-bottom: 4rem;
}

.section.como-participar .cp2-ajipanda .ajipanda-text {
  font-size: 3rem;
  line-height: 1.25;
  color: var(--c-white);
  text-align: center;
  font-weight: 500;
}

.section.como-participar .cp2-ajipanda .ajipanda-title {
  font-size: 3.2rem;
  color: var(--c-yellow1);
  text-align: center;
  font-weight: 700;
}

.section.como-participar .cp2-ajipanda .ajipanda-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  flex-wrap: wrap;
}

.section.como-participar .cp2-ajipanda .ajipanda-img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
  background: rgb(149 0 8 / 26%);
  padding: 2rem;
  border-radius: 2rem;
}

.section.como-participar .cp2-ajipanda .ajipanda-img.pelucia-scaling {
  animation: scalePelucia 1s ease-in-out;
}

@keyframes scalePelucia {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
}

/* Product Points Section */
.section.como-participar .cp2-product-points {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
}

.section.como-participar .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: 1300px;
  margin: 0 auto;
  position: relative;
}

.section.como-participar .cp2-product-points .points-title {
  font-size: 3rem;
  color: var(--c-black2);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  font-family: "Amfibia", Arial, sans-serif;
}

.section.como-participar .cp2-product-points .points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr;
  /* grid-template-columns: 1fr 1fr 1.3fr; */
  gap: 0;
  align-items: start;
  position: relative;
}

.section.como-participar .cp2-product-points .points-column {
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}

.section.como-participar .cp2-product-points .points-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-red1);
}

.section.como-participar .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: "Amfibia", Arial, sans-serif;
  display: inline-block;
  background: var(--c-red1);
  padding: 1rem 2rem 0.9rem 2rem;
  border-radius: 2rem;
}

.section.como-participar .cp2-product-points .points-brands {
  display: flex;
  flex-direction: row;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.section.como-participar .cp2-product-points .brand-img {
  height: 40px;
  /* height: 45px; */
  object-fit: contain;
  display: block;
}

/* Equação central */
.section.como-participar .equation {
  display: inline-block;
  background: transparent;
  color: var(--c-white);
  border-radius: 0rem;
  padding: 0rem 0rem;
  margin-top: 2.3rem;
  padding-left: 6rem;
}

.section.como-participar .equation .eq-in {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.section.como-participar .equation .sm {
  font-size: 1.8rem;
  opacity: .9;
  display: block;
  color: var(--c-white);
  text-align: left;
}

.section.como-participar .equation .value {
  font-size: 2.4rem;
  color: var(--c-white) !important;
  letter-spacing: -1px;
  text-align: left;
  left: -2px;
  position: relative;
}

.section.como-participar .equation .eq-eq {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-white);
}

/* Cards */
.section.como-participar .cp2-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  align-items: end;
  z-index: 2;
  position: relative;
}

.section.como-participar .card-figure {
  text-align: center;
}

.section.como-participar .card-img {
  width: 100%;
  height: auto;
  max-width: 265px;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.55));
  margin-left: auto;
  margin-right: auto;
}

.section.como-participar .card-caption {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,1);
}

/* Responsivo básico - Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
  .section.como-participar .equation {
    padding-left: 0rem;
  }

  .section.como-participar .cp2-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .section.como-participar .cp2-steps .step-title {
    font-size: 1.4rem;
  }

  .section.como-participar .cp2-steps .step-text {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-left: 0rem;
  }

  .section.como-participar .cp2-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .section.como-participar .cp2-ajipanda {
    margin-top: 6rem;
  }

  .section.como-participar .cp2-ajipanda .ajipanda-title {
    font-size: 2.4rem;
  }

  .section.como-participar .cp2-product-points .points-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .section.como-participar .cp2-product-points .points-column {
    padding: 0 1.5rem;
  }

  .section.como-participar .cp2-product-points .points-box {
    padding: 3rem 2rem;
  }

  .section.como-participar .cp2-product-points .points-brands {
    gap: 1rem;
  }

  .section.como-participar .cp2-product-points .brand-img {
    max-width: 100px;
  }
}

/* Responsivo básico - Mobile */
@media (max-width: 991px) {
  .section.como-participar .padding {
    padding: 6rem 2rem 10rem 2rem;
  }

  .section.como-participar .equation {
    margin-top: 1.5rem;
    padding-left: 0rem;
  }

  .section.como-participar .cp2-steps {
    margin-top: 6rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .section.como-participar .cp2-steps .step {
    padding: 0rem 0rem;
  }

  .section.como-participar .cp2-steps .step-text {
    margin-top: 2rem;
    padding-left: 0rem;
  }

  .section.como-participar .cp2-steps .step.step-center {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .section.como-participar .cp2-cards {
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .section.como-participar .card-figure {
    min-width: 150px;
  }

  .section.como-participar .cp2-cards::-webkit-scrollbar {
    display: none;
  }

  .section.como-participar .header-section h2 {
    font-size: 2.4rem;
  }

  .section.como-participar .cp2-ajipanda {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .section.como-participar .cp2-ajipanda .ajipanda-text {
    font-size: 2.4rem;
  }

  .section.como-participar .cp2-ajipanda .ajipanda-title {
    font-size: 2.4rem;
  }

  .section.como-participar .cp2-ajipanda .ajipanda-images {
    gap: 2rem;
  }

  .section.como-participar .cp2-ajipanda .ajipanda-img {
    max-width: 100px;
    border-radius: 1rem;
  }

  .section.como-participar .cp2-product-points {
    margin-top: 4rem;
  }

  .section.como-participar .cp2-product-points .points-box {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }

  .section.como-participar .cp2-product-points .points-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .section.como-participar .cp2-product-points .points-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .section.como-participar .cp2-product-points .points-column {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .section.como-participar .cp2-product-points .points-column:not(:last-child)::after {
    display: none;
  }

  .section.como-participar .cp2-product-points .points-column::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.5rem;
    height: 1px;
    background: var(--c-red1);
  }

  .section.como-participar .cp2-product-points .points-column:last-child::before {
    display: none;
  }

  .section.como-participar .cp2-product-points .points-value {
    font-size: 2rem;
  }

  .section.como-participar .cp2-product-points .points-brands {
    gap: 1rem 3rem;
  }

  .section.como-participar .cp2-product-points .brand-img {
    max-width: 100px;
  }
}

/* COMO PARTICIPAR - Confetes | Personalização */
.section.como-participar .img-confetes-3 {
  left: -5%;
}

.section.como-participar .img-confetes-4 {
  bottom: 12%;
  right: -1%;
}

/* 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;
  background: white;
  box-shadow: inset -1px 0px 60px 20px #ebdfcf;
}

.section.produtos.produtos_lista .padding {
  padding: 3rem 3rem 7rem 3rem;
}

.section.produtos.produtos_lista .header-section h2,
.section.produtos.produtos_lista .header-section p.title {
  color: var(--c-red1);
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  background: #fafafa!important;
  min-height: 250px;
  margin-top: -1px;
}

/* Aplicar identidade visual de produtos na seção de dúvidas */
.section.duvidas.produtos_lista {
  position: relative;
  background: white;
  box-shadow: inset -1px 0px 60px 20px #ebdfcf;
}

.section.duvidas.produtos_lista .padding {
  padding: 3rem 3rem 7rem 3rem;
}

.section.duvidas.produtos_lista .header-section h2,
.section.duvidas.produtos_lista .header-section p.title {
  color: var(--c-red1);
}

/* Imagem pack de produtos */
.section.produtos.produtos_lista .padding-produtos {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
}

.section.produtos.produtos_lista .img-pack {
  max-width: 700px;
  width: 100%;
  max-height: 344px;
  /* height: 100%; */
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
  /* object-fit: contain; */
}

@media (max-width: 991px) {
  .section.produtos.produtos_lista .padding-produtos {
    height: 240px;
  }

  .section.produtos.produtos_lista .img-pack {
    max-height: 240px;
  }
}

/* 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-red1);
}

.produtos-title-page {
  font-family: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red1); */
  /* 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: 2.5rem;
}

.produtos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  justify-content: center;
  padding-bottom: 2rem;
}

.produtos-tab {
  padding: 1rem 2rem;
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-graydark);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  background: transparent;
}

.produtos-tab:hover {
  color: var(--c-red1);
  border-radius: 0.8rem;
  background: #f7f7f7;
}

.produtos-tab.active {
  color: var(--c-white);
  border-radius: 0.8rem;
  background: var(--c-red1);
  border: 0;
}

.produtos-tab span {
  display: inline-block;
  color: var(--c-black2);
}

.produtos-tab.active span {
  color: var(--c-white);
}

/* Grid de Produtos */
.produtos-grid-container {
  margin-bottom: 3rem;
  padding-top: 4rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  /* max-height: 600px; */
  overflow-y: auto;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 1200px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scrollbar customizada */
.produtos-grid {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.produtos-grid::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.produtos-grid::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.produtos-grid::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

.produtos-grid::-webkit-scrollbar-thumb:hover {
  background: var(--c-reddark);
}

/* Cards de Produtos */
.produto-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  background: #f7f7f7;
  border-radius: 0.8rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.produto-card:hover {
  border-color: var(--c-red1);
  /* background: #ffffff; */
  background: #ffd456;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.produto-nome {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-black2);
  line-height: 1.4;
  flex: 1;
  padding: 1.5rem;
  padding-bottom: 1.5rem;
  align-content: center;
}

.produto-pontos {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--c-red1);
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Amfibia", Arial, sans-serif;
  text-align: center;
  margin-top: auto;
}

/* Banner Importante */
.produtos-important-banner {
  background: #f7f7f7;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-top: 3rem;
}

.produtos-important-text {
  font-family: "Amfibia", Arial, sans-serif;
  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: 900;
}

/* Mensagem quando não encontrar produtos */
.produtos-empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #f7f7f7;
  border-radius: 0.8rem;
  border: 1px dashed #e0e0e0;
}

.produtos-empty-message p {
  font-family: "Amfibia", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-red1);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* 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: 500px;
  }

  .produtos-tabs {
    gap: 0.5rem;
  }

  .produtos-tab {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
  }

  .produto-nome {
    font-size: 1.4rem;
  }

  .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-color: var(--c-red1);
    border-bottom-color: #e0e0e0;
  }
}

/* Section PRÊMIOS */
.section.premios {
  position: relative;
  background: var(--c-red1);
  margin-bottom: -1px;
}

.section.premios .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0rem;
  margin: auto;
}

.section.premios .img-kvHero1 {
  position: relative;
  width: 100%;
  max-width: 1912px;
}

.section.premios .img-premioFinal {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  right: 33%;
  width: 31%;
  max-width: 670px;
}

.section.premios .img-selo {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 9%;
  width: 15%;
  max-width: 270px;
}

.section.premios .img-titulo {
  position: absolute;
  z-index: 2;
  top: 6.6%;
  right: 39%;
  width: 19%;
  max-width: 550px;
}

.section.premios .img-premioHora {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  right: 8%;
  width: 25%;
  max-width: 475px;
}

.section.premios .img-premioSemanal {
  position: absolute;
  z-index: 2;
  bottom: 53%;
  right: 10.3%;
  width: 20%;
  max-width: 490px;
}

.section.premios .img-sorteio {
  position: absolute;
  z-index: 2;
  top: 5.5%;
  right: 17.5%;
  width: 65%;
  max-width: 850px;
  animation: pulseSorteio 2s ease-in-out infinite;
}

.section.premios .img-valebrinde {
  position: absolute;
  z-index: 2;
  bottom: 17%;
  right: 2%;
  width: 26%;
  max-width: 500px;
}

/* Botão Ver mais - Produtos */
.produtos-ver-mais {
    text-align: center;
    margin-top: 4rem;
}

.btn-produtos-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-red1);
    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: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: "Amfibia", Arial, sans-serif;
}

.btn-produtos-ver-mais:hover {
  background: var(--c-white);
  color: var(--c-red1);
  transform: translateY(5px) scale(0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.btn-produtos-ver-mais i {
    font-size: 1.4rem;
    background: var(--c-white);
    color: var(--c-red1);
    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-red1);
    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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 500;
  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/bkgEstadio2_1920.webp) no-repeat bottom center!important;
  background-size: cover!important;
  overflow: hidden!important;
}

/* Gradiente sobre o background para melhorar legibilidade do texto */
.section.cadastro-pessoal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(26 36 88) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* 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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  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-red1);
}

/* Barra de Progresso do Cadastro */
/* Botão Finalizar Cadastro - Estilo igual ao btnFlutuante */
.btn-finalizar-cadastro {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-white);
    color: var(--c-red1);
    border: none;
    border-radius: 0.4rem;
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: "Amfibia", Arial, sans-serif;
    width: auto;
    justify-content: center;
}

.btn-finalizar-cadastro:hover {
    background: var(--c-red1);
    color: var(--c-white);
    transform: translateY(5px) scale(0.97);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.btn-finalizar-cadastro i {
    font-size: 1.4rem;
    background: var(--c-red1);
    color: var(--c-white);
    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-white);
    color: var(--c-red1);
    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-red1);*/
  }

  .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: "Amfibia", Arial, sans-serif;
}

.section.cadastrosucesso p.description_small {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-white);
  font-family: "Amfibia", Arial, sans-serif;
}

.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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red1);
  font-family: "Amfibia", Arial, sans-serif;
}

@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: var(--c-white);
}

/* __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  .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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 500;
}

.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 .padding {
    padding: 40px 1.5rem 130px 1.5rem;
  }

  .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;
}

/* 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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
}

.section.duvidas .descricao {
  font-family: "Amfibia", Arial, sans-serif;
  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: "Frutiger", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-black);
}

.form-control2 {
    color: var(--c-white) !important;
    background: var(--c-reddark) !important;
}

.form-control2::placeholder {
    color: var(--c-white) !important;
}

.form-eye2 .eye [data-togglepassword] {
  color: var(--c-white);
}

.form-control::placeholder {
  opacity: 0.6;
}

.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: "Frutiger", Arial, sans-serif;
  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: "Frutiger", Arial, sans-serif;
  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: "Frutiger", Arial, sans-serif;
  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: "Frutiger", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-black);
}

.form-control:disabled,
.form-control[readonly] {
  background: var(--c-gray);
  opacity: 0.5;
}

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: "Frutiger", Arial, sans-serif;
  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: "Frutiger", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-black);
  background: #fdc500;
  border-radius: 0.3rem;
  z-index: 2;
  padding: 0.31rem 0.6rem 0.3rem 0.6rem;
  display: block;
  position: absolute;
  top: -6px;
  left: 0.7rem;
  letter-spacing: 0px;
  text-transform: none;
}

.form-check-label {
  color: var(--c-red1);
  font-size: 1.7rem;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
}

.custom-control-label {
  color: var(--c-white);
  padding: 1px 0 0px 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 500;
  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-red1);
}

.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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  margin-top: 1px;
  margin-bottom: 8px;
  padding: 0rem;
  background: transparent;
  color: var(--c-error);
}

label#AceiteRegulamento-error,
label#AceitePrivacidade-error,
label#AceitePromo-error,
label#AceitePolitica-error,
label#AceiteCupom-error,
label#AceitePermissao-error,
label#AceiteComunicacao-error,
label#AceiteContato-error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-black) !important;
  top: 23px;
  right: 15px;
  z-index: 1;
  font-size: 1.5rem;
  cursor: pointer;
}

.eye [data-togglepassword]:hover {
  color: var(--c-black);
  text-decoration: none !important;
}

.eye [data-togglepassword] .password-hide {
  text-decoration: none !important;
}

.eye i {
  color: var(--c-bla) !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: 50%;
}

.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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
}

/* Formulario steps */

[data-plugin="formsteps"]:not(.plugin-loaded) {
  display: none;
}

[data-plugin="upload"] .upload-preview {
  font-family: "Amfibia", Arial, sans-serif;
  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/bkgEstadio2_1920.webp) no-repeat bottom center;
  background-size: cover;
  overflow: hidden;
}

/* Gradiente sobre o background para melhorar legibilidade do texto */
.section.ganhadores.ganhadores-preselecao::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;
}

/* 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,
.section.ganhadores.ganhadores-preselecao .header-section h3 {
  color: var(--c-white);
  font-weight: 700;
  font-size: 5rem;
}

/* 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;
  background: #28208278;
  padding: 3rem 2rem;
  border-radius: 1rem;
}

.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;
}
@media (max-width: 991px) {
  .section.ganhadores {
  }
}
.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 {
  /*color: var(--c-red1);*/
  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: var(--c-black);
}
.section.ganhadores .table-unique .filter-result {
  color: var(--c-red1) !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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red2);
  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: "Amfibia", Arial, sans-serif;
  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: auto;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  background: var(--c-white);
  border-color: var(--c-white);
  margin-top: 5px;
}

/* Filtro letra */
.section#ganhadores button.btn {
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
  margin: 3px 1px;
  width: 40px;
  height: 40px;
  background: var(--c-white);
  color: var(--c-black);
  font-family: "Amfibia", Arial, sans-serif;
  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;
}

.section#ganhadores button.btn.active {
  background: var(--c-red2);
  color: var(--c-white);
  opacity: 1;
  border-color: var(--c-red2);
}

.section#ganhadores .btn.disabled,
.section#ganhadores .btn:disabled {
  opacity: 0.15;
  background: transparent;
  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;
  }
}

/* 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: 'Amfibia', Arial, sans-serif;
  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-red1);
    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-red1);
    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 {
}
@media (max-width: 991px) {
  .section.meuextrato {
  }
}
.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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.section.meuextrato .box .description {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: "Amfibia", Arial, sans-serif;
  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-red1);
  font-family: "Amfibia", Arial, sans-serif;
}

/* 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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
}

@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/bkgEstadio2_1920.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: "Amfibia", Arial, sans-serif;
}

.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-red1);
}

.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: "Amfibia", Arial, sans-serif;
  display: inline-block;
  background: var(--c-red1);
  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-red1);
  }

  .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!important;
  background: url(../img/background/bkgEstadio2_1920.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}
/* Gradiente sobre o background para melhorar legibilidade do texto */
.section.redefinirsenha::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(26 36 88) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section.redefinirsenha .content-section {
  width: 100%;
  margin: auto;
}

/*SECTION - REDEFINIÇÃO DE SENHA */
.section.redefinirsenha {
  position: relative;
  background: #fffbf0;
}

.section.redefinirsenha .padding {
  padding: 70px 1.5rem 80px 1.5rem;
}

.section.redefinirsenha .header-section h2 {
  color: var(--c-yellow1);
}

.section.redefinirsenha .header-section h3 {
  text-align: center;
  color: var(--c-white);
  font-weight: 700;
}

.section.redefinirsenha [class*="vld-"] + .error,
.section.redefinirsenha label.error {
  background-color: var(--c-red1);
  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/bkgEstadio1_1920.webp) no-repeat center center!important;
  background-size: cover!important;
  overflow: hidden!important;
}

.section.inicio.aguarde .padding {
  padding: 0rem 0rem 7rem 0rem;
  max-width: 1366px;
}
@media (max-width: 991px) {
  .section.inicio.aguarde .padding {
    padding: 0rem 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: "Amfibia", Arial, sans-serif;
  font-weight: 500;
  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-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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

#erro .texto {
  position: relative;
  font-size: 20px;
  line-height: 25px;
  color: var(--c-white);
  font-family: "Amfibia", Arial, sans-serif;
  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: 25px 0;
  text-align: center;
  font-weight: 700;
  line-height: 100%;
  color: var(--c-white);
  background: var(--c-reddark);
  font-family: "Amfibia", Arial, sans-serif;
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.encerramento i {
  color: var(--c-white);
  display: block;
  margin-bottom: 1rem;
  display: none;
}

.encerramento[data-enable-shutdown="false"] {
  display: none !important;
}

.encerramento[data-enable-shutdown="true"] {
  display: block !important;
}

@media (max-width: 991px) {
  .encerramento i {
    margin-bottom: 1.5rem;
  }
}

[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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red1);
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 500;
  margin-top: 0px;
}

#cadastrocupom-imgUpload .filename {
  color: var(--c-yellow1);
  font-weight: 700;
}

#cadastrocupom-imgUpload .upload-preview {
  width: 130px;
  height: 130px;
  background: var(--c-red1);
  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: "Amfibia", Arial, sans-serif;
    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: "Amfibia", Arial, sans-serif;
    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-red1);
  border: 2px solid var(--c-white);
  background-size: cover;
}

/* 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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red1);
  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: "Amfibia", Arial, sans-serif;
    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: "Amfibia", Arial, sans-serif;
    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-red1);
  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-red1);
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 2rem;
}

.section.cadastro-cupom .content-section {
  width: 90%;
  margin: auto;
}

.section.cadastro-cupom .box {
  background: transparent;
  padding: 0px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.section.cadastro-cupom .responsabilidade {
  background: var(--c-red1);
  padding: 2rem;
  position: relative;
  border-radius: 0rem;
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 2rem;
  filter: brightness(1.1);
  border: 1px solid var(--c-white);
}

.section.cadastro-cupom .titulo-step {
  font-family: "Amfibia", Arial, sans-serif;
  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: 30px;
}

.section.cadastro-cupom .enviar .vld-img.vld-error {
  font-size: 1.5rem;
  line-height: 23px;
  color: #e90a2a;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 500;
}

.total {
  font-family: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-white);
}

.tbitems-remove {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--c-red1);
  transition: all 0.3s ease;
}
.tbitems-remove:hover,
.tbitems-remove:focus {
  color: var(--c-red2);
}

.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: var(--c-white);
  color: var(--c-red2);
  padding: 2rem 2rem 2rem 2rem;
  text-transform: uppercase;
}

.cadastro-cupom table.table th i {
  color: var(--c-white);
}

@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;
  }
}

/*Imagem cupom fiscal*/
.vercupom {
  margin: auto;
  display: inherit;
}

.vercupom a {
  height: 35px;
  width: 35px;
  text-decoration: none !important;
  position: absolute;
  color: var(--c-red1);
  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-red2);
  background: transparent;
}

.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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-red2);
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-white);
}

.section.produtos.produtos_lista .lista-produtos .item .nome {
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1rem;
  color: var(--c-red1);
  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-red1);
  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-red1);
  border-radius: 1rem;
  padding: 4rem 3rem 3rem 3rem;
  max-width: 400px;
  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: 65px;
  height: 90px;
  border-radius: 0.4rem;
  font-family: "Amfibia", Arial, sans-serif;
  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-red1);
}

@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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.countdown .digits div {
  font-size: 4rem;
  color: var(--c-reddark);
  background: transparent;
  font-family: "Amfibia", Arial, sans-serif;
  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 {
  width: 100%;
  padding: 2.4rem 4rem !important;
}

.btn-copiar .copiar-value,
.btn-copiar .copiar-value i {
  color: white !important;
  font-size: 2.4rem !important;
}

.btn-copiar:hover {
  background-color: #0056b3;
}

.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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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: "Amfibia", Arial, sans-serif;
  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-white) !important;
  border-color: var(--c-white) !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-selection--single:focus {
  outline-color: #ffd998;
}

.select2-container--default .select2-selection--single {
  padding: 1.5rem 2rem 1.5rem 2rem !important;
  height: 46px !important;
  border-radius: 2.4rem !important;
  border: none !important;
  margin: 15px 0px 6px 0px !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  background: var(--c-gray) !important;
  font-family: "Amfibia", Arial, sans-serif !important;
  font-weight: 500 !important;
  color: var(--c-black) !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;
}

.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: "Amfibia", Arial, sans-serif;
  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: -7px;
  color: var(--c-black) !important;
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  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: var(--c-white) !important;
  padding: 1rem !important;
  font-weight: 600 !important;
}

.select2-results__option--selectable {
  color: var(--c-black);
  font-size: 1.6rem;
  padding: 1rem !important;
}

.select2-results__option {
  color: var(--c-black);
  font-family: "Amfibia", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  text-shadow: none;
  text-transform: none;
}

.select2-dropdown {
  border: 0px solid #ffffff !important;
  border-radius: 50rem;
  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: "Amfibia", Arial, sans-serif;
  font-weight: 700;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}