﻿:root {
  --c-red1: #b90610;
  --c-red2: #d4060d;
  --c-yellow1: #fffa24;
  --c-yellow2: #ffef00;
  --c-bluedark1: #093d8b;
  --c-bluedark2: #002f78;
  --c-bluelight1: #8bdef4;
  --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;
}

/*
[Fontes do projeto]
AmsiProCond [Regular-400]
AmsiProCond [SemiBold-600]
AmsiProCond [Bold-700]
AmsiProCond [Black-800]
AmsiProCond [Ultra-900]
*/

body {
  padding-top: 0px;
  transition: opacity 1s ease-in-out;
  opacity: 1 !important;
  letter-spacing: 0;
  height: 100%;
  font-size: 2.3rem;
  line-height: 1.2;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  background-color: var(--c-bluedark1);
  /**/
  -webkit-font-smoothing: antialiased !important;
  appearance: none !important;
  text-rendering: optimizelegibility;
}

body.erro {
  margin-top: 0px;
  padding-top: 0px;
}

@media (max-width: 991px) {
  body {
    padding-top: 65px;
    background: var(--c-bluedark1);
  }
}

img {
  max-width: 100%;
}

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

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

iframe#cf-chl-widget-yqp3m {
  max-width: 250px!important;
}

/*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(0.97) rotate(0deg);
    -ms-transform: scale(0.97) rotate(0deg);
    transform: scale(0.97) rotate(0deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

.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 pulseBrilux {
  0% {
    -webkit-transform: scale(1) rotate(6deg);
    -ms-transform: scale(1) rotate(6deg);
    transform: scale(1) rotate(6deg);
  }

  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(6deg);
    -ms-transform: scale(1) rotate(6deg);
    transform: scale(1) rotate(6deg);
  }
}

.pulseBrilux {
  -webkit-animation-name: pulseBrilux;
  animation-name: pulseBrilux;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  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(0.5deg);
  }

  40% {
    transform: rotate(-0.5deg);
  }

  60% {
    transform: rotate(0.5deg);
  }

  80% {
    transform: rotate(-0.5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.efeitoTremer {
  animation-name: efeitoTremer;
  /*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 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;
}

@keyframes efeitoBola {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
    /* Ajuste esse valor conforme a distância exata até a base do "N" */
  }

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

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

.alterarcor {
  opacity: 1;
}

.item-over {
  opacity: 1;
  /*filter: blur(2px);*/
}

/* 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: 2.3rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 5px;
}

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

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

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

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

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

/* BUTTONS */
.btn {
  position: relative;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
  background: var(--c-bluedark1);
  font-size: 2rem;
  line-height: 1;
  padding: 1.2rem 3.2rem 1.2rem 3.2rem;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.btn:focus,
.btn:hover,
.btn.active {
  color: var(--c-white);
  background: var(--c-bluedark2);
  text-decoration: none !important;
  /**/
  transform: scale(1);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn.btn-white {
  color: var(--c-red1);
  background: var(--c-white);
  border-color: var(--c-white);
}

.btn.btn-white:focus,
.btn.btn-white:hover,
.btn.btn-white.active {
  color: var(--c-red1);
  background: var(--c-white);
  border-color: var(--c-white);
}

.btn.btn-yellow {
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  border-color: var(--c-yellow1);
}

.btn.btn-yellow:focus,
.btn.btn-yellow:hover,
.btn.btn-yellow.active {
  color: var(--c-bluedark1);
  background: var(--c-yellow2);
  border-color: var(--c-yellow2);
}

.btn.btn-red {
  color: var(--c-white);
  background: var(--c-red1);
  border-color: var(--c-red1);
}

.btn.btn-red:focus,
.btn.btn-red:hover,
.btn.btn-red.active {
  color: var(--c-white);
  background: var(--c-red2);
  border-color: var(--c-red2);
}

.btn.btn-check {
  color: var(--c-white);
  background: var(--c-check);
  border-color: var(--c-check);
}

.btn.btn-check:focus,
.btn.btn-check:hover,
.btn.btn-check.active {
  color: var(--c-white);
  background: var(--c-check);
}

.btn.btn-letters.disabled,
.btn.btn-letters:disabled {
  background: #0000002e;
  opacity: 0.65;
}

#menu .user .btn.btn-cta {
  color: var(--c-white);
  background: var(--c-yellow1);
  border: none;
  z-index: 2;
  font-size: 1.8rem;
  padding: 1.3rem 1.7rem 1.5rem 3rem;
  border-radius: 5rem 0rem 0rem 5rem;
  right: -5px;
}

#menu .user .btn.btn-cta:hover {
  color: var(--c-brown1);
  background: var(--c-yellow1);
  box-shadow: none;
}

#menu .user .btn.btn-login {
  color: var(--c-white);
  background: transparent;
  border: none;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  padding: 1.2rem 0rem 1.1rem 0rem;
  border-radius: 500px;
}

#menu .user .btn.btn-login:hover {
  color: var(--c-yellow1);
  background: transparent;
  box-shadow: none;
}

#menu .user .btn.btn-login img {
  position: relative;
  top: -1px;
  margin-right: 0.7rem;
}

@media (max-width: 991px) {
  #menu .user .btn.btn-cta {
    margin-bottom: 1rem;
    font-size: 2rem;
    border-radius: 5rem;
  }

  #menu .user .btn.btn-login {
    margin-left: 0rem;
    font-size: 2rem;
    border-radius: 5rem;
  }
}

@media (max-width: 991px) {
  #menu .user .btn.btn-cta {
    margin-bottom: 1rem;
    font-size: 2rem;
    border-radius: 5rem;
  }

  #menu .user .btn.btn-login {
    margin-left: 0rem;
    font-size: 2rem;
    border-radius: 5rem;
    color: var(--c-yellow1);
  }
}

@media (min-width: 992px) and (max-width: 1149px) {
  #menu .user .btn.btn-cta {
    font-size: 1.6rem;
    padding: 1.3rem 1rem 1.5rem 2rem;
  }

  #menu .user .btn.btn-login {
    font-size: 1.6rem;
    padding: 1.3rem 1rem 1.5rem 1rem;
  }
}

/* Logado */
#menu .user.user_logado .btn.btn-cta {
  color: var(--c-white);
  background: var(--c-red1);
  border: none;
  z-index: 2;
  font-size: 1.5rem;
  padding: 1.5rem 1rem 1.7rem 2rem;
  border-radius: 5rem 0rem 0rem 5rem;
  right: -5px;
}

#menu .user.user_logado .btn.btn-login {
  color: var(--c-white);
  background: transparent;
  border: none;
  z-index: 2;
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 1.7rem 0.8rem;
  border-radius: 0rem 0rem 0rem 0rem;
}

.tab-btn .btn {
  position: relative;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
  background: var(--c-bluedark1);
  font-size: 2rem;
  line-height: 1;
  padding: 1.3rem 3rem 1.3rem 3rem;
  border-radius: 100rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border: none;
  opacity: 0.5;
}

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

.tab-btn .btn.active {
  position: relative;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
  background: var(--c-red1);
  font-size: 2rem;
  line-height: 1;
  padding: 1.3rem 3rem 1.3rem 3rem;
  border-radius: 100rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border: none;
  opacity: 1;
}

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

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

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

.popup.cookies .cookies {
  left: calc(50% - 260px);
  bottom: 10px;
  border-radius: 10px;
  max-width: 520px;
  transition: none;
  color: var(--c-white);
  background: var(--c-red2);
}

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

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

.cookies .padding .description {
  margin: 0 0 0 0;
  text-align: left;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-red1);
  background: var(--c-yellow1);
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem 3rem 1.5rem 3rem;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
  text-transform: none;
  text-decoration: none;
}

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

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

.cookies .padding .buttons-allow .btn.btn-outline-um {
  position: relative;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-red1);
  background: var(--c-white);
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem 3rem 1.5rem 3rem;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
  text-transform: none;
  text-decoration: none;
}

.cookies .padding .buttons-allow .btn.btn-outline-um:hover {
  color: var(--c-red1);
  background: var(--c-white);
}

@media (max-width: 991px) {
  .cookies .padding .buttons-allow {
    margin-top: 0px !important;
  }

  .cookies .padding .buttons-allow .btn.btn-outline-um,
  .cookies .padding .buttons-allow .btn.btn-outline-dois {
    font-size: 1.9rem;
  }

  .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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  margin: 0;
  color: white;
  text-align: center;
}

@media (max-width: 991px) {
  #popup-cookiesgeral .title {
    font-size: 14px;
  }

  #popup-cookiesgeral .description {
    font-size: 12px;
    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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 5px 10px;
  color: var(--c-white);
  background: #00cc00;
  display: inline-block;
  font-weight: 400;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

@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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  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-black);
  border-bottom: 1px solid var(--c-black);
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 20px;
  border: 1px solid #e4e4ea;
  border-top: 0;
}

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

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

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

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

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

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

#popup-cookiesgeral .nav-tabs .nav-link {
  font-size: 14px !important;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  border: 1px solid transparent !important;
  border-color: #dee2e6 #dee2e6 #fff !important;
}

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

#popup-cookiesgeral .nav-pills .nav-link {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  padding: 10px 10px 10px 10px;
  border: 0px solid var(--c-yellow1);
  border-bottom: 0;
  border-radius: 0;
  text-align: left;
  line-height: 120%;
  color: var(--c-bluedark1);
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

#popup-cookiesgeral .nav-pills .nav-link:hover {
  background-color: #ffffff !important;
}

#popup-cookiesgeral .nav-pills .nav-link:last-child {
  border-bottom: 1px solid #cccccc;
}

#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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-yellow1) !important;
  background: var(--c-bluedark1) !important;
}

@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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 120%;
  margin: 0 0 10px 0;
  color: var(--c-black);
  text-transform: uppercase;
}

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

#popup-cookiesgeral .subtitle-cookies {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

/*.modal-content::before {
    position: absolute;
    z-index: -1;
    left: 0px;
    top: 0px;
    content: "";
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
    background: var(--c-red1);
}*/

.modal-content .lektrek {
  position: absolute;
  top: -201px;
  left: 0%;
}

.modal-content .lektrek img {
  max-width: 250px;
}

.modal-content .header {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}

.modal-content .header img {
  width: 100%;
  max-width: 250px;
}

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

.modal .btn-fechar i {
  color: var(--c-white);
  font-size: 30px;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}

.modal .btn-fechar i:hover {
  color: var(--c-white);
  transform: scale(1.5);
}

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

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

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

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

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

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

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

.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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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-red1);
  box-shadow: 0 0 50px var(--c-red1);
}

.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-yellow1) !important;
}

.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.popup-contato [class*="vld-"] + .error {
  color: var(--c-yellow1);
}

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

#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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 1.7rem;
  line-height: 120%;
}

#loader span {
  font-weight: 800;
  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-white);
  border-radius: 100%;
  cursor: pointer;
  height: 60px;
  width: 60px;
  -webkit-box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
  opacity: 0.8;
  opacity: 1;
  border: 5px solid var(--c-white);
  transition: all 0.5s ease-in-out;
}

#back-to-top::before {
  content: "\f077";
  font-family: "FontAwesome", Arial, sans-serif;
  color: var(--c-red1);
  font-size: 25px;
  line-height: 39px;
  position: relative;
  top: 4px;
  left: 12px;
  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: 115px;
  width: 110px;
  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;
  }
}

/* NAVBAR */
.nav-item {
  position: relative;
  cursor: pointer;
  margin: auto;
}

#menu {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #ffffff;
  transition: all 0.5s ease;
}

#menu nav {
  text-transform: uppercase;
  width: 1300px;
  margin: auto;
  border-radius: 1.5rem;
  transition: all 0.7s;
  height: 70px;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  /*background: var(--c-red1);*/
  top: 2%;
  padding: 1rem 3rem;
  overflow: hidden;
  /* left: initial; */
  transition: all 0.3s ease-in-out;
  overflow: inherit;
  background: #FA4B36;
  background: -webkit-linear-gradient(180deg, rgba(250, 75, 54, 1) 0%, rgba(223, 16, 8, 1) 50%, rgba(185, 6, 16, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(250, 75, 54, 1) 0%, rgba(223, 16, 8, 1) 50%, rgba(185, 6, 16, 1) 100%);
  background: linear-gradient(180deg, rgba(250, 75, 54, 1) 0%, rgba(223, 16, 8, 1) 50%, rgba(185, 6, 16, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FA4B36", endColorstr="#B90610", GradientType=0);
}

.navbar-light .navbar-brand {
  position: relative;
  margin: 0px 0px 0px 0%;
  z-index: 999;
}

.navbar-light .navbar-brand:before {
  /*    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(-100% + 5px);
    width: 210%;
    height: 100%;
    border-bottom-right-radius: 10px;
    background: #ffffff;
    transform: skew(-15deg, 0deg);
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.15);*/
}

.navbar-light .navbar-brand a:hover {
  background: transparent !important;
}

@media (max-width: 991px) {
  .navbar-light .navbar-brand {
    /*position: relative;*/
    position: absolute;
    margin: 0px 0px 0px 0px;
    /*        margin: -24px 50px -24px -4%;*/
  }
}

/*Faixa superior*/
.barra-sup {
  padding: 9px;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--c-yellow1);
  /*background: var(--c-yellow1);*/
  /**/
  display: flex !important;
  justify-content: space-between;
  justify-content: center;
}

.barra-sup .btn-home {
  font-size: 8pt;
  padding: 5px 10px;
  background: white;
  color: #313131 !important;
  font-weight: 800;
  border-radius: 20px;
}

.barra-sup .icon-sup {
  color: white !important;
  padding: 0 5px;
}

#menu .barra-sup .navbar-nav a, #menu .barra-sup .navbar-nav button {
  padding: 0.6rem 1rem 0rem 1rem;
  color: var(--c-yellow1);
}

#menu .barra-sup .navbar-nav a:hover, #menu .barra-sup .navbar-nav button:hover {
  color: var(--c-yellow1);
  background: transparent;
}

#menu .barra-sup .navbar-nav a.active, #menu .barra-sup .navbar-nav button.active {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: underline;
}

#menu .barra-sup .navbar-nav a.active:hover, #menu .barra-sup .navbar-nav button.active:hover {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .barra-sup {
    display: none !important;
  }
}

#menu .fixed-top {
  /*padding-top: 0px;*/
  /*padding-bottom: 0px;*/
}

#menu .navbar-nav {
  font-size: 2rem;
  margin-right: 2rem;
  line-height: 1;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

#menu .navbar-nav button {
  text-transform: uppercase;
}

#menu .navbar-nav a, #menu .navbar-nav button {
  padding: 0rem 1rem 0rem 1rem;
  color: var(--c-white);
}

#menu .navbar-nav a:hover, #menu .navbar-nav button:hover {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
}

#menu .navbar-nav a.active, #menu .navbar-nav button.active {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
}

#menu .navbar-nav a.active:hover, #menu .navbar-nav button.active:hover {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
}

#menu .navbar-nav a span, #menu .navbar-nav button span {
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 4rem;
  transition: all 0.3s ease-in-out;
}

#menu .navbar-nav a span:hover, #menu .navbar-nav a spanbuttonhover {
  color: var(--c-bluedark1);
  background: var(--c-yellow2);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1240px) and (max-width: 1366px) {
  #menu .navbar-nav {
    font-size: 1.6rem;
  }

  #menu .navbar-nav a, #menu .navbar-nav button {
    padding: 1.5rem 1.5rem;
  }

  .navbar-light .navbar-brand {
    /*        margin: 0px 30px 0px -4%!important;*/
  }
}

@media (min-width: 1150px) and (max-width: 1239px) {
  #menu nav {
    width: 1110px;
  }

  #menu .navbar-nav {
    font-size: 1.5rem;
  }

  #menu .navbar-nav a, #menu .navbar-nav button {
    padding: 1.5rem 0.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1149px) {
  #menu nav {
    width: 990px;
  }

  .navbar-light .navbar-brand {
    /*margin: 0px 30px 0px 0%;*/
    display: none;
  }

  #menu .navbar-nav {
    font-size: 1.4rem;
    margin-left: inherit !important;
  }

  #menu .navbar-nav a, #menu .navbar-nav button {
    padding: 1.5rem 0.6rem;
  }

  #menu .navbar-nav a span {
    /*        padding: 0.6rem 1.5rem 0.6rem 1.5rem;*/
    font-size: 1.4rem;
  }

  #menu .user .btn.btn-login {
    font-size: 1.4rem;
    padding: 0.9rem 2rem 0.9rem 2rem;
  }

  #menu .navbar-brand img {
    width: 100%;
    max-width: 150px;
  }
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.7rem;
  padding-left: 0.7rem;
  padding-bottom: 0.5rem;
  padding-top: 0.7rem;
}

.navbar-light .navbar-toggler {
  border-color: transparent;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--c-white);
}

.navbar-nav .nav-link {
  color: var(--c-white);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #f6ddab;
}

#menu .navbar-toggler {
  color: var(--c-yellow1);
  font-size: 25px;
  padding: 22px 25px 22px 25px;
}

#menu .navbar-toggler:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.navbar-brand {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.navbar-brand .nav-link {
  padding: 0.1rem;
}

#menu .navbar-brand img {
  position: relative;
  width: 100%;
  max-width: 180px;
  top: 4px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .navbar-brand {
    margin-top: inherit;
    margin-left: 0rem !important;
    margin: auto;
  }

  .nav-link {
    padding: 0px 24px 0px 24px !important;
  }

  #menu .navbar-nav a:hover {
    color: var(--c-yellow1) !important;
  }

  #menu .navbar-nav a.btn {
    color: var(--c-yellow1);
  }

  #menu .navbar-nav a.btn.btn-outline-dois {
    color: #000000;
    background: #ffffff;
  }

  #menu .navbar-nav a.btn.btn-outline-dois:hover {
    color: #000000 !important;
    background: var(--c-white);
  }

  #menu .navbar-nav a.btn.btn-vermelho {
    color: var(--c-white);
  }

  #menu .navbar-nav a.btn:hover {
    background: #cd1d35 !important;
  }

  .navbar-brand.logo a {
    padding: 0px 0px 0px 0px !important;
    margin-left: 15px !important;
  }
}

#menu .menu {
  display: inline-block;
}

@media (max-width: 991px) {
  #menu .navbar-collapse a.active {
    color: var(--c-yellow1);
    background: transparent;
  }

  #menu .navbar-toggler {
    margin-left: inherit !important;
    color: var(--c-yellow1);
  }

  #menu .navbar-toggler i {
    color: var(--c-yellow1);
  }

  .cta-header .icone {
    display: inline-block;
  }

  #menu nav .user {
    position: relative;
    display: flex;
    text-align: right;
    padding: 10px 1.5rem 10px 1.5rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #menu nav .user .cta-header {
    width: 100%;
    margin-top: 5px;
  }

  #menu {
    position: relative;
  }

  #menu nav {
    text-transform: uppercase;
    width: 100%;
    margin: auto;
    border-radius: 0px;
    transition: all 0.7s;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    background: var(--c-red1);
    top: 0%;
    left: initial;
    padding: 0px;
    height: 70px;
    overflow: unset;
  }

  #menu a {
    font-size: 14px;
  }

  #menu .cta-participe a {
    /*color: var(--c-yellow1);*/
    margin-left: auto;
  }

  #menu .btn {
    font-size: 20px;
    line-height: 100%;
  }

  #menu .cta-participe .btn.active {
    color: var(--c-white);
  }

  .user #btn-header {
    font-size: 14px;
    line-height: 16px;
    display: block;
    margin: 5px 0px;
    padding: 8px 30px 7px 30px;
  }

  #menu .navbar-nav {
    text-align: center;
    /*margin: 0px!important;*/
    /*height: 100vh!important;*/
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    text-transform: inherit;
  }

  .navbar-collapse {
    margin-top: -1px;
    background: var(--c-red1);
  }

  #menu .navbar-brand img {
    width: 100%;
    max-width: 130px;
    transition: all 0.5s ease-in-out;
    padding: 0px 0px 0px 0px;
    background: transparent !important;
    position: relative;
    z-index: 9;
    top: 15px;
  }

  #menu .item-menu {
    font-size: 2rem;
    font-family: "AmsiProCond", Arial, sans-serif;
    padding: 1.5rem 2rem 1.5rem 2rem !important;
    line-height: 1 !important;
/*    text-transform: none;*/
  }

  #menu .navbar-nav a span {
    padding: 1.2rem 3rem 1.2rem 3rem;
    border-radius: 500px;
  }
}

.collapse .user {
  /*display: none!important;*/
  /*position: absolute;*/
  /*right: 0%;*/
}

@media (max-width: 991px) {
  .collapse .user {
    position: relative;
    right: inherit;
    display: inherit !important;
    display: flex !important;
  }
}

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

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

.title.text-yellow1 {
  color: var(--c-yellow1) !important;
}

.text-yellow2 {
  color: var(--c-yellow2) !important;
}

.text-red1 {
  color: var(--c-red1) !important;
}

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

.bkg-yellow2 {
  background: var(--c-yellow2) !important;
}

.bkg-red1 {
  background: var(--c-red1) !important;
}

.bkg-red2 {
  background: var(--c-red2) !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: 'AmsiProCond', Arial, sans-serif;*/
  /*font-weight: 800;*/
  /*font-size: 23px!important;*/
  /*line-height: 120%!important;*/
  /*color: #f2f2f2!important;*/
  /*margin-bottom: 0px;*/
}

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

/*Icones do MEMU (X) e (=)*/
#menu .navbar-toggler.icone-menu:before {
  /*content: "\f067";*/
  /*font-family: 'FontAwesome', Arial, sans-serif;*/
  /*font-size: 1.5rem;*/
  /*line-height: 1.5rem;*/
  color: var(--c-white);
  fill: #ffffff !important;
  position: relative;
  top: 0px;
  margin-right: 0px;
  float: right;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' viewBox='0 0 21 20' class='sc-pzMyG gRERfq' color='currentColor' role='img'%3E%3Ctitle%3EAbrir Menu%3C/title%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.5 7H20.5V5H0.5V7ZM0.5 15H20.5V13H0.5V15Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

#menu .navbar-toggler[aria-expanded="true"].icone-menu:before {
  /*content: "\f068";*/
  color: var(--c-white);
  fill: #ffffff !important;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' viewBox='0 0 21 20' class='sc-qQYBZ dyrgJG' color='currentColor' role='img'%3E%3Ctitle%3EFechar Menu%3C/title%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5001 11.4143L16.793 17.7072L18.2072 16.293L11.9143 10.0001L18.2072 3.70718L16.793 2.29297L10.5001 8.58587L4.20718 2.29297L2.79297 3.70718L9.08587 10.0001L2.79297 16.293L4.20718 17.7072L10.5001 11.4143Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

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

strong {
  color: inherit;
}

/* GENERAL */
.main .section {
  position: relative;
}

.main .section .padding {
  padding: 5rem 3rem;
  max-width: 1366px;
  padding-top: 14rem;
}

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

.main .section .header-section h2 {
  padding: 0px;
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 1;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-yellow1);
}

.main .section .header-section h3 {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  font-size: 2.3rem;
}

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

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

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

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

@media (max-width: 991px) {
  .main .section .padding {
    padding: 5rem 3rem 5rem 3rem !important;
  }

  .main .section .header-section {
    margin: 0 0 3rem 0;
  }

  .main .section .header-section h2 {
    font-size: 3rem;
  }
}


/* ====== Elementos animados ====== */
/* ====== Elemento: Logo da promoção ====== */
.animatePack .content-image {
  position: relative;
  margin-top: 0%;
  z-index: 1;
  display: inline-block;
  width: 100%;
  max-width: 800px;

}
.animateLogo .content-image .group-selo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 0%;
  opacity:1;
/*  animation-name: efeitoTremer;*/
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animateLogo .content-image .logo {
  position: absolute;
  z-index: 2;
  top: 0%;
  right: 5.6%;
  width: 36.3%;
   animation-name: efeitoPulsar; 
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animateLogo .content-image .bola {
  position: absolute;
  z-index: 4;
  top: 72.9%;
  left: 33.5%;
  width: 15.5%;
  animation-name: efeitoBola;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animateLogo .content-image .raio {
  position: absolute;
  z-index: 2;
  top: 0%;
  left: 1%;
  width: 24.6%;
  animation-name: efeitoSobeDesce;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}


/* ====== 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: 100%;
  max-width: 1200px;

}
.animatePack .content-mecanica .group-mecanica {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 0%;
}
.animatePack .content-mecanica .lektrek_full {
  position: absolute;
  z-index: 2;
  bottom: -9%;
  right: -74%;
  width: 100%;
}
.animatePack .content-mecanica .premiacao_full {
  position: relative;
  z-index: 2;
  width: 100%;
}
/*@media (max-width: 991px){
  .animatePack .content-mecanica .premiacao_full {
    position: absolute;
    z-index: 2;
    width: inherit; 
    display: inline-block;
    margin-top: 0rem !important;
    margin-bottom: 4rem !important;
  }
}*/
.animatePack .content-mecanica .premiacaogeral {
  position: relative;
}
.animatePack .content-mecanica .img-premioMaquina {
  position: absolute;
  z-index: 2;
  bottom: 65.7%;
  left: -2%;
  width: 23.84%;
}
.animatePack .content-mecanica .img-premioProdutos {
  position: absolute;
  z-index: 3;
  bottom: 3%;
  right: 51%;
  width: 24.22%;
}
.animatePack .content-mecanica .img-premioCarro {
  position: absolute;
  z-index: 3;
  bottom: 57.5%;
  right: -2.8%;
  width: 27.45%;
}
.animatePack .content-mecanica .logosmarcas {
  position: absolute;
  z-index: 2;
  top: -0.5%;
  left: 61.8%;
  width: 25.3%;
  animation-name: efeitoPulsar;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}
.animatePack .content-mecanica .compre1 {
  position: absolute;
  z-index: 2;
  top: 13.9%;
  left: 8%;
  width: 68.3%;
  max-width: 396px;
  animation-name: efeitoPulsar;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animatePack .content-mecanica .junte2 {
  position: absolute;
  z-index: 2;
  top: 31.5%;
  left: 3.2%;
  width: 74.06%;
  max-width: 429px;
  animation-name: efeitoPulsar;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animatePack .content-mecanica .brinde3 {
  position: absolute;
  z-index: 2;
  top: 41.6%;
  left: 5%;
  width: 38.86%;
  max-width: 225px;
  animation-name: efeitoPulsar;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animatePack .content-mecanica .junte4 {
  position: absolute;
  z-index: 2;
  top: 43.7%;
  left: 44.5%;
  width: 31.56%;
  max-width: 180px;
  animation-name: efeitoPulsar;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animatePack .content-mecanica .concorra5 {
  position: absolute;
  z-index: 2;
  top: 65%;
  left: 4.5%;
  width: 70%;
  max-width: 476px;
  animation-name: efeitoPulsar;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

.animatePack .content-mecanica .cta_participe {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 106%;
  width: 33.8%;
  animation-name: efeitoPulsar;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}

/* ====== Elemento: Raios ====== */
.animateBolhas .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;
}

.animateBolhas .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;
}

.animateBolhas .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;
}

.animateBolhas .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;
}

.animateBolhas .elemento5 {
  position: absolute;
  top: -10%;
  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;
}

.animateBolhas .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;
}

.animateBolhas .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;
}

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

.animateBolhas .elemento1 img {
  transform: rotate(176deg) !important;
}
.animateBolhas .elemento2 img {
/*  transform: rotate(45deg)!important;*/
}
.animateBolhas .elemento3 img {
/*  transform: rotate(45deg)!important;*/
}
.animateBolhas .elemento4 img {
  transform: rotate(-85deg) !important;
}
.animateBolhas .elemento5 img {
  transform: rotate(-61deg) !important;
}
.animateBolhas .elemento6 img {
/*  transform: rotate(45deg)!important;*/
}

@media (max-width: 991px) {
  .animateBolhas .elemento1 {
    bottom: 3%;
    left: 80%;
    width: 30%;
  }

  .animateBolhas .elemento2 {
    width: 35%;
    left: -10%;
  }

  .animateBolhas .elemento4 {
    bottom: 17%;
    left: -13%;
    width: 35%;
  }

  .animateBolhas .elemento5 {
    width: 28%;
    top: -3%;
    right: -2%;
  }
}


/* ====== Seção: Login ====== */
.section.login {
  position: relative;
  background: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

.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;
  background: #093d8b33;
  z-index: 1;
  padding: 3rem 3rem 3rem 3rem;
  width: 100%;
  border-radius: 0rem;
  border: 0px solid var(--c-yellow1);
  box-shadow: 0 0 300px var(--c-bluelight1);
  transition: all 0.3s ease-in-out;
  z-index: 0;
  border-radius: 2rem;
}

.section.login .box-login:hover {
}

.section.login .box-login .header-section {
  margin-bottom: 10px !important;
}

.section.login .box-login .header-section h2 {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-yellow1);
  /*font-weight: 800;*/
}

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

.section.login .box-login .esquecisenha {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  font-size: 1.8rem;
  line-height: 1.1rem;
  text-decoration: underline;
}

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

.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;
  background: url(../img/bkg1.webp) center center no-repeat;
  background-size: cover;
}
.section.resgate .header-section {
  margin-bottom: 2rem!important;
}
.section.resgate .meuspontos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  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: 800;
  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: "AmsiProCond", Arial, sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    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: "AmsiProCond", 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-red1);
    margin: auto;
    margin-top: 12px;
    text-transform: uppercase;
}

.resgate-container .box span {
    color: #FFF;
    text-align: center;
    font-family: "AmsiProCond", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

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

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

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

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

@media (max-width: 991px) {
    .premio-container {
        height: auto;
    }

    .box-outline span {
        font-size: 1.8rem;
    }
}



/* ====== Seção: Home ====== */
.section.inicio {
  position: relative;
  background: url(../img/bkg0.webp) center center no-repeat;
  background-size: cover;
}

.section.inicio .img-premios {
  margin-bottom: -3rem;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section.inicio .padding {
  position: relative;
  width: 100%;
  max-width: 1900px;
  padding-bottom: 6rem;
  padding-top: 11rem;
}

.lektrek_full, .lektrek_full_0 {
  transition: all .3s ease;
}


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

  .section.inicio .img-premios {
    margin-bottom: 0rem;
  }
}

@media (min-width: 670px) and (max-width: 800px) {
  .lektrek_full, .lektrek_full_0 {
    margin-top: 4rem !important;
  }
}

@media (min-width: 801px) and (max-width: 991px) {
  .lektrek_full, .lektrek_full_0 {
    margin-top: 12rem !important;
  }
}


/* __Elementos | Início */
.section.inicio .elemento1 {
  position: absolute;
  bottom: -4%;
  left: 43%;
  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.inicio .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.inicio .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.inicio .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.inicio .elemento5 {
  position: absolute;
  top: 30%;
  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.inicio .elemento6 {
  position: absolute;
  top: 70%;
  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.inicio .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;
}

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

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

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

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

/* Section COMO PARTICIPAR */
.section.comoparticipar {
  position: relative;
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

.section.comoparticipar .header-section {
  margin-bottom: 6rem!important;
}

.section.comoparticipar .padding {
    padding: 5rem 3rem 8rem 3rem;
}

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

.section.comoparticipar a ,
.section.comoparticipar p {
    color: var(--c-white)!important;
}

.section.comoparticipar p.title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0rem;
    font-family: 'AmsiProCond', Arial, sans-serif;
    font-weight: 800;
    color: var(--c-yellow1)!important;
    transition: all 0.7s ease-in-out;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section.comoparticipar p.description {
    text-align: center;
    font-size: 2.3rem;
    line-height: 1.1;
    margin-top: 0rem;
    color: var(--c-white);
    font-family: 'AmsiProCond', Arial, sans-serif;
    font-weight: 600;
    text-align: left;
}

.section.comoparticipar .steps-boxes {
  width: 100%;
  margin: auto;
  background: #00b1eb;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  padding: 0rem 2rem;
  box-shadow: 0 0 20px 4px rgb(0 161 252 / 52%);
}
.section.comoparticipar .steps-boxes:hover {
/*    background: #aa063a;*/
/*    box-shadow: 0px 0px 11px 5px rgb(170 6 58 / 67%);*/
/*    transition: all 0.3s ease-in-out;*/
}
.section.comoparticipar .steps-boxes:hover p.title {
/*    text-shadow: 0px 0px 11px #fdc200;*/
}
.section.comoparticipar .steps-boxes::before {
    /*position: absolute;
    z-index: -1;
    bottom: -100px;
    right: -40px;
    content: "";
    background-image: url(../img/icone5.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 130px;
    transition: all 0.3s ease-in-out;
    -webkit-animation-name: pulsePisca;
    animation-name: pulsePisca;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out!important; */
}

.section.comoparticipar .steps-boxes .numero {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 3rem;
  line-height: 1;
  font-family: 'AmsiProCond', Arial, sans-serif;
  font-weight: 800;
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 1.1rem 1rem 1rem 1rem;
}
.section.comoparticipar .step-box.step-box1 .numero.passo1 {
    top: -15px!important;
    left: -5px!important;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.section.comoparticipar .step-box.step-box2 .numero.passo2 {
    top: -15px!important;
    right: -5px!important;
    transition: all 0.3s ease-in-out;
}
.section.comoparticipar .step-box.step-box1:hover .numero.passo1 {
    background: var(--c-yellow2);
    color: var(--c-bluedark1);
    transition: all 0.3s ease-in-out;
    transform: scale(1.5);
}
/*.section.comoparticipar .step-box.step-box1:hover .numero.passo1::before {
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    content: "";
    background-image: url(../img/icone4.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-animation-name: pulsePisca, piscaPulse;
    animation-name: pulsePisca, piscaPulse;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out!important; 
}*/
.section.comoparticipar .step-box.step-box2:hover .numero.passo2 {
    background: var(--c-red2);
    color: var(--c-white);
    transition: all 0.3s ease-in-out;
    transform: scale(1.5);
}
/*.section.comoparticipar .step-box.step-box2:hover .numero.passo2::before {
    position: absolute;
    z-index: -1;
    top: -30px;
    left: 20px;
    content: "";
    background-image: url(../img/icone3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-animation-name: pulsePisca, piscaPulse;
    animation-name: pulsePisca, piscaPulse;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out!important; 
}*/

.section.comoparticipar .steps-boxes .step {
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box {
    width: 100%;
    padding: 0rem 0rem 0rem 0rem;
    background: transparent;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.section.comoparticipar .steps-boxes .step .step-box:hover::before {
    box-shadow: 0 0 30px #00000030;
}

.section.comoparticipar .steps-boxes .step .step-box .icone {
    position: relative;
    margin: 0rem 0rem 0rem 0rem;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box .info {
    position: relative;
    padding: 1rem 0.5rem;
}

.section.comoparticipar .steps-boxes .step .step-box .box {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section.comoparticipar .steps-boxes .step .step-box .box.box1 {
    width: 180px;
    height: 150px;
}

.section.comoparticipar .steps-boxes .step .step-box .icone img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover .icone img {
    transform: scale(1);
    transition: all 1s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover .icone {
    /**/
    -webkit-animation-name: efeitoTremer;a
    animation-name: efeitoTremer;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out!important; 
}

.section.comoparticipar .steps-boxes .step .step-box:hover .icone svg path {
    fill: var(--c-white);
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover .number {
    color: var(--c-white);
    transition: all 0.3s ease-in-out;
    transform: scale(1.4);
    /**/
    -webkit-animation-name: pulseIcon;
    animation-name: pulseIcon;
    animation-duration: 0.8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out; 
}

.section.comoparticipar .steps-boxes .step .step-box:hover p.title {
/*    color: var(--c-white);*/
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover p.description {
/*    color: var(--c-white);*/
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .step-box.step-box2 p.title {
}

.section.comoparticipar .step-box.step-box2 p.title {
}

.section.comoparticipar .steps-boxes .step.step-box2 .step-box:hover::before {
    box-shadow: 0 0 30px #00000030;
    background: var(--c-white)!important;
}

.section.comoparticipar .steps-boxes .step .step-box.step-box2::before {
    top: 1rem;
    bottom: 12rem;
    background-color: var(--c-yellow1);
    border: 2px solid var(--c-yellow1);
}

.section.comoparticipar .steps-boxes .step .step-box.step-box2:hover::before {
    background-color: var(--c-white);
    border: 2px solid var(--c-white);
}

.section.comoparticipar .cta {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section.comoparticipar .cta .btn {
    /*height: 77px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section.comoparticipar .fa-whatsapp {
    font-size: 2.4rem;
    position: relative;
    top: 3px;
    margin: -10px;
    left: 10px;
}

@media (max-width: 991px){
    .section.comoparticipar .padding {
        padding: 5rem 3rem;
    }

    .section.comoparticipar .steps-boxes {
        width: 100%;
    }
    .section.comoparticipar .steps-boxes::before {
        bottom: -60px;
        right: -20px;
    }

    .section.comoparticipar .steps-boxes .step .step-box {
        min-height: auto;
        padding: 3rem 0rem 3rem 0rem;
    }

    .section.comoparticipar .steps-boxes .step .step-box:hover {
        opacity: inherit!important;
        filter: inherit!important;
    }

    .section.comoparticipar .step-box.step-box1 .numero.passo1 {
        top: -15px !important;
        left: -10px !important;
    }
    .section.comoparticipar .step-box.step-box2 .numero.passo2 {
        top: -15px!important;
        right: -10px!important;
    }

    .section.comoparticipar .steps-boxes .step .step-box .icone {
        height: 120px;
    }

    .section.comoparticipar .steps-boxes .step .step-box.step_accelerator {
        min-height: auto;
    }

    .section.comoparticipar .step_accelerator p.title {
        margin-top: 20px!important;
    }

    .section.comoparticipar .step_accelerator p.description {
        margin-top: 20px!important;
    }
}

@media (max-width: 991px){
    .section.comoparticipar p.description {
        line-height: 1.3;
        margin-top: 1rem;
        font-family: 'AmsiProCond', Arial, sans-serif;
        font-weight: 400;
    }

    .section.comoparticipar .steps-boxes .step {
      margin-bottom: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .section.comoparticipar .lektrek {
        left: -4%;
    }
}

@media (min-width: 992px) and (max-width: 1130px) {
    .section.comoparticipar p.title {
        font-size: 3rem;
    }

    .section.comoparticipar .steps-boxes .step .step-box {
        padding: 2rem 0.5rem!important;

    }

    .section.comoparticipar p.description {
        font-size: 1.8rem;
    }
}


/* Section PRÊMIOS */
.section.premios {
  position: relative;
  background: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

.section.premios .padding {
  position: relative;
  width: 100%;
  padding: 5rem 3rem;
}

.section.premios .content-section {
  position: relative;
  width: 100%;
  margin: auto;
}

.section.premios.animatePack .content-mecanica .lektrek_full_0 {
  width: 70%!important;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .section.premios .padding  {
    padding-bottom: 3rem!important;
  }

  .section.premios.animatePack .content-mecanica .lektrek_full_0 {
    position: relative;
    z-index: 2;
    bottom: inherit;
    right: inherit;
    width: 100%;
    margin-top: 0rem !important;
    margin-bottom: -3rem;
    width: inherit;
    display: inline-block;
  }
}

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

.section.premios .elemento1 img {
  transform: rotate(176deg) !important;
}
.section.premios .elemento2 img {
/*  transform: rotate(45deg)!important;*/
}
.section.premios .elemento3 img {
/*  transform: rotate(45deg)!important;*/
}
.section.premios .elemento4 img {
  transform: rotate(-85deg) !important;
}
.section.premios .elemento5 img {
  transform: rotate(-61deg) !important;
}
.section.premios .elemento6 img {
/*  transform: rotate(45deg)!important;*/
}

@media (max-width: 991px) {
  .section.premios .elemento1 {
    bottom: 3%;
    left: 80%;
    width: 30%;
  }

  .section.premios .elemento2 {
    width: 35%;
    left: -10%;
  }

  .section.premios .elemento4 {
    bottom: 17%;
    left: -13%;
    width: 35%;
  }

  .section.premios .elemento5 {
    width: 28%;
    top: -3%;
    right: -2%;
  }
}

/* Section PRODUTOS  */
.section.produtos {
  position: relative;
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

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

.section.produtos .lektrek {
  position: absolute;
  bottom: -97px;
  left: -4%;
  max-width: 350px;
  display: inline-block;
  z-index: 10;
}

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

@media (max-width: 991px) {
  .section.produtos .lektrek {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1250px) {
  .section.produtos .lektrek {
    bottom: -83px;
    left: -10%;
    max-width: 300px;
  }
}

.section.produtos .item {
  position: relative;
  padding-bottom: 1rem;
}

.section.produtos .item .btn-produto {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}


/* __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: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.2rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* SECTION - CADASTRO PESSOAL; */
#cadastro {
  position: relative;
  background: url(../img/bkg0.webp) top center no-repeat;
  background-size: cover;
}

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

#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: 1.5rem;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  color: var(--c-white);
  text-transform: uppercase;
}

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

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

.section.cadastro .dados-pessoais:hover .titulo span,
.section.cadastro .dados-acesso:hover .titulo span {
  color: var(--c-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;
  background: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

.section.cadastrosucesso p.description {
  color: var(--c-white);
  font-family: "AmsiProCond", Arial, sans-serif;
}

.section.cadastrosucesso p.description_small {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-red1);
  font-family: "AmsiProCond", 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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
}

.section.cadastrosucesso .box .description_details {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-red1);
  font-family: "AmsiProCond", 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;
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

.section.meusdados .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 {
  position: relative;
    background: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

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

.section.rtp strong {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

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

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

@media (max-width: 991px) {
  .section.rtp {
    position: relative;
    background-color: var(--c-red1);
  }

  .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;
  background: url(../img/bkg1.webp) top center no-repeat;
  background-size: cover;
}

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

.section.duvidas .border-faq {
  border-bottom: 1px solid;
  border-color: #00000050;
}

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

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

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

.section.duvidas .faq-item {
  font-size: 2.3rem;
  line-height: 1.2;
  letter-spacing: 0px;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2rem 1rem 2rem 0rem;
  text-align: left;
  margin-top: 0px;
  color: var(--c-white);
  background: transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.section.duvidas .faq-item:hover {
  color: var(--c-yellow1);
  /*background: transparent;*/
}

.section.duvidas [aria-expanded="true"].faq-item {
  color: var(--c-yellow1);
  /*background: transparent;*/
  /*font-family: 'AmsiProCond', Arial, sans-serif;*/
  /*font-weight: 800;*/
  transition: all 0.3s ease-in-out;
}

.section.duvidas .faq-item:before {
  content: "\f107";
  font-family: "FontAwesome", Arial, sans-serif;
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  font-size: 1.8rem;
  line-height: 100%;
  position: relative;
  top: -3px;
  margin-right: 1.5rem;
  float: right;
  padding: 1rem 1rem 0.8rem 1rem;
  border-radius: 100px;
}

.section.duvidas .faq-item:hover::before {
  color: var(--c-bluedark1);
  transition: all 0.3s ease-in-out;
}

.section.duvidas [aria-expanded="true"].faq-item:before {
  color: var(--c-bluedark1);
  /*content: "\f106";*/
  transform: rotate(-180deg) scale(1.3);
  transition: all 0.3s ease-in-out;
}

.section.duvidas .faq-item + div {
  z-index: 1;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0px;
  margin-top: 5px;
  text-align: left;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-black);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  /*background: #1e1d1c;*/
  border-radius: 10px;
  font-style: inherit;
}


.section.duvidas .faq-item + div ul {
  display: flex;
  flex-direction: column;
  padding-left: 3.2rem;
}

.section.duvidas .faq-item + div li {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-black);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
}

.section.duvidas .faq-item + div a {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-red1) !important;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
}

.section.duvidas .faq-item + div thead th {
  background: var(--c-white) !important;
}

.section.duvidas .faq-item + div strong {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

.section.duvidas .faq-item span {
  display: none;
}

.section.duvidas [aria-expanded="true"].faq-item span {
  color: var(--c-white);
}

.section.duvidas .form-check .form-check-input {
  position: relative;
  background: #f7f7f7;
  top: -3px;
  border: 2px solid #fff;
  border-color: var(--c-bluedark1) !important;
}

@media (max-width: 991px){
  .section.duvidas .form-check {
    align-items: inherit;
    flex-wrap: inherit;
  }
}

/* ---------- Correção do efeito de abrir e fechar o FAQ*/
.section.duvidas .faq-item + div {
  margin-top: 0px !important;
  padding: 0px !important;
}

.section.duvidas .faq-item + div p {
  padding: 0rem 0rem 2rem 0rem;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--c-white);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
}

.section.duvidas .faq-item + div p a {
  color: var(--c-white);
  text-decoration: underline;
}

.section.duvidas .faq-item + div p a:hover {
  color: var(--c-white);
  text-decoration: none;
}

.section.duvidas .faq-item + div table p {
  padding: 0.2rem 0rem 0.2rem 0rem;
  text-align: center;
  margin-bottom: 0;
}

/* ---------- */

.section.duvidas .input-group > .custom-select:not(:last-child),
.section.duvidas .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);
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-left-radius: 0.7rem;
    border-bottom-left-radius: 0.7rem;
}

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

.section.duvidas .no-results {
  padding: 2rem;
  border-radius: 0.7rem;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--c-white);
  border: 1px solid;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  background: var(--c-bluedark1);
  border-color: var(--c-bluedark1);
  margin-top: 25px;
}

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

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

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

.section.duvidas .box-contact {
  color: var(--c-black);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 800;
  margin-top: 50px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: var(--c-yellow2);
  padding: 2rem 4rem;
  border-radius: 1rem;
  display: inline-block;
}

.section.duvidas .box-contact .img-iconcontact {
  margin-right: 5px;
}

.section.duvidas .box-contact a {
  color: var(--c-black) !important;
}

.section.duvidas .box-contact:hover .img-iconcontact {
  -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;
}

.section.duvidas .s {
  /**/
  -webkit-animation-name: pulseBrilux;
  animation-name: pulseBrilux;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out !important;
}

@media (max-width: 991px) {
  .section.duvidas .box-contact .img-iconcontact {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .section.duvidas .descricao {
    font-size: 20px;
    line-height: 25px;
  }

  .section.duvidas .scroll-container {
    max-height: 100%;
    margin-top: 0px;
    overflow-y: inherit;
  }

  .section.duvidas .faq-item:before {
    margin-right: 0px;
    top: 2px;
  }

  .section.duvidas .faq-item + div p {
    /*font-size: 1.5rem;*/
    /*line-height: 20px;*/
    padding: 0px 1.5rem 0px 1.5rem;
  }

  .section.duvidas .float-placeholder {
    top: 55px;
    color: #000000;
    text-align: center;
    margin-top: 3px;
    left: inherit;
    width: 100%;
    margin-left: inherit;
  }

  .section.duvidas .painel-busca {
    width: 100%;
    margin-left: auto;
  }
}

/* FOOTER */
.footer {
  position: relative;
  padding: 0px;
  /*background: var(--c-yellow1);*/
  /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) inset;*/
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

.footer .logos {
  position: relative;
  text-align: left;
  margin-bottom: 2rem;
}

.footer .logos img {
  width: 100%;
  max-width: 250px;
}

.footer .padding {
  max-width: 1366px;
  position: relative;
  padding: 5rem 3rem;
}

.footer .content-section {
  position: relative;
  margin: 0;
  height: auto;
}

.footer .texto-legal {
  margin: 0px;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-black);
  font-weight: 400;
}

.footer .links {
  margin-bottom: 0px;
}

.footer .links a, .footer .links button {
  display: block;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--c-white);
  margin: 0rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem !important;
  margin-left: 15px !important;
}

.footer .links button {
  padding: 0 !important;
}

.footer .links a:hover, .footer .links button:hover {
  color: var(--c-yellow1);
  text-decoration: none;
}

.footer .texto-legal a {
  font-family: "AmsiProCond", Arial, sans-serif;
  text-transform: none;
  text-decoration: underline;
  color: var(--c-black);
}

.footer .texto-legal a:hover {
  text-decoration: none;
  color: var(--c-black);
}

.footer .redes {
  color: var(--c-black);
  position: relative;
  margin-top: 1rem;
}

.footer .redes a.icone-redes {
  background: transparent;
  padding-right: 10px;
  border-radius: 100px;
  margin: 1px;
  display: inline-block;
  font-size: inherit !important;
  line-height: inherit !important;
}

.footer .redes a.icone-redes svg {
  height: 28px;
  width: 28px;
  top: 3px;
  position: relative;
  vertical-align: unset;
  fill: var(--c-red1);
  transition: all 0.3s ease-in-out;
}

.footer .redes a.icone-redes svg:hover {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

.footer .redes a.icone-redes i {
  color: var(--c-yellow1);
  font-size: 3rem;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}

.footer .redes a.icone-redes i:hover {
  color: var(--c-yellow2);
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

.footer .icone-redes img.icone-tiktok {
  max-width: 20px;
  display: block;
  top: 2px;
  position: absolute;
}

.footer .divider {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ffffff70;
}

.footer.tarja {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0px;
  background: #e6f6ff !important;
}

.footer.tarja .padding {
  padding: 3rem 3rem;
}

.footer.tarja .padding p.description {
  color: var(--c-bluedark1)!important;
  font-size: 1.8rem;
}

.footer.tarja a {
  color: var(--c-bluedark1);
}

.footer.tarja a:hover {
  color: var(--c-bluedark1);
}

.footer .logo img {
  width: 100%;
  max-width: 250px;
}

.footer .col-lg-4.text-right button {
  display: flex;
  text-align: right;
  align-self: flex-end;
  justify-self: flex-end;
}

@media (max-width: 991px) {
  .footer {
    position: relative;
    font-family: "AmsiProCond", Arial, sans-serif;
    font-weight: 400;
  }

  .footer .padding {
    padding: 5rem 3rem 15rem 3rem;
    margin: 0 auto;
  }

  .footer .logo-marca {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer .logo-marca img {
    width: 100%;
    max-width: 100%;
  }

  .footer .logo img {
    max-width: 150px;
  }

  .footer .links {
    text-align: center !important;
    margin: auto;
    display: inline-grid;
    width: 100%;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .footer .links a, .footer .links button {
    font-size: 2rem !important;
    text-transform: none !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    margin-left: 0 !important;
  }

  .footer .texto-legal {
    font-size: 1.5rem;
  }

  .footer .texto-legal,
  .footer .texto-legal a {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0px !important;
    width: 100%;
    text-align: center !important;
  }

  .footer .redes {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .footer .redes svg {
    width: 100%;
    max-width: 170px;
  }

  .footer.tarja .padding {
    padding: 3rem 1.5rem 3rem 1.5rem;
  }

  .footer.tarja .descricao {
    font-size: 1.5rem;
    line-height: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 1rem;
    margin-left: 0px;
    margin-right: 0px;
  }

  .footer .padding .logo {
    margin-top: 1rem;
  }

  .footer.tarja .logo {
    text-align: center;
  }

  .footer.tarja .logo img {
    margin: 5px;
    text-align: center;
  }

  .footer .col-lg-4.text-right button {
    text-align: center;
    align-self: center;
    justify-self: center;
  }
}

@media (min-width: 1220px) and (max-width: 1366px) {
  .footer .links a, .footer .links button {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
    font-size: 1.6rem;
  }
}

@media (min-width: 1150px) and (max-width: 1219px) {
  .footer .links a, .footer .links button {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) and (max-width: 1149px) {
  .footer .links a, .footer .links button {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
    font-size: 1.6rem;
  }
}

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

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

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

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

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

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

.form-control + .input-group-append > .input-group-text {
  padding: 1.3rem 1.5rem 1.2rem 1.5rem;
  height: 100%;
  border-radius: 0rem 0.7rem 0.7rem 0rem;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--c-red1);
  color: var(--c-yellow1);
}

.form-control + .input-group-append > .input-group-text i {
  color: var(--c-yellow1);
}

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

textarea.form-control:focus {
  border-radius: 1rem;
}

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

.float-placeholder {
  font-size: 1.6rem;
  line-height: 1;
  text-align: left;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 600;
  color: white;
  background: #093d8b;
  border-radius: 0.5rem;
  z-index: 2;
  padding: 0.6rem 1rem 0.6rem 1rem;
  display: block;
  position: absolute;
  top: 0px;
  left: 0.9rem;
  letter-spacing: 0px;
  text-transform: none;
}

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

.custom-control-label {
  color: var(--c-bluedark1);
  padding: 0 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
}

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

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

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

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

/* 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.8rem;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
}

.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: var(--c-red1);
  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: white;
  background: #4caf50;
}

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

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

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

[data-senha-tamanho="true"] ~ .senha-regras .regra-tamanho:before {
  color: white;
  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-bluedark1);
  top: 28px;
  right: 25px;
  z-index: 1;
  font-size: 2rem;
  cursor: pointer;
}

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

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

.eye i {
  color: var(--c-bluedark1);
}
.eye i:hover {
  color: var(--c-bluedark1);
}

@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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

/* Formulario steps */

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

[data-plugin="upload"] .upload-preview {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

[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;
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

.section.ganhadores.ganhadorfinal {
  background: url(../img/bkg1.webp) center center no-repeat;
  background-size: cover;
}
/*.section.ganhadores table.table tbody td {
  padding: 1rem 1rem 1rem 1rem;
}*/
.section.ganhadores table.table .filter-result {
  color: var(--c-white);
}
.section.ganhadores .content-section {
  width: 100%;
  margin: auto;
}

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

/* Filtro letra */
.section#ganhadores button.btn {
  position: relative;
  font-size: 1.8rem;
  line-height: 1;
  margin: 3px 1px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ffffff;
  color: var(--c-red2);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800 !important;
  font-style: normal !important;
  opacity: 1;
  border-color: #ffffff !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-yellow1);
  color: var(--c-black);
  opacity: 1;
  border-color: var(--c-yellow1);
}

.section#ganhadores .btn.disabled,
.section#ganhadores .btn:disabled {
  opacity: 0.15;
  background: #000000;
  color: #f9f9f9;
}

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

@media (max-width: 991px) {
  .section#ganhadores .conteudo {
    position: relative;
    padding: 1rem;
    height: inherit;
    background: transparent;
    background-size: 100% auto;
  }

  .section#ganhadores table.table .title-table-mobile {
    padding: 0rem 2.5rem !important;
  }

  .section#ganhadores table.table tbody td {
    padding: 0.65rem 0.65rem 0rem 0.65rem !important;
  }

  .section#ganhadores table.table tbody tr td:last-child {
    padding: 0.65rem 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.ganhadores.animatePack .content-mecanica .lektrek_full_0 {
  position: absolute;
  z-index: 2;
  width: inherit; 
  display: inline-block;
  margin-top: 0rem !important;
  margin-bottom: 4rem !important;
}


/* SECTION - Meus numeros */
.section.meuextrato {
  position: relative;
  background: url(../img/bkg2.webp) center center no-repeat;
  background-size: cover;
}

.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 table.table tbody td {
  padding: 1.6rem 2rem 1.6rem 2rem;
}*/

.section.meuextrato .table .thead-dark th {
  /*    background: var(--c-yellow1)!important;*/
  /*    color: var(--c-black);*/
  /*    font-family: 'AmsiProCond', Arial, sans-serif;*/
  /*    font-weight: 800;*/
  /*    font-size: 2rem;*/
}

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

.section.meuextrato .box .description {
  font-size: 2.5rem;
  line-height: 1.1;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
}

.section.meuextrato .box .description_details {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-red1);
  font-family: "AmsiProCond", 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;
  background: url(../img/bkg0.webp) center center no-repeat;
  background-size: cover;
}


/*SECTION - ESQUECI MINHA SENHA */
.section.redefinirsenha {
  position: relative;
  background: url(../img/bkg1.webp) center center no-repeat;
  background-size: cover;
}

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

/* Tabelas 

/*Tabelas - Protótipo antigo*/
table.table {
  border-collapse: separate;
  /*border-spacing: 0px;*/
  border-spacing: 0px 10px;
}

table.table tr {
  transition: all 0.3s ease-in-out;
}

table.table tr:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

table.table thead tr:hover {
  transform: scale(1);
}

table.table th {
  color: var(--c-red2);
  background: var(--c-red2);
}

table.table td,
table.table th {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    background: var(--c-yellow1);
    color: var(--c-bluedark1);
    padding: 3rem 2rem 3rem 2rem;
    text-transform: none;
    border-radius: 0;
    border: 0 !important;
    text-transform: uppercase;
}

i.fa-solid.fa-trash-can {
  color: var(--c-bluedark1);
}

table.table tbody td {
  position: relative;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  border: none;
  background: var(--c-bluedark1);
  padding: 2rem 2rem 2rem 2rem;
  border-radius: 0rem;
  vertical-align: middle;
  color: var(--c-white);
}

table.table tbody tr:nth-child(even) td {
  background: var(--c-bluedark2);
}

table.table .title-table-mobile {
  display: none;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.8;
  border-radius: 100px;
  padding: 0rem 2.5rem 1rem 2.5rem;
  background: transparent;
  color: var(--c-red2);
}

table.table .filter-result {
  display: inline-block;
}

table.table .th-header {
  cursor: pointer;
  position: relative;
}

table.table .th-header:hover {
  opacity: 0.9;
}

table.table .th-header.headerSortDown::after {
  position: absolute;
  right: 10px;
  content: "\e9c5";
  font-family: "icomoon", Arial, sans-serif;
  font-size: 25px;
  line-height: 25px;
  color: #ffffff;
}

table.table .th-header.headerSortUp::after {
  position: absolute;
  right: 10px;
  content: "\e9c6";
  font-family: "icomoon", Arial, sans-serif;
  font-size: 25px;
  line-height: 25px;
  color: #ffffff;
}

.table .thead-dark th {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  background: var(--c-yellow1);
  color: var(--c-bluedark1);
  padding: 3rem 2rem 3rem 2rem;
  text-transform: none;
  border-radius: 0;
  border: 0 !important;
  text-transform: uppercase;
}

.table .thead-dark th:first-child {
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}

.table .thead-dark th:last-child {
  border-top-right-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}

table.table tbody tr td:first-child {
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}

table.table tbody tr td:last-child {
  border-top-right-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}

table.table tbody td .contemplado {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-yellow1);
  line-height: 1.5;
}

table.table tbody td .naocontemplado {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
}

table.table tbody td .reprovado {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-error1);
}

table.table tbody td .aguardando {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: #313131;
}

table.table tbody td i {
  font-size: 2rem;
  top: 2px;
  left: 2px;
  position: relative;
}

table.table tbody td i:hover {
  color: var(--c-yellow1);
}

table.table tbody td i.icon-cross2:before {
  display: none;
}

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

  .main .section .content {
    width: auto;
  }

  .main .footer .content {
    width: auto;
  }

  /* Tabela */
  table.table {
    border-spacing: 5px;
  }

  table.table .title-table-mobile {
    display: inline-block !important;
    font-family: "AmsiProCond", Arial, sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.6;
    border-radius: 100px;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--c-yellow1);
  }

  table.table td,
  table.table th {
    border: 0;
  }

  table.table thead {
    display: none;
  }

  table.table tbody td {
    display: block;
    border: none;
    border-radius: 0px;
    padding: 0.65rem 0.65rem 2rem 0.65rem;
  }

  table.table tbody tr td:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    font-weight: 400 !important;
  }

  table.table tbody tr td:last-child {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}

.table th.sort {
  cursor: pointer;
}

.table th.sort.asc:after {
  padding-left: 10px;
  display: inline-block;
  content: "\f0d8";
  font-family: "FontAwesome", Arial, sans-serif;
}

.table th.sort.desc:after {
  padding-left: 10px;
  display: inline-block;
  content: "\f0d7";
  font-family: "FontAwesome", Arial, sans-serif;
}

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

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

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

#erro .header-section {
  margin-bottom: 0px;
}

@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: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

#erro .texto {
  position: relative;
  font-size: 20px;
  line-height: 25px;
  color: var(--c-white);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
}

#erro .texto span {
}

#erro .call-to-action {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #erro {
    position: relative;
    height: 100vh;
  }

  #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: 800;
  line-height: 100%;
  color: var(--c-white);
  background: var(--c-error);
  font-family: "AmsiProCond", Arial, sans-serif;
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 800;
}

.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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: 12.3;
  line-height: 17px;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

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

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

#img1 .upload-preview {
  width: 130px;
  height: 130px;
  background: var(--c-red1);
  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: "AmsiProCond", Arial, sans-serif;
    font-weight: 800;
  }

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

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

  #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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

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

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

#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: "AmsiProCond", Arial, sans-serif;
    font-weight: 800;
  }

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

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

  #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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
}

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

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

#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: "AmsiProCond", Arial, sans-serif;
    font-weight: 800;
  }

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

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

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

#img1 .upload-preview,
#img2 .upload-preview2,
#img3 .upload-preview3 {
  background-color: var(--c-yellow1);
  border: 2px solid #ffffff;
  background-size: cover;
}

/* SECTION - CADASTRO CUPOM; */
.section.cadastro-cupom {
  position: relative;
  background: url(../img/bkg2.webp) top center no-repeat;
  background-size: cover;
}

.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: #00000050;
  padding: 2rem;
  position: relative;
  border-radius: 1rem;
  color: var(--c-white);
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

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

.section.cadastro-cupom .total {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 26px;
  color: var(--c-white);
  letter-spacing: 0px;
  text-transform: inherit;
  text-align: center;
  margin-bottom: 20px;
}

.section.cadastro-cupom .total span {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-white);
}

.section.cadastro-cupom .title-excluir a {
  color: var(--c-yellow1);
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 100%;
}

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

.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 {
  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;
}

.section.cadastro-cupom .form-check .form-check-input {
  position: relative;
  top: -4px;
}

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

@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: 400 !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: 24px;
  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='%23fff' 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='%23fff' 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 {
  filter: invert(0); /* preto */
}



/* Section PRODUTOS LISTA */
.section.produtos .subcategoria {
  padding: 0px;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-yellow1);
}

.section.produtos.produtos_lista .lista-produtos .item .nome {
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  padding: 20px 15px 20px 15px;
  color: var(--c-white);
  background: #093d8b94;
  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: 2rem;
  line-height: 1;
  text-align: center;
  color: var(--c-yellow1);
}

.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: 400;
  color: var(--c-white);
  text-align: center;
  font-size: 1.8rem;
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  position: relative;
  padding: 15px 15px;
  background: var(--c-white);
  border-radius: 0rem 0rem 0.7rem 0.7rem;
  /*    background: var(--c-red2);*/
}

.section.produtos.produtos_lista .lista-produtos .item .logo-marca img {
  /*width: 100%;*/
  /*max-width: 150px;*/
  max-width: 100%;
}

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 */
#erro .countdown {
  position: relative;
  top: 0%;
  right: 0%;
  z-index: 9;
  margin-bottom: 5px;
  width: 400px;
  margin-bottom: 2rem;
}

#erro .countdown .digits {
  background: #e0dbdc !important;
  border-radius: 6px;
  padding-bottom: 10px;
  padding-right: 2px;
  padding-left: 2px;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 400;
  box-shadow: 0px 11px 10px 1px rgba(0, 0, 0, 0.2);
}

span.line {
  position: absolute;
  z-index: 0;
  left: 12.6%;
  top: 43px;
  content: "";
  width: 77.7px;
  height: 1px;
  border: 1px solid #5b5b5b;
}

.countdown .digits span {
  font-size: 1.6rem;
}

#erro .countdown .digits span {
  color: var(--c-bluedark1);
}

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

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

#erro .countdown .digits div {
  font-size: 50px;
  color: var(--c-bluedark1);
  background: transparent;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  width: 70px;
  height: 60px;
  line-height: 76px;
  z-index: 1;
  position: relative;
}

/* Caue CSS */

/* Meu Extrato */
.extrato-informacoes-gerais {
}

.total-sorte-container {
}

.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: 800;
  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 .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-gray);
    border-radius: 10px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    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: .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: .8rem !important;
  transition: all .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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  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: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  margin-left: 1.2rem;
  margin-top: 8px;
  padding: 0rem;
  background: transparent;
  text-align: center;
}

/* Box contato */
.box-contato {
  align-items: center;
  width: 100%;
  margin-top: 40px;
  border-radius: 1.6rem;
  padding: 2.4rem;
  background-color: var(--c-white);
}
@media (max-width: 991px){
  .box-contato {
      width: auto;
  }
}

.info-box-contato h3 {
  font-size: 2.3rem;
  text-align: start;
  font-family: "AmsiProCond", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--c-red1);
}

.info-box-contato p {
  font-size: 1.8rem;
  text-align: start;
  font-weight: 400;
  color: var(--c-bluedark1);
}

.formulario-box-contato {
  margin-top: 2rem;
}

.section.duvidas .box-contato a {
  color: var(--c-bluedark1) !important;
  text-decoration: underline;
}

.section.duvidas .box-contato a:hover {
  color: var(--c-bluedark1) !important;
  text-decoration: none;
}

.box-contato .float-placeholder {
  color: var(--c-red2);
}

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

/* Not Checked e Focus */
.form-switch .form-check-input,
.form-switch .form-check-input:focus {
  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='%23ff0000'/%3e%3c/svg%3e") !important;
  border: 1px solid var(--c-white) !important;
  outline: none !important;
}

/* Checked */
.form-switch .form-check-input:checked {
  background-color: var(--c-red2);
  border-color: var(--c-red2) !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='%23ffcb05'/%3e%3c/svg%3e") !important;
}

/* Checkbox */
.form-check {
  /*display: flex !important;*/
  /*align-items: center;*/
/*  flex-wrap: wrap;*/
}

.form-check .form-check-input {
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50% !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-bluedark1) !important;
  border-color: var(--c-bluedark1) !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='%23fff' 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;
}

/* Cadastro */
.section.cadastro .form-check .form-check-input, .section.cadastro .form-check .form-check-input:focus {
  border-color: var(--c-bluedark1) !important;
  background: #f7f7f7;
}

.section.cadastro .form-check .form-check-input:checked {
  border-color: var(--c-bluedark1) !important;
}

/*Calendário*/
.datepicker td, .datepicker th {
  font-size: 1.5rem;
}

/*Central de mensagens*/
.centralmensagens {
  background: url(../img/bkg0.webp) top center no-repeat;
  background-size: cover;
}
