﻿:root {
  --c-yellow1: #ffc70e;
  --c-yellow2: #eec951;
  --c-orange1: #d3613f;
  --c-red1: #c21016;
  --c-red2: #cd1215;
  --c-red3: #d33f53;
  --c-red4: #c55d6b;
  --c-green: #3fd35f;
  --c-maroon1: #8b2936;
  --c-maroon2: #852734;
  --c-maroon3: #872633;
  --c-wine: #470102;
  --c-darkBlue1: #0b1116;
  --c-darkBlue2: #101a22;
  --c-darkBlue3: #101920;
  --c-darkBlue4: #121b22;
  --c-darkBlue5: #16222b;
  --c-bege1: #f3eadf;
  --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: #d71414;
  --c-error2: #fe4b4b;
}

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: "Larken", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  background: url(../img/elementos/textura_desktop_blue.webp) center center no-repeat, #872633;
  background-attachment: fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased !important;
  appearance: none !important;
  text-rendering: optimizelegibility;
}

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

/* Evita FOUC */
body.preload {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

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

.main {
  margin-top: -16px;
}
@media (max-width: 991px){
  .main {
    margin-top: -16px;
  }
}

/*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;
}

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(1.05) rotate(0deg);
    -ms-transform: scale(1.05) rotate(0deg);
    transform: scale(1.05) 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(1.1) rotate(0deg);
    -ms-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) 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 {
  position: relative;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-maroon1);
  background: var(--c-bege1);
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  border: none;
  opacity: 0.5;
}

.tab-btn .btn:focus,
.tab-btn .btn:hover {
  color: var(--c-maroon1);
  background: var(--c-bege1);
  opacity: 1;
}

.tab-btn .btn.active {
  position: relative;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-darkBlue2);
  background: var(--c-yellow2);
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  border: none;
  opacity: 1;
}

.tab-btn .btn.active:focus,
.tab-btn .btn.active:hover {
  color: var(--c-darkBlue2);
  background: var(--c-yellow2);
  opacity: 1;
}

@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: 10px;
  border-radius: 10px;
  max-width: 520px;
  transition: none;
  color: var(--c-white);
  padding: 2rem 4rem;
  background: var(--c-maroon3);
}

@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: "Larken", Arial, sans-serif;
}

.cookies .padding .description {
  margin: 0 0 0 0;
  text-align: left;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
}

@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;
}

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

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

.cookies .padding .buttons-allow .btn {
  position: relative;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 800;
  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-yellow1);
}

.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.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: "Larken", 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: "Larken", 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: "Larken", 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: "Larken", 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: "Larken", 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: "Larken", 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-bege1);
}

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

#popup-cookiesgeral .nav-tabs .nav-link {
  font-size: 14px !important;
  font-family: "Larken", 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: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  padding: 9px 10px 5px 10px;
  border: 1px solid var(--c-bege1);
  background: var(--c-bege1);
  line-height: 120%;
  color: var(--c-maroon3);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 1rem;
}

#popup-cookiesgeral .nav-pills .nav-link:hover {
  /*background-color: var(--c-maroon1) !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: "Larken", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--c-darkBlue3) !important;
  background: var(--c-yellow2) !important;
  border-color: var(--c-yellow2);
}

@media (max-width: 991px) {
  #popup-cookiesgeral .nav-pills .nav-link {
    text-align: center;
    font-size: 16px;
    padding-top: 7px !important;
    padding-bottom: 5px !important;
  }
}

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

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

#popup-cookiesgeral .subtitle-cookies {
  font-family: "Larken", 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-yellow1);
}

#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-yellow1);
  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: "Larken", 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%);
}

.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-maroon3);
}

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

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

.modal .btn-fechar {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 100%;
  cursor: pointer;
  border: 0;
  margin: 0px 0px 0 0;
  padding: 0;
  right: 10px;
  position: absolute;
  top: 10px;
}

.modal .btn-fechar {
  transition: all 0.3s ease-in-out;
}

.modal .btn-fechar:hover {
  transform: scale(1.3);
}

.modal .titulo {
  color: var(--c-yellow2);
  padding: 0px;
  margin-bottom: 1rem;
  text-transform: none;
  font-size: 3.5rem;
  line-height: 1;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

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

.modal .descricao a:hover {
  color: var(--c-yellow2);
  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-yellow2);
}

.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: 10px 10px 0 0;
  }
}

/*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: "Larken", 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: "Larken", 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: "Larken", 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-yellow1) !important;
  background: var(--c-yellow1) !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: "Larken", Arial, sans-serif;
  font-weight: 500;
  /*text-transform: uppercase;*/
  font-size: 1.7rem;
  line-height: 120%;
}

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

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

.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-yellow2);
  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-yellow2);
  transition: all 0.5s ease-in-out;
}

#back-to-top::before {
  content: "\f077";
  font-family: "FontAwesome", Arial, sans-serif;
  color: var(--c-darkBlue3);
  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: 80px;
  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: 30px;
  }
}

/* Quero participar */
#back-to-top3 {
  position: fixed;
  display: none;
  bottom: 15px;
  left: 15px;
  z-index: 99999999 !important;
  background: transparent;
  border-radius: 100%;
  cursor: pointer;
  height: 155px;
  width: 200px;
  opacity: 1;
  border: 0;
  transition: all 0.5s ease-in-out;
}

#back-to-top3::before {
}

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

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

@media (max-width: 991px) {
  #back-to-top3 {
    right: 30px;
    height: 120px;
    width: 150px;
  }
}

/* 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-yellow1);
  border-radius: 5rem;
}

.section.cadastrosucesso ::-webkit-scrollbar-thumb {
  background: #a6050b;
  border-radius: 5rem;
}

.section.ganhadores ::-webkit-scrollbar-thumb {
  background: var(--c-yellow1);
  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;
  color: var(--c-white);
}

.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-bege1 {
  color: var(--c-bege1) !important;
}
.text-yellow1 {
  color: var(--c-yellow1) !important;
}
.text-yellow2 {
  color: var(--c-yellow2) !important;
}
.text-maroon1 {
  color: var(--c-maroon1) !important;
}
.text-maroon3 {
  color: var(--c-maroon3) !important;
}
.text-darkBlue3 {
  color: var(--c-darkBlue3) !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;
}

/**/
.bkg-red1 {
  background: var(--c-red1) !important;
}
.bkg-red2 {
  background: var(--c-red2) !important;
}
.bkg-maroon3 {
  color: var(--c-maroon3) !important;
}
.bkg-yellow1 {
  background: var(--c-yellow1) !important;
}
.bkg-yellow2 {
  background: var(--c-yellow2) !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;
}

/* AGUARDE */
.aguarde {
  /*font-family: 'Larken', Arial, sans-serif;*/
  /*font-weight: 700;*/
  /*font-size: 23px!important;*/
  /*line-height: 120%!important;*/
  /*color: #f2f2f2!important;*/
  /*margin-bottom: 0px;*/
}

.aguarde span {
  color: var(--c-red1);
}

/* 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: 5rem 3rem 8rem 3rem;
  /*  max-width: 1366px;*/
}

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

.main .section .header-section h2,
.main .section .header-section p.title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: fit-content;
  margin: auto;
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--c-yellow2);
  position: relative;
}

/* .main .section .header-section h2::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -20px;
  width: 76px;
  height: 61px;
  background: url("../img/elementos/header-left.webp") center center no-repeat;
  background-size: contain;
  transform: translateX(-100%);
  transition: all 0.3s ease;
} */

/* .main .section .header-section h2::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -20px;
  width: 76px;
  height: 61px;
  background: url("../img/elementos/header-right.webp") center center no-repeat;
  background-size: contain;
  transform: translateX(100%);
  transition: all 0.3s ease;
} */

@media (max-width: 991px) {
  .main .section .header-section h2,
  .main .section .header-section p.title {
    text-align: center;
  }

  /* .main .section .header-section h2::before,
  .main .section .header-section h2::after {
    top: 50%;
    width: 35px;
    height: 28px;
  } */

  /* .main .section .header-section h2::before {
    transform: translateY(-50%) translateX(-100%);
  }
  .main .section .header-section h2::after {
    transform: translateY(-50%) translateX(100%); */
  }
}

@media (max-width: 520px) {
  .main .section .header-section h2,
  .main .section .header-section p.title {
    font-size: 3, 2rem !important;
  }
}

/* @media (max-width: 390px) {
  .main .section .header-section h2::before {
    transform: translateY(-50%) translateX(-100%);
  }
  .main .section .header-section h2::after {
    transform: translateY(-50%) translateX(100%);
  }
} */

.main .section .header-section h3 {
  font-family: "Larken", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-bege1);
  font-size: 1.8rem;
  margin-top: 2rem;
}

.main .section .descricao {
  font-family: "Larken", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-bege1);
  font-size: 17px;
  line-height: 120%;
}

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

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

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

@media (max-width: 991px) {
  .main .section .padding {
    padding: 5rem 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;
}

.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: 2rem;
  border-radius: 20px;
  background: url("../img/elementos/textura_boxlogin.webp") center center no-repeat #7a1825;
}

.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: "Larken", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-yellow2);
}

.section.login .box-login .header-section h3 {
  font-family: "Larken", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-white);
}

.section.login .box-login .esquecisenha {
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-yellow2);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: underline;
}

.section.login .box-login .esquecisenha:hover {
  text-decoration: none;
  color: var(--c-yellow2);
}

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

@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;
  }
}

/* ====== Seção: Resgate ====== */
.section.resgate {
  position: relative;
}
.section.resgate .header-section {
  margin-bottom: 2rem !important;
}
.section.resgate .meuspontos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  border: 3px solid var(--c-red1);
  background: var(--c-white);
  padding: 2rem;
  height: 60px;
  padding: 1.5rem 1rem 1rem 1rem;
}
.section.resgate .meuspontos-container span {
  color: var(--c-red1);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section.resgate .content-section {
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .section.resgate .content-section {
    margin-top: 3rem;
  }
}

.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: "Larken", 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: "Larken", 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: "Larken", 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;
  }
}

/* ====== Hero ====== */
.animateHero .contentHero {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  max-width: 1920px;
}

.animateHero .contentHero .groupHero {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 0%;
  opacity: 1;
}
.animateHero .contentHero .premioSorteio {
  position: absolute;
  z-index: 2;
  top: 33.3%;
  left: 25.3%;
  width: 28.91%;
  max-width: 555px;
}
.animateHero .contentHero .premioVB {
  position: absolute;
  z-index: 2;
  top: 42.1%;
  left: 28.5%;
  width: 22.45%;
  max-width: 431px;
}
.animateHero .contentHero .selo {
  position: absolute;
  z-index: 2;
  top: 1%;
  left: 23.3%;
  width: 51.2%;
  /*max-width: 820px;*/
}
.animateHero .contentHero .seloQualidade {
  position: absolute;
  z-index: 2;
  top: 4.1%;
  left: 8.5%;
  width: 6.303%;
  max-width: 120px;
}
.animateHero .contentHero .slogan {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 80.8%;
  width: 18.23%;
  max-width: 350px;
}
.animateHero .contentHero .personagem {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 85.4%;
  width: 14.54%;
  max-width: 279px;
}
.animateHero .contentHero .comoparticipar {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 80.6%;
  width: 20%;
  max-width: 350px;
}
.animateHero .contentHero .pack {
  position: absolute;
  z-index: 2;
  top: 75%;
  left: 77.7%;
  width: 22.4%;
  max-width: 430px;
}
.animateHero .contentHero .textolegal {
  position: absolute;
  z-index: 2;
  top: 90.1%;
  left: 76.7%;
  width: 22.4%;
  max-width: 430px;
}

/* ====== Seção: Home ====== */
.section.inicio {
  position: relative;
}

.section.inicio .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0rem;
  margin: auto;
}
@media (max-width: 991px) {
  .section.inicio .padding {
    padding: 0rem !important;
  }
}

/* ====== Seção: Como participar ====== */
.section.comoparticipar {
  position: relative;
  background: url("../img/elementos/bkg3_1920.png") center center no-repeat;
  background-size: cover;
}

.section.comoparticipar .padding {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 7rem 3rem;
  margin: auto;
}

.section.comoparticipar .header-section h2 {
  font-size: 4rem;
}

.section.comoparticipar .padding .steps-boxes {
  padding: 0rem;
}
.section.comoparticipar .padding .steps-boxes .step-container .step-content .step-description.step-description-small {
  font-size: 1.7rem!important;
}
.section.comoparticipar
  .padding
  .steps-boxes
  .step-container
  .step-content
  .step-description {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.steps-boxes .steps-container {
  max-width: 1200px !important;
}
.steps-boxes .steps-container .step-container:nth-child(1) .step-icon {
  aspect-ratio: inherit !important;
  max-height: 100% !important;
}
.steps-boxes .steps-container .step-container:nth-child(2) .step-icon {
  aspect-ratio: inherit !important;
  max-height: 100% !important;
}
.steps-boxes .steps-container .step-container:nth-child(3) .step-icon {
  aspect-ratio: inherit !important;
  max-height: 100% !important;
}
.steps-boxes .step-container .step-content .step-icon img {
  width: inherit !important;
  max-width: 100%;
  height: inherit;
  max-height: inherit;
}

@media (max-width: 991px) {
  .section.comoparticipar .padding {
    padding: 7rem 3rem;
  }
  .section.comoparticipar .header-section h2::before {
    transform: translateY(-50%) translateX(0%);
  }
  .section.comoparticipar .header-section h2::after {
    transform: translateY(-50%) translateX(0%);
  }
}

/* Section PRODUTOS */
.section.produtosparticipantes {
  position: relative;
  background: var(--c-bege1);
}
.section.produtosparticipantes .padding {
  padding: 5rem 3rem 5rem 3rem!important;
  max-width: 1920px;
}
.section.produtosparticipantes .packprodutos-container {
  display: flex;
  justify-content: center;
}
.section.produtosparticipantes .packprodutos-container img {
  /*aspect-ratio: 552 / 248;*/
  max-width: 100%;
}
.section.produtosparticipantes .vovos-container {
  display: none;
}
.section.produtosparticipantes .vovo-section-bottom {
  position: relative;
  z-index: 0;
  text-align: center;
  margin-bottom: 0;
  margin-top: -202px;
}

@media (max-width: 991px) {
  .section.produtosparticipantes .padding {
    border-radius: 4rem;
    padding: 10rem 3rem 12rem 3rem !important;
    margin-right: 0;
    margin-left: 0;
  }
  .section.produtosparticipantes .vovos-container .col-6 {
    max-width: fit-content;
    padding: 0;
  }
  .section.produtosparticipantes .header-section h2::before {
    transform: translateY(-50%) translateX(0%);
  }
  .section.produtosparticipantes .header-section h2::after {
    transform: translateY(-50%) translateX(0%);
  }
}

@media (min-width: 992px) and (max-width: 1600px) {
  /*.section.produtosparticipantes .padding {
    padding: 12rem 40% 15rem 40% !important;
  }*/
  .section.produtosparticipantes .vovo-section-bottom {
    position: relative;
    z-index: 0;
    text-align: center;
    margin-bottom: 0;
    margin-top: -138px;
  }
  .section.produtosparticipantes .vovo-section-bottom img {
    width: 100%;
    max-width: 190px;
  }
}

/* Section PRODUTOS LISTA */
.section.produtos.produtos_lista {
  position: relative;
  background: var(--c-bege1);
}

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

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

/* Section PRÊMIOS */
.section.premios {
  position: relative;
  background: url("../img/elementos/bkg3_1920.png") center center no-repeat;
  background-size: cover;
}

.section.premios .padding {
  position: relative;
  width: 100%;
  padding: 71px 3rem 114px 3rem;
}

.section.premios .header-section h2 {
  font-size: 5rem;
}

.box-premios-container {
  display: flex;
  gap: 5.4rem;
  align-items: center;
  justify-content: center;
  margin-top: 4.8rem;
}

.box-premio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding: 2.7rem 1.2rem 4rem 1.4rem;
  border-radius: 38px;
  border: 1px solid #f3eadf;
  width: 334px;
  height: 248px;
}

.box-premio-title {
  color: #ebc83c;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

.box-premio-description {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section.premios .box-premios-container {
    flex-direction: column;
  }

  .box-premio {
    width: 100%;
    max-width: 334px;
    height: auto;
    min-height: 248px;
  }

  .section.premios .header-section h2 {
    font-size: 4rem;
  }
}

/* Section PRODUTOS  */
.section.produtos {
}
@media (max-width: 991px) {
  .section.produtos {
  }
}

.section.produtos .header-section {
  margin-bottom: 2rem !important;
}

.section.produtos .header-section a,
.section.produtos .header-section a:hover {
  color: var(--c-red1);
}

.section.produtos .pack-produto img {
  position: relative;
  transition: all 0.4s ease-in-out;
}

.section.produtos .pack-produto:hover img {
  transition: all 0.4s ease-in-out;
  transform: scale(0.98);
}

/* __Elementos | Cadastro */
.section.produtos .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.produtos .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.produtos .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.produtos .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.produtos .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.produtos .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.produtos .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.produtos .elemento1 img,
.section.produtos .elemento2 img,
.section.produtos .elemento3 img,
.section.produtos .elemento4 img,
.section.produtos .elemento6 img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section.produtos .elemento1 {
    width: 25%;
    left: -4%;
  }

  .section.produtos .elemento4 {
    bottom: 44%;
    left: -7%;
    width: 25%;
  }

  .section.produtos .elemento5 {
    width: 15%;
    top: 1%;
    right: 2%;
  }
}

/*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; */
#cadastro {
  position: relative;
}

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

#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: "Larken", 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);
}

.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 - SUCESSO */
.section.cadastrosucesso {
  position: relative;
}

.section.cadastrosucesso p.description {
  font-size: 1.8rem;
  color: var(--c-white);
  font-family: "Larken", 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: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-yellow1);
  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: "Larken", 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: "Larken", 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 .custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  /*color: var(--c-white);*/
}

.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: "Larken", 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: "Larken", 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;
}
@media (max-width: 991px) {
  .section.duvidas {
    position: relative;
  }
}

.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: "Larken", Arial, sans-serif;
  font-weight: 700;
}

.section.duvidas .descricao {
  font-family: "Larken", 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;
}

@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;
  }
}

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

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

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

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

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

input.form-control:focus {
  padding: 1.5rem 2rem 1.5rem 2rem;
  height: 44px;
  border-radius: 1rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Larken", 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.5rem 2rem;
  height: auto;
  border-radius: 1.5rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.3rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Larken", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-black);
}

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

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

.float-placeholder {
  font-size: 1.2rem;
  line-height: 1;
  text-align: left;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-darkBlue4);
  background: var(--c-yellow2);
  border-radius: 0.5rem;
  z-index: 2;
  padding: 0.6rem 1rem 0.6rem 1rem;
  display: block;
  position: absolute;
  top: 0px;
  left: 1.5rem;
  letter-spacing: 0px;
  text-transform: none;
}

.form-check-label {
  color: var(--c-red1);
  font-size: 1.7rem;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
}

.custom-control-label {
  color: var(--c-bege1);
  padding: 4px 0 0px 1rem;
  font-size: 1.5rem;
  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-bege1);
}

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

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

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: "Larken", Arial, sans-serif;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 8px;
  padding: 0rem 0rem 0rem 1rem;
  background: transparent;
}

/* 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;
}

.senha-regras {
  text-align: left;
  font-size: 1.3rem;
  background-color: var(--c-gray);
  border: none;
  border-radius: 10px 10px 10px 10px;
  position: absolute;
  z-index: 999;
  width: 195px;
  padding: 1.5rem 10px 1.5rem 10px;
  margin-top: 0px;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 500;
}

.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-darkBlue3) !important;
  top: 23px;
  right: 25px;
  z-index: 1;
  font-size: 2rem;
  cursor: pointer;
}

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

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

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

@media (max-width: 991px) {
  .eye {
    top: 7px;
    right: 20px;
    position: absolute;
  }

  .eye [data-togglepassword] {
    text-align: center;
    width: 100%;
    font-size: 25px;
    height: 20px;
    line-height: 25px;
    top: 18px;
    right: 30px;
  }
}

/* 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-yellow1) !important;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
}

/* Formulario steps */

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

[data-plugin="upload"] .upload-preview {
  font-family: "Larken", 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;
}

[data-step]:first-child.active ~ .formsteps-buttons .formsteps-btn-prev {
  display: none !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 */
.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;
  }
}
.section.ganhadores table.table .filter-result {
  color: var(--c-maroon3);
}
.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-maroon3) !important;
}
.section.ganhadores .content-section {
  width: 100%;
  margin: auto;
}

.section.ganhadores .categoria {
  padding: 0px;
  margin-bottom: 3rem;
  font-size: 3rem;
  line-height: 1;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 800;
  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: "Larken", Arial, sans-serif;
  font-weight: 800;
  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: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 700;
  background: var(--c-yellow1);
  border-color: var(--c-yellow1);
  margin-top: 5px;
}

/* Filtro letra */
.section#ganhadores button.btn {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  margin: 3px 1px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--c-bege1);
  color: var(--c-white);
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700 !important;
  font-style: normal !important;
  opacity: 1;
  border-color: var(--c-bege1) !important;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-weight: inherit;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0.45rem;
}

.section#ganhadores button.btn.active {
  background: var(--c-yellow2);
  color: var(--c-darkBlue3);
  line-height: 1;
  opacity: 1;
  border-color: var(--c-yellow2);
}

.section#ganhadores .btn.disabled,
.section#ganhadores .btn:disabled {
  opacity: 0.15;
  background: transparent;
  color: var(--c-yellow2);
  border: 2px solid var(--c-yellow2) !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;
  }
}

/* SECTION - GANHADORES */
.section.ganhadores .box-ganhador {
  position: relative;
  background-color: var(--c-black);
  padding: 2rem 2rem;
  margin-top: 2rem;
  /*    margin-bottom: 5rem;*/
  border-radius: 1.5rem;
}

.section.ganhadores .box-ganhador p {
  text-align: center !important;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

/* SECTION - Meus numeros */
.section.meuextrato {
}
@media (max-width: 991px) {
  .section.meuextrato {
  }
}

.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: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-yellow1);
  margin-bottom: 1rem;
}

.section.meuextrato .box .description {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: "Larken", 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: "Larken", Arial, sans-serif;
}

/* __Elementos | Início */
.section.meuextrato .elemento1 {
  position: absolute;
  top: 0%;
  left: -13%;
  width: 22.1%;
  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.meuextrato .elemento2 {
  position: absolute;
  top: -20%;
  right: 38%;
  width: 16.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.meuextrato .elemento3 {
  position: absolute;
  bottom: -16%;
  right: 43%;
  width: 14%;
  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.meuextrato .elemento4 {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 25%;
  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.meuextrato .elemento5 {
  position: absolute;
  top: 8%;
  right: -5%;
  width: 10%;
  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.meuextrato .elemento1 img,
.section.meuextrato .elemento2 img,
.section.meuextrato .elemento3 img,
.section.meuextrato .elemento4 img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

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

/*SECTION - ESQUECI MINHA SENHA */
.section.redefinirsenha {
  position: relative;
}

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

@media (max-width: 991px) {
  .section.redefinirsenha .content-section {
    width: 100%;
  }

  .section.redefinirsenha .padding {
    /*padding: 40px 1.5rem 40px 1.5rem;*/
  }
}

@media (max-width: 991px) {
  .modal.popup-esquecisenha .btn {
    margin-top: 10px;
  }

  .modal.popup-esquecisenha .titulo span img,
  .modal.popup-esquecisenhasucesso .titulo span img {
    top: 26px !important;
  }

  .modal.popup-esquecisenhasucesso .descricao a {
    font-size: 13px;
    line-height: 1.5rem;
  }
}

/*SECTION - REDEFINIÇÃO DE SENHA */
#redefinirsenha {
  position: relative;
  background: #fffbf0;
}

#redefinirsenha .padding {
  padding: 70px 1.5rem 80px 1.5rem;
}

#redefinirsenha .header-section h2 {
  text-align: center;
  color: #bb9b5e;
}

#redefinirsenha .description.small {
  font-size: 14px;
  text-align: center;
  color: #bb9b5e;
}

#redefinirsenha .content-section {
  position: relative;
  height: 600px;
}

#redefinirsenha .float-placeholder {
  /*top: -18px;*/
}

#redefinirsenha .form-control {
  border-color: var(--c-red1);
}

#redefinirsenha .float-placeholder {
  top: -18px;
}

@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 .logopromo {
  max-width: 100%;
  margin-top: 0px;
  padding: 60px 25px 25px 25px;
}

.section.inicio.aguarde .logopromo img {
  width: 100% !important;
  max-width: 300px !important;
}

.section#erro .chamada img {
  max-width: 350px;
}

.section.aguarde .logopromocao .img-logopromocao {
  position: relative;
  max-width: 100%;
}

.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: "Larken", 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: "Larken", 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: "Larken", 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-error);
  font-family: "Larken", 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: "Larken", 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: "Larken", 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;
}

/* ENVIAR CUPOM #IMG */
/*IMG1*/
#img1 {
  display: table;
  margin: auto;
  border-spacing: 20px 15px;
  width: 100%;
}

#img1 > div {
  display: grid;
  vertical-align: inherit;
  margin: auto;
  text-align: center !important;
  margin-top: 10px;
}

#img1 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img1 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img1:not(.loaded) .upload-reset,
#img1.loaded .upload-change,
#img1:not(.loaded) .filename,
#img1.loaded .placeholder {
  display: none;
}

#img1 .txt-envie {
  margin-top: 15px;
  color: var(--c-white);
  font-size: 15px;
  line-height: 17px;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
}

#img1 .icone-arquivo-carregado {
  /* color: #ece113; */
  display: none;
}

#img1 .arquivo-carregado,
#img1 .filename {
  font-size: 14px;
  line-height: 140%;
  color: var(--c-white);
  font-family: "Larken", Arial, sans-serif;
  font-weight: 600;
  margin-top: 0px;
}

#img1 .upload-preview {
  width: 130px;
  height: 130px;
  background: var(--c-maroon3);
  border-radius: 7px;
  border: 0;
}

label#CupomImagem-error {
  text-align: center;
}

/*Não exibe o hover, após a imagem carregada*/
[data-plugin="upload"].loaded .upload-preview:hover > div {
  opacity: 0 !important;
}

#img1 [data-plugin="upload"] .upload-preview > div {
  display: grid !important;
}

@media (max-width: 991px) {
  #img1 {
    margin-left: 0;
    border-spacing: 0;
    width: 100%;
  }

  #img1 > div {
    text-align: center !important;
    width: 100% !important;
    display: grid;
    vertical-align: inherit !important;
    margin: auto !important;
  }

  #img1 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img1 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img1:not(.loaded) .upload-reset,
  #img1.loaded .upload-change,
  #img1:not(.loaded) .filename,
  #img1.loaded .placeholder {
    display: none;
  }

  #img1:not(.loaded) .upload-reset,
  #img1.loaded .upload-change,
  #img1:not(.loaded) .filename,
  #img1.loaded .placeholder {
    display: none;
  }

  #img1 .txt-envie {
    margin-top: 15px;
    /*color: #ffffff;*/
    font-size: 15px;
    line-height: 17px;
    font-family: "Larken", Arial, sans-serif;
    font-weight: 700;
  }

  #img1 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
  }

  #img1 .arquivo-carregado,
  #img1 .filename {
    font-size: 12px;
    color: var(--c-white);
    font-family: "Larken", Arial, sans-serif;
    font-weight: 500;
  }

  #img1 .upload-preview {
    /*width: 100px;*/
    /*height: 100px; */
    /*background-color: #f5efdd;*/
    /*border-radius: 7px;*/
    /*border: 0;*/
  }
}

/*IMG2*/
#img2 {
  display: table;
  margin: auto;
  border-spacing: 20px 15px;
  /*width: 450px;*/
  width: 100%;
}

#img2 > div {
  display: grid;
  vertical-align: inherit;
  margin: auto;
  text-align: center !important;
  margin-top: 10px;
}

#img2 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img2 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img2:not(.loaded) .upload-reset,
#img2.loaded .upload-change,
#img2:not(.loaded) .filename,
#img2.loaded .placeholder {
  display: none;
}

#img2 .txt-envie {
  margin-top: 15px;
  color: #ffffff;
  font-size: 15px;
  line-height: 17px;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
}

#img2 .icone-arquivo-carregado {
  /* color: #ece113; */
  display: none;
}

#img2 .arquivo-carregado,
#img2 .filename {
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 500;
}

#img2 .upload-preview2 {
  width: 130px;
  height: 130px;
  background-color: #f5efdd;
  border-radius: 7px;
  border: 0;
}

#img2 [data-plugin="upload"] .upload-preview2 > div {
  display: grid !important;
}

@media (max-width: 991px) {
  #img2 {
    margin-left: 0;
    border-spacing: 0;
    width: 100%;
  }

  #img2 > div {
    text-align: center !important;
    width: 100% !important;
    display: grid;
    vertical-align: inherit !important;
    margin: auto !important;
  }

  #img2 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img2 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img2:not(.loaded) .upload-reset,
  #img2.loaded .upload-change,
  #img2:not(.loaded) .filename,
  #img2.loaded .placeholder {
    display: none;
  }

  #img2 .txt-envie {
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
    line-height: 17px;
    font-family: "Larken", Arial, sans-serif;
    font-weight: 700;
  }

  #img2 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
  }

  #img2 .arquivo-carregado,
  #img2 .filename {
    font-size: 12px;
    color: #ffffff;
    font-family: "Larken", Arial, sans-serif;
    font-weight: 500;
  }

  #img2 .upload-preview2 {
    width: 100px;
    height: 100px;
    background-color: #f5efdd;
    border-radius: 7px;
    border: 0;
  }
}

/*IMG3*/
#img3 {
  display: table;
  margin: auto;
  border-spacing: 20px 15px;
  /*width: 450px;*/
  width: 100%;
}

#img3 > div {
  display: grid;
  vertical-align: inherit;
  margin: auto;
  text-align: center !important;
  margin-top: 10px;
}

#img3 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img3 > div [class*="vld-"] + .error {
  background: var(--c-white);
}

#img3:not(.loaded) .upload-reset,
#img3.loaded .upload-change,
#img3:not(.loaded) .filename,
#img3.loaded .placeholder {
  display: none;
}

#img3 .txt-envie {
  margin-top: 15px;
  color: #ffffff;
  font-size: 15px;
  line-height: 17px;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
}

#img3 .icone-arquivo-carregado {
  /* color: #ece113; */
  display: none;
}

#img3 .arquivo-carregado,
#img3 .filename {
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 500;
}

#img3 .upload-preview3 {
  width: 130px;
  height: 130px;
  background-color: #f5efdd;
  border-radius: 7px;
  border: 0;
}

#img3 [data-plugin="upload"] .upload-preview3 > div {
  display: grid !important;
}

@media (max-width: 991px) {
  #img3 {
    margin-left: 0;
    border-spacing: 0;
    width: 100%;
  }

  #img3 > div {
    text-align: center !important;
    width: 100% !important;
    display: grid;
    vertical-align: inherit !important;
    margin: auto !important;
  }

  #img3 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img3 > div [class*="vld-"] + .error {
    background: var(--c-white);
  }

  #img3:not(.loaded) .upload-reset,
  #img3.loaded .upload-change,
  #img3:not(.loaded) .filename,
  #img3.loaded .placeholder {
    display: none;
  }

  #img3 .txt-envie {
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
    line-height: 17px;
    font-family: "Larken", Arial, sans-serif;
    font-weight: 700;
  }

  #img3 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
  }

  #img3 .arquivo-carregado,
  #img3 .filename {
    font-size: 12px;
    color: #ffffff;
    font-family: "Larken", Arial, sans-serif;
    font-weight: 500;
  }

  #img3 .upload-preview3 {
    width: 100px;
    height: 100px;
    background-color: #f5efdd;
    border-radius: 7px;
    border: 0;
  }
}

#img1 .upload-preview,
#img2 .upload-preview2,
#img3 .upload-preview3 {
  width: 180px;
  height: 180px;
  background-color: var(--c-maroon3);
  border: 2px solid var(--c-yellow2);
  background-size: cover;
}

/* SECTION - CADASTRO CUPOM; */
.section.cadastro-cupom .chave-acesso {
  background: var(--c-maroon3);
  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: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-yellow2);
  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-bege1);
  padding: 2rem;
  position: relative;
  border-radius: 1rem;
  color: var(--c-maroon3);
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.section.cadastro-cupom .titulo-step {
  font-family: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 500;
}

.total {
  font-family: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 700;
  color: var(--c-bege1);
}

.tbitems-remove {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--c-maroon3);
  transition: all 0.3s ease;
}
.tbitems-remove:hover,
.tbitems-remove:focus {
  color: var(--c-red2);
}

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

.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-error2);
}

.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-yellow1) !important;
  border-color: var(--c-yellow1) !important;
}

.cadastro-cupom table.table th {
  background-color: var(--c-yellow1);
  color: var(--c-red2);
  padding: 2rem 2rem 2rem 2rem;
  text-transform: uppercase;
}

.cadastro-cupom table.table th i {
  color: var(--c-darkBlue3);
}

@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: 19px;
  right: 20px;
  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: "Larken", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-yellow1);
}

/*.section.cadastro-selecao .selecao .img-selecao {}*/

.section.cadastro-selecao .selecao .text-selecao {
  font-size: 3.5rem;
  line-height: 1;
  font-family: "Larken", 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-yellow1);
}
.section.cadastro-selecao .selecao .selecao2:hover .text-selecao {
  color: var(--c-yellow1);
}

/* 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: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-yellow1);
}

.section.produtos.produtos_lista .lista-produtos .item .nome {
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1rem;
  color: #852734;
  background: var(--c-maroon3);
  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-white);
}

.section.produtos.produtos_lista .lista-produtos .item .nome p.description,
.section.produtos.produtos_lista .lista-produtos .item .nome p.description2 {
  margin-bottom: 0rem;
  font-weight: 500;
  color: var(--c-white);
  text-align: center;
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  position: relative;
  padding: 2rem;
  background: var(--c-bege1);
  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 */
.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-yellow2) !important;
  width: 146px;
  height: 140px;
  border-radius: 1rem;
  font-family: "Larken", 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: 24px;
  font-weight: 700;
  color: var(--c-darkBlue3);
}

@media (max-width: 991px) {
  .countdown {
    margin-bottom: 15px;
    margin-top: 5px;
    width: 100%;
  }
}

.countdown .info {
  font-size: 3rem;
  padding: 0px;
  line-height: 100%;
  color: var(--c-yellow1);
  font-family: "Larken", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.countdown .digits div {
  font-size: 64px;
  color: var(--c-darkBlue3);
  background: transparent;
  font-family: "Larken", Arial, sans-serif;
  font-weight: 800;
  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-yellow1);
  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-yellow2);
  border-radius: 10px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--c-darkBlue3);
  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: "Larken", 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: "Larken", Arial, sans-serif;
  font-weight: 700;
  margin-left: 1.2rem;
  margin-top: 8px;
  padding: 0rem;
  background: transparent;
  text-align: center;
  color: var(--c-yellow2);
}

/* 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: "Larken", Arial, sans-serif;
  font-size: 2rem !important;
  text-transform: uppercase;
  font-style: normal !important;
  font-weight: 900;
  white-space: nowrap !important;
  color: var(--c-yellow2) !important;
  padding: 2px 0 0px 1rem;
}

/* Not Checked e Focus */
.form-switch .form-check-input,
.form-switch .form-check-input:focus {
  background-color: var(--c-bege1);
  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-bege1) !important;
  outline: none !important;
}

/* Checked */
.form-switch .form-check-input:checked {
  background-color: var(--c-yellow2);
  border-color: var(--c-yellow2) !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-bege1);
  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-yellow2) !important;
  border-color: var(--c-yellow2) !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;
}

/* 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: "Larken", 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: "Larken", 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: "Larken", 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-yellow1) !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: "Larken", 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-yellow1) !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 */
.title-shadow {
  color: var(--c-yellow2);
  text-shadow: 1px 2px 0px var(--c-maroon3);
  font-family: "Larken", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.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-darkBlue3);
  font-size: 18px;
  font-weight: 400;
}

.box-link-resgate:hover, .box-link-resgate:focus {
  transform: scale(1.05);
  color: var(--c-darkBlue3);
}
