﻿:root {
  --c-bluedark1: #00015C;
  /*--c-bluedark1: #072262; OLD*/
  --c-bluedark2: #022a87;
  --c-bluedark3: #01064B;
  /*--c-bluedark3: #021748;*/
  --c-bluelight1: #2690d4;
  --c-bluelight2: #51a9e1;
  --c-bluelight3: #39b4d2;
  --c-bluelight4: #35e0ce;
  --c-bluelight5: #0095ff;
  --c-yellow1: #ffcb00;
  --c-yellow2: #ffd73b;
  --c-pink1: #d3042c;
  --c-pink2: #fd244b;
  --c-red1: #de0003;
  --c-red2: #ff3a28;
  --c-brown1: #7a2a23;
  --c-brown2: #a44d18;
  --c-purple1: #5044bb;
  --c-green1: #005011;

  --c-black: #000000;
  --c-black2: #313131;
  --c-blackform: #6c757d;
  --c-white: #ffffff;
  --c-graydark: #666666;
  --c-gray: #f7f7f7;
  --c-gray2: #efeeed;
  --c-check: #5bbd4f;
  --c-error: #d71414;
  --c-error2: #fe4b4b;
}

/*
[Fontes do projeto]
    Grotesca [400]
    GrotescaCondensed [400]
    Grotesca [800]
    GrotescaCondensed [800]
*/

body {
  padding-top: 0px;
  transition: opacity 1s ease-in-out;
  opacity: 1 !important;
  letter-spacing: 0;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: "GrotescaCondensed", 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;
  background-color: var(--c-bluedark1);
}

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

/*Efeito para surgir os elementos*/
/* Estado inicial */
.scroll-fade {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

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

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

.instant {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

/*Animação*/
@keyframes piscaPisca {
  0% {
    box-shadow: 0px -1px 13px 3px rgb(255 212 0);
  }

  50% {
    box-shadow: none;
  }

  100% {
    box-shadow: 0px -1px 13px 3px rgb(255 212 0);
  }
}

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

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

  50% {
    -webkit-transform: scale(0.95) rotate(0deg);
    -ms-transform: scale(0.95) rotate(0deg);
    transform: scale(0.95) rotate(0deg);
  }

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

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

@keyframes pulseDois {
  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);
  }
}

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

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

  50% {
    -webkit-transform: scale(1.1) rotate(0deg);
    -ms-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
  }

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

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

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

  50% {
    transform: translateY(-20px);
  }

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

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

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

  50% {
    transform: translateY(-40px);
  }

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

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

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

  50% {
    transform: translateY(-15px);
  }

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

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

@keyframes efeitoSobeDesceRotate15 {
  0% {
    transform: translateY(0px) rotate(15deg);
  }

  50% {
    transform: translateY(-10px) rotate(15deg);
  }

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

@keyframes efeitoSobeDesce-Rotate15 {
  0% {
    transform: translateY(0px) rotate(-15deg);
  }

  50% {
    transform: translateY(-10px) rotate(-15deg);
  }

  100% {
    transform: translateY(0px) rotate(-15deg);
  }
}

@keyframes efeitoSobeDesceRotate15-inverse {
  0% {
    transform: translateY(0px) rotate(15deg);
  }

  50% {
    transform: translateY(10px) rotate(15deg);
  }

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

@keyframes efeitoSobeDesce-Rotate15-inverse {
  0% {
    transform: translateY(0px) rotate(-15deg);
  }

  50% {
    transform: translateY(10px) rotate(-15deg);
  }

  100% {
    transform: translateY(0px) rotate(-15deg);
  }
}

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

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

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

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

@keyframes efeitoTremer {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(1deg);
  }

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

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

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

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

.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: 1.6rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 5px;
  font-family: "Grotesca", Arial, sans-serif;
}

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

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

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

p.description_small {
  font-size: 1.3rem;
  line-height: 1.4;
  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: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-yellow1);
  background: var(--c-bluedark1);
  font-size: 1.7rem;
  line-height: 1;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border: 0;
}

.btn:focus,
.btn:hover,
.btn.active {
  color: var(--c-yellow1);
  background: var(--c-bluedark2);
  border-color: var(--c-bluedark1);
  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;
  text-shadow: 0px 0px 11px #fdc200;
}

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

.btn.btn-white:focus,
.btn.btn-white:hover,
.btn.btn-white.active {
  color: var(--c-bluedark1);
  background: var(--c-white);
  border-color: var(--c-white);
  text-shadow: none;
}

.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);
  text-shadow: 0px 0px 11px #fdc200;
  box-shadow: 0px -1px 13px 3px rgb(255 212 0);
}

.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);
  text-shadow: none;
}

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

.btn.btn-bluelight:focus,
.btn.btn-bluelight:hover,
.btn.btn-bluelight.active {
  color: var(--c-yellow2);
  background: var(--c-bluelight1);
  border-color: var(--c-bluelight1);
  text-shadow: 0px 0px 11px #fdc200;
}

.btn.btn-bluelight5 {
  color: var(--c-white);
  background: var(--c-bluelight5);
  border-color: var(--c-bluelight5);
  border-radius: 1rem;
}

.btn.btn-bluelight5:focus,
.btn.btn-bluelight5:hover,
.btn.btn-bluelight5.active {
  color: var(--c-yellow2);
  background: var(--c-bluelight5);
  border-color: var(--c-bluelight5);
  text-shadow: 0px 0px 11px #fdc200;
}

.btn.btn-gradient-green {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--c-green1);
  background: linear-gradient(90deg, #5bbd4f 0%, #66ff53 100%);
  text-transform: none !important;
  border: none !important;
  border-radius: 1rem !important;
}

.btn.btn-gradient-green:focus,
.btn.btn-gradient-green:hover,
.btn.btn-gradient-green.active {
  color: var(--c-green1);
  background: linear-gradient(90deg, #5bbd4f 0%, #66ff53 100%);
  border: none !important;
  text-shadow: none !important;
  transform: scale(1.03);
  box-shadow: 0px 0px 10px rgba(102, 255, 83, 0.4);
}

.btn.btn-gradient-yellow {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--c-bluedark1);
  background: linear-gradient(90deg, #ffcb00 0%, #ffd73b 100%);
  text-transform: none !important;
  border: none !important;
  border-radius: 1rem !important;
}

.btn.btn-gradient-yellow:focus,
.btn.btn-gradient-yellow:hover,
.btn.btn-gradient-yellow.active {
  color: var(--c-bluedark1);
  background: linear-gradient(90deg, #ffcb00 0%, #ffd73b 100%);
  border: none !important;
  text-shadow: none !important;
  transform: scale(1.03);
  box-shadow: 0px 0px 10px rgba(102, 255, 83, 0.4);
}

.btn.btn-gradient-yellow img {
  max-width: 10px;
}

.btn.btn-transparent {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: fit-content;
  color: var(--c-white);
  background: transparent;
  text-decoration: none !important;
}

.btn.btn-transparent:focus,
.btn.btn-transparent:hover,
.btn.btn-transparent.active {
  color: var(--c-yellow1) !important;
  background: transparent;
  transform: scale(1) !important;
}

.btn.btn-transparent svg path,
.btn.btn-transparent svg path,
.btn.btn-transparent svg path {
  stroke: var(--c-white) !important;
  transition: all 0.3s ease-in-out;
}

.btn.btn-transparent:focus svg path,
.btn.btn-transparent:hover svg path,
.btn.btn-transparent.active svg path {
  stroke: var(--c-yellow1) !important;
}

.btn.btn-purple {
  color: var(--c-yellow1);
  background: var(--c-purple1);
  border-color: var(--c-purple1);
}

.btn.btn-purple:focus,
.btn.btn-purple:hover,
.btn.btn-purple.active {
  color: var(--c-yellow2);
  background: var(--c-purple1);
  border-color: var(--c-purple1);
  text-shadow: 0px 0px 11px #fdc200;
}

.btn.btn-pink {
  color: var(--c-yellow1);
  background: var(--c-pink1);
  border-color: var(--c-pink1);
}

.btn.btn-pink:focus,
.btn.btn-pink:hover,
.btn.btn-pink.active {
  color: var(--c-yellow2);
  background: var(--c-pink1);
  border-color: var(--c-pink1);
  text-shadow: none;
}

.btn.btn-transparent {
  color: var(--c-white);
  background: transparent;
  border-color: unset;
  text-decoration: underline;
  box-shadow: none;
}

.btn.btn-transparent:focus,
.btn.btn-transparent:hover,
.btn.btn-transparent.active {
  color: var(--c-yellow2);
  background: transparent;
  border-color: unset;
  text-shadow: none;
  box-shadow: none;
  transform: scale(1.2);
}

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

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

.btn.btn-green2 {
  color: rgba(0, 0, 0, 0.7);
  background: var(--c-check);
  border-color: var(--c-check);
}

.btn.btn-green2:focus,
.btn.btn-green2:hover,
.btn.btn-green2.active {
  color: rgba(0, 0, 0, 0.7);
  background: var(--c-check);
  text-shadow: none;
  transform: scale(1.03);
}

.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 0 0 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: 1.3rem;
  font-weight: 800;
  padding: 1.2rem 0 1.1rem 0;
  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;
  max-width: 28px;
}

@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: 0;
    font-size: 1.7rem;
    border-radius: 5rem;
    width: 100%;
  }
}

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

@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 0 1.5rem 0;
  }
}

/* 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 0 0 5rem;
  right: -5px;
}

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

#menu .user.user_logado .btn.btn-login:hover {
  color: var(--c-yellow1);
  background: transparent;
  box-shadow: none;
  text-shadow: 0px 0px 11px #fdc200;
}

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

.tab-btn .btn:focus,
.tab-btn .btn:hover {
  color: var(--c-white);
  background: var(--c-bluelight1);
  opacity: 1;
  text-shadow: none;
  transform: scale(1);
}

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

.tab-btn .btn.active:focus,
.tab-btn .btn.active:hover {
  color: var(--c-black);
  background: var(--c-yellow1);
  opacity: 1;
  text-shadow: none;
  transform: scale(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: 'Grotesca', 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: 'Grotesca', 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: 'Grotesca', 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;
        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: 'Grotesca', 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: 'Grotesca', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin: 0;
}

@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: 'Grotesca', 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: 'Grotesca', 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: 'Grotesca', Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 30px;
    text-transform: none;
    padding: .375rem .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 #0a2c86;
    border-bottom: 1px solid #0a2c86;
    width: 100%;
    font-size: 14px;
}

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

#popup-cookiesgeral .content-cookies {
    font-family: 'Grotesca', 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: 'Grotesca', Arial, sans-serif;
    font-weight: 400;
    color: #343a40 !important;
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .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: 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: 'Grotesca', 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: 'Grotesca', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    padding: 10px 10px 10px 10px;
    border: 1px solid var(--c-yellow1);
    border-bottom: 0;
    border-radius: 0;
    text-align: left;
    line-height: 120%;
    color: #313131;
    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: 'Grotesca', Arial, sans-serif;
    font-weight: 800;
    color: var(--c-bluedark1) !important;
    background: var(--c-yellow1) !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: 'Grotesca', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 120%;
    margin: 0 0 10px 0;
    color: var(--c-yellow1);
}

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

#popup-cookiesgeral .subtitle-cookies {
    font-family: 'Grotesca', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 120%;
    color: #c12d22;
    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);
    font-weight: 800;
}

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

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

#popup-cookiesgeral .accordion .btn {
    color: #c12d22 !important;
    font-family: 'Grotesca', 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-color: var(--c-bluedark1);
  /*background: url(../img/bkg2-1.png) no-repeat bottom center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat bottom center;*/
  background-size: cover;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
}

/*.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 .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: 15px 15px 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-yellow2);
  transform: scale(1.5);
}

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

.modal .descricao {
  /*    font-size: 1.5rem;*/
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  font-family: "Grotesca", Arial, sans-serif;
  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-bs-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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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*/
.section.contato {
  position: relative;
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  /*background: url(../img/bkg1-1.png) no-repeat center center;*/
  background-size: cover;
}

.section.contato .custom-control-label a {
  color: var(--c-white) !important;
}

.section.contato .custom-control-label a:hover {
  color: var(--c-white) !important;
}

/*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: "Grotesca", 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: 5px;
  left: 15px;
  z-index: 99999999 !important;
  background: var(--c-bluelight2);
  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-bluelight1);
  transition: all 0.5s ease-in-out;
}

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

#back-to-top:hover {
  transform: scale(1.1);
  color: var(--c-white);
  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 {
    left: 30px;
  }
}

/* Compartilhar no WhatsApp */
#back-to-top2 {
  position: fixed;
  display: none;
  bottom: 70px;
  left: 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 #f2f2f2;
  transition: all 0.5s ease-in-out;
  display: block;
}

#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 {
    left: 30px;
  }
}

/* Cta Participe */
.barra-participe {
  position: fixed;
  z-index: 10;
  bottom: 27px;
  left: 84px;
  width: 350px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  background: transparent;
}

.barra-participe .btn {
  width: 100%;
  max-width: 210px;
  padding: 1.5rem 2rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  color: var(--c-white) !important;
  background: var(--c-check);
  border: 0;
  -webkit-animation-name: pulseUm;
  animation-name: pulseUm;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
  text-shadow: none;
}

@media (max-width: 991px) {
  .barra-participe .btn {
    font-size: 26px;
    width: auto;
    max-width: inherit;
  }
}

.barra-participe .btn:hover {
  border: 0;
  transform: scale(1);
  background: var(--c-check);
  text-shadow: none;
}

/* 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: 1230px;
  margin: auto;
  border-radius: 1.5rem;
  transition: all 0.7s;
  height: 70px;
  box-shadow: inset 0 0 4px 3px rgb(159 0 0);
  top: 1%;
  padding: 1rem 3rem;
  overflow: unset;
  /*    overflow: hidden;*/
  transition: all 0.3s ease-in-out;
  /**/
  background: rgb(255, 58, 40);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3a28", endColorstr="#de0003", GradientType=1);
}

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

.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 {
  padding: 0.6rem 1rem 0 1rem;
  color: var(--c-yellow1);
}

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

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

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

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

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

#menu .navbar-nav a,
#menu .navbar-nav button {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 1rem 0 1rem;
  color: var(--c-white);
}

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

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

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

#menu .navbar-nav a span {
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: piscaPisca;
  animation-name: piscaPisca;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

#menu .navbar-nav a span:hover {
  color: var(--c-bluedark1);
  background: var(--c-yellow2);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px -1px 13px 3px rgb(255 212 0);
  text-shadow: 0px 0px 11px #fdc200;
}

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

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

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

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

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

  #menu .navbar-nav a span {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

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

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

  #menu .navbar-nav {
    font-size: 1.2rem;
    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.2rem;
  }

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

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

  #menu .user.user_logado .btn.btn-login {
    padding: 1.5rem 0 1.7rem 0;
  }
}

.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: transparent;
  font-size: 25px;
  padding: 26px 25px 26px 25px;
}

#menu .navbar-toggler:focus {
  border: none;
  outline: 0;
  color: transparent;
}

a.navbar-toggler.ml-auto.collapsed {
  color: transparent;
}

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

.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: 70px;
    transition: all 0.3s ease-in-out;
    */
  position: relative;
  width: 100%;
  max-width: 90px;
  transition: all 0.3s ease-in-out;
  top: 3px;
}

@media (max-width: 991px) {
  .navbar-brand {
    margin-top: inherit;
    margin-left: 0 !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);
  }

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

  #menu nav .user2 {
    position: relative;
    margin-left: auto;
    right: inherit;
    display: flex !important;
  }

  #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: 82px;
    overflow: unset;
    animation-name: none;
  }

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

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

  #menu .btn {
    font-size: 16px;
    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: uppercase;
  }

  .navbar-collapse {
    margin-top: -3px;
    /*        background: var(--c-red1);*/
    background: rgb(255, 58, 40);
    background: -moz-linear-gradient(
      90deg,
      rgba(255, 58, 40, 1) 0%,
      rgba(222, 0, 3, 1) 100%
    );
    background: -webkit-linear-gradient(
      90deg,
      rgba(255, 58, 40, 1) 0%,
      rgba(222, 0, 3, 1) 100%
    );
    background: linear-gradient(
      90deg,
      rgba(255, 58, 40, 1) 0%,
      rgba(222, 0, 3, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3a28", endColorstr="#de0003", GradientType=1);
  }

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

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

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

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

.font-regular {
  font-family: "Grotesca", Arial, sans-serif;
}

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

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

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

.text-shadow {
  color: var(--c-yellow1) !important;
  text-shadow: 0px 0px 11px #fdc200 !important;
}

/*.bkg-black50 {
  background: #072262a8;
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
  backdrop-filter: blur(5px);
}*/

.bkg-white100 {
  background: #ffffff;
  position: absolute;
  top: -20%;
  left: 0%;
  bottom: -30%;
  right: 0%;
}

.adjust-overflow {
  overflow: inherit;
}

@media (max-width: 991px) {
  .adjust-overflow {
    overflow: hidden;
  }
}

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

/* 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: 3rem;
  line-height: 1;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-white);
}

.main .section .header-section h3 {
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  font-size: 1.6rem;
  line-height: 1.4;
}

.main .section .descricao {
  font-family: "Grotesca", 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;
    line-height: 1.2;
  }
}

/* SECTION - LOGIN */
.section.login {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

.section.login .bkg-black50 {
  backdrop-filter: blur(10px);
}

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

.section.login .selo {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.section.login .selo img {
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: pulseUm;
  animation-name: pulseUm;
  animation-duration: 0.8s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.btn.btn-green:hover {
  box-shadow: none;
  transform: scale(1.1);
}

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

/*BOX - LOGIN*/
.section.login .box-login {
  position: relative;
  z-index: 1;
  padding: 3rem 3rem 3rem 3rem;
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  border-radius: 4rem;
  /*    box-shadow: inset 0 0 4px 3px rgb(159 0 0);*/
  background: var(--c-bluelight1);
  border: 3px solid #ffffff;
  margin-top: 0;
  margin-bottom: 2rem;
}

.section.login .box-login:hover {
  transition: all 0.3s ease-in-out;
}

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

.section.login .box-login .header-section h2 {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-yellow1);
  text-shadow: 0px 0px 11px #fdc200 !important;
}

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

.section.login .box-login .esquecisenha {
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  font-size: 1.3rem;
  line-height: 1.4rem;
  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);
}

.section.login hr.divider {
  border-color: #d5052d;
}

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

/* SECTION - INÍCIO - SEM CADASTRO NA HOME*/
.section.inicio {
  position: relative;
  background: var(--c-bluedark1);
  z-index: unset;
  overflow: hidden;
}

.section.inicio .padding {
  z-index: unset;
  max-width: 100%;
  padding: 0px;
}

.section.inicio .padding .content-section {
  position: relative;
  z-index: unset;
}

/*Desktop*/
.section.inicio .kv.desktop {
  position: relative;
  width: 100%;
}

.section.inicio .kv.desktop .bkg {
  position: relative;
  left: 0%;
  width: 100%;
}

.section.inicio .kv.desktop .selo {
  position: absolute;
  z-index: 3;
  top: -6%;
  left: 32%;
  width: 42%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .img-selo {
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: pulseDois;
  animation-name: pulseDois;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.section.inicio .kv.desktop .mao {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: -9%;
  width: 35%;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: efeitoTremer;
  animation-name: efeitoTremer;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.section.inicio .kv.desktop .img-mao {
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .box1 {
  position: absolute;
  z-index: 3;
  top: 15%;
  right: 2%;
  width: 25%;
  transition: all 1s ease-in-out;
}

.section.inicio .kv.desktop .box1:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio .kv.desktop .box2 {
  position: absolute;
  z-index: 3;
  top: 33%;
  right: 2%;
  width: 25%;
  transition: all 1s ease-in-out;
}

.section.inicio .kv.desktop .box2:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio .kv.desktop .box3 {
  position: absolute;
  z-index: 3;
  top: 58.6%;
  right: 2%;
  width: 25%;
  transition: all 1s ease-in-out;
}

.section.inicio .kv.desktop .box3:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio .kv.desktop .img-box1,
.section.inicio .kv.desktop .img-box2,
.section.inicio .kv.desktop .img-box3 {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

/*.section.inicio .cta {
    position: absolute;
    z-index: 9;
    top: 75%;
    right: 0%;
    width: 25%;
    transition: all 1s ease-in-out;
    text-shadow: none;
}
.section.inicio .cta a.btn {
    color: var(--c-white);
    background: var(--c-check);
    -webkit-animation-name: pulseDois;
    animation-name: pulseDois;
    animation-duration: 1.2s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
    text-shadow: none;
}*/

.section.inicio .kv.desktop .packshot {
  position: absolute;
  z-index: 4;
  bottom: -1%;
  left: 3%;
  width: 62%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .img-packshot {
  width: 100%;
  max-width: 1200px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .packshot:hover {
  transition: all 1s ease-in-out;
  transform: scale(1.1);
}

.section.inicio .kv.desktop .aceleradores {
  position: absolute;
  z-index: 4;
  bottom: -4%;
  right: 20%;
  width: 14%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .img-aceleradores {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
  /**/
  animation-name: efeitoSobeDesceTres;
  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 .kv.desktop .barra {
  position: absolute;
  z-index: 3;
  bottom: -25%;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.desktop .img-barra {
  width: 100%;
  max-width: 1920px;
  transition: all 0.3s ease-in-out;
}

/*Mobile*/
.section.inicio .kv.mobile {
  position: relative;
  width: 100%;
  /*  min-height: 750px;*/
}

.section.inicio .kv.mobile .bkg {
  position: relative;
  left: 0%;
  width: 100%;
  opacity: 20%;
  display: none;
}

.section.inicio .kv.mobile .selo {
  position: relative;
  z-index: 3;
  width: 100%;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: pulseDois;
  animation-name: pulseDois;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.section.inicio .kv.mobile .img-selo {
  width: 100%;
  max-width: 860px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .mao {
  display: none;
  position: absolute;
  z-index: 3;
  top: 10%;
  left: -5%;
  width: 35%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .img-mao {
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .box1 {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: 3%;
  width: 45%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .box2 {
  position: absolute;
  z-index: 3;
  top: 53.4%;
  right: 2%;
  width: 48%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .box3 {
  position: absolute;
  z-index: 3;
  top: 68.6%;
  left: 7%;
  width: 85%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .img-box1,
.section.inicio .kv.mobile .img-box2,
.section.inicio .kv.mobile .img-box3 {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .packshot {
  position: absolute;
  z-index: 4;
  bottom: 1%;
  left: 0%;
  width: 71%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .img-packshot {
  width: 100%;
  max-width: 1200px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .aceleradores {
  position: absolute;
  z-index: 4;
  bottom: -1%;
  right: 1%;
  width: 30%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .img-aceleradores {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .barra {
  position: absolute;
  z-index: 3;
  bottom: -4%;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section.inicio .kv.mobile .img-barra {
  width: 100%;
  max-width: 1920px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section.inicio {
    background: var(--c-bluedark1);
  }

  .section.inicio .padding {
    padding: 0 !important;
  }

  .section.inicio .selo-geral {
    width: 100%;
    left: inherit;
    margin-bottom: 2rem;
    right: inherit;
  }

  .section.inicio .selo2 {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 650px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: -2rem;
    margin-bottom: 3rem;
  }
}

/* SECTION - INÍCIO - COM CADASTRO NA HOME*/
.section.inicio-cadastro {
  position: relative;
  background: var(--c-bluedark1);
  z-index: unset;
  overflow: hidden;
}

.section.inicio-cadastro .padding {
  z-index: unset;
  max-width: 1920px;
  /*max-width: 100%;*/
  padding: 0px;
}

.section.inicio-cadastro .padding .content-section {
  position: relative;
  z-index: unset;
}

/*Desktop*/
.section.inicio-cadastro .kv.desktop {
  position: relative;
  width: 100%;
  min-height: 50em;
}

.section.inicio-cadastro .kv.desktop .bkg {
  position: relative;
  left: -20%;
  width: 140%;
}

.section.inicio-cadastro .kv.desktop .selo {
    position: absolute;
    z-index: 3;
    top: 15%;
    left: 7%;
    width: 41%;
    max-width: 370px;
}

.section.inicio-cadastro .kv.desktop .img-selo {
  -webkit-animation-name: pulseDois;
  animation-name: pulseDois;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

.section.inicio-cadastro .kv.desktop .mao {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: -9%;
  width: 35%;
  transition: all 0.3s ease-in-out;
  /**/
  -webkit-animation-name: efeitoTremer;
  animation-name: efeitoTremer;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  transition: all 0.3s ease-in-out !important;
}

.section.inicio-cadastro .kv.desktop .img-mao {
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .box1 {
  position: absolute;
  z-index: 3;
  top: 20%;
  right: 0%;
  width: 30%;
  transition: all 1s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .box1:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio-cadastro .kv.desktop .box2 {
  position: absolute;
  z-index: 3;
  top: 33.8%;
  right: 0%;
  width: 30%;
  transition: all 1s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .box2:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio-cadastro .kv.desktop .box3 {
  position: absolute;
  z-index: 3;
  top: 54.3%;
  right: 0.2%;
  width: 29.7%;
  transition: all 1s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .box3:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio-cadastro .kv.desktop .img-box1,
.section.inicio-cadastro .kv.desktop .img-box2,
.section.inicio-cadastro .kv.desktop .img-box3 {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .boxgeral {
  position: absolute;
  z-index: 3;
  top: 15%;
  right: 2%;
  transition: all 1s ease-in-out;
  max-width: 280px;
  width: 32%;
}

.section.inicio-cadastro .kv.desktop .boxgeral:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1);
}

.section.inicio-cadastro .kv.desktop .comoparticipar-premio {
  position: absolute;
  z-index: 3;
  top: 14.6%;
  right: 28%;
  transition: all 1s ease-in-out;
  max-width: 140px;
  width: 14%;
}

.section.inicio-cadastro .kv.desktop .comoparticipar-passos {
  position: absolute;
  z-index: 3;
  top: calc(15% + 205px);
  right: 18.5vw;
  transition: all 1s ease-in-out;
  max-width: 165px;
}

@media (max-width: 1550px) {
  .section.inicio-cadastro .kv.desktop .comoparticipar-premio,
  .section.inicio-cadastro .kv.desktop .comoparticipar-passos {
    right: 32%;
  }
}

@media (max-width: 1300px) {
  .section.inicio-cadastro .kv.desktop .comoparticipar-premio,
  .section.inicio-cadastro .kv.desktop .comoparticipar-passos {
    right: 36%;
    max-width: 145px;
  }

  .section.inicio-cadastro .kv.desktop .comoparticipar-passos {
    top: calc(15% + 183px);
  }
}

@media (max-width: 1150px) {
  ./*section.inicio-cadastro .kv.desktop .comoparticipar-premio,
  .section.inicio-cadastro .kv.desktop .comoparticipar-passos {
    display: none;
  }*/

  .section.inicio-cadastro .kv.desktop .aceleradores {
    /*bottom: -4vh !important;*/
  }
}

.section.inicio-cadastro .kv.desktop .comoparticipar-premio:hover,
.section.inicio-cadastro .kv.desktop .comoparticipar-passos:hover {
  transition: all 0.6s ease-in-out;
  transform: scale(1.05);
}

.section.inicio-cadastro .kv.desktop .packshot {
  position: absolute;
  z-index: 4;
  bottom: -1%;
  left: 3%;
  width: 72%;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .img-packshot {
  width: 100%;
  max-width: 1030px;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .packshot:hover {
  transition: all 1s ease-in-out;
  /*    transform: scale(1.1);*/
}

.section.inicio-cadastro .kv.desktop .aceleradores {
  position: absolute;
  z-index: 4;
  bottom: -2.1%;
  right: 2%;
  width: 22%;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.desktop .img-aceleradores {
  width: 100%;
  max-width: 280px;
  transition: all 0.3s ease-in-out;
  animation-name: efeitoSobeDesceTres;
  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-cadastro .kv.desktop .barra {
  position: absolute;
  z-index: 3;
  bottom: 0px;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  margin-bottom: -1rem;
}

.section.inicio-cadastro .adjust-overflow2 {
  overflow: hidden;
}

/*Mobile*/
.section.inicio-cadastro .kv.mobile {
  position: relative;
  width: 100%;
  max-width: 99%;
  /* overflow: hidden; */
}

.section.inicio-cadastro .kv.mobile .bkg {
  position: relative;
  width: 100%;
}

.section.inicio-cadastro .kv.mobile .selo {
    position: absolute;
    z-index: 3;
    top: 39%;
    left: 14%;
    transform: translateX(-25%);
    width: 75%;
    max-width: 345px;
    transition: all 0.3s ease-in-out;
    -webkit-animation-name: pulseDois;
    animation-name: pulseDois;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}

.section.inicio-cadastro .kv.mobile .comoparticipar-premio,
.section.inicio-cadastro .kv.mobile .comoparticipar-passos {
  position: absolute;
  z-index: 3;
  top: 2%;
  left: calc(25% + -10%);
  transform: translateX(-25%);
  transition: all 0.3s ease-in-out;
  width: 30%;
  /*max-width: 330px;*/
  max-width: 130px;
}

.section.inicio-cadastro .kv.mobile .comoparticipar-passos {
  top: 56%;
}

.section.inicio-cadastro .kv.mobile .comoparticipar-premio:hover,
.section.inicio-cadastro .kv.mobile .comoparticipar-passos:hover {
  transition: all 0.6s ease-in-out;
  transform: translateX(-25%) scale(1.05);
}

.section.inicio-cadastro .kv.mobile .boxgeral {
  position: absolute;
  z-index: 3;
  top: 2%;
  right: calc(25% + -30%);
  transform: translateX(-25%);
  transition: all 0.3s ease-in-out;
  width: 50%;
  /*max-width: 370px;*/
  max-width: 220px;
}

.section.inicio-cadastro .kv.mobile .boxgeral:hover {
  transition: all 0.6s ease-in-out;
  transform: translateX(-25%) scale(1.05);
}

.section.inicio-cadastro .kv.mobile .img-boxgeral {
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .packshot {
  position: absolute;
  z-index: 4;
  bottom: 0%;
  left: 0%;
  width: 71%;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .img-packshot {
  width: 100%;
  max-width: 280px;
  /*max-width: 1200px;*/
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .aceleradores {
  position: absolute;
  z-index: 4;
  bottom: -1%;
  right: 1%;
  width: 30%;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .img-aceleradores {
  width: 100%;
  max-width: 130px;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .barra {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section.inicio-cadastro .kv.mobile .img-barra {
  width: 100%;
  max-width: 1920px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section.inicio-cadastro {
    background: var(--c-bluedark1);
  }

  .section.inicio-cadastro .padding {
    padding: 0 !important;
  }

  .section.inicio-cadastro .selo-geral {
    width: 100%;
    left: inherit;
    margin-bottom: 2rem;
    right: inherit;
  }

  .section.inicio-cadastro .selo2 {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 650px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: -2rem;
    margin-bottom: 3rem;
  }
}

/* CADASTRO NA HOME */
.section.inicio-cadastro .formulario {
  position: relative;
  /* margin-top: 10; */
  /* margin-bottom: 3rem; */
  padding: 12rem 3.9rem 5rem 3rem;
}

.section.inicio-cadastro .title {
  padding: 0px;
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 3rem;
  line-height: 1;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-purple1);
}

.section.inicio-cadastro .title span {
  font-size: 1.1rem;
  color: var(--c-white);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  background: var(--c-purple1);
}

.section.inicio-cadastro .custom-control-label,
.section.inicio-cadastro .custom-control-label a,
.section.inicio-cadastro .custom-control-label a:hover {
  color: var(--c-black2);
}

.section.inicio-cadastro .formulário {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/*    Ajuste de label*/
.section.inicio-cadastro .float-placeholder {
  color: var(--c-bluedark1);
  /**/
  display: none;
}

.section.inicio-cadastro .form-control,
.section.inicio-cadastro .form-control:focus,
.section.inicio-cadastro input.form-control:focus {
  margin: 0px 0px 5px 0px;
}

.section.inicio-cadastro .eye [data-bs-togglepassword] {
  /*top: 5px;*/
  /*right: 13px;*/
  top: 6px;
  right: 20px;
  border: 0;
  background: transparent;
}
@media (max-width: 991px){
  .section.inicio-cadastro .eye [data-bs-togglepassword] {
    top: 2px;
    right: 12px;
  }
}

@media (max-width: 991px) {
  .section.inicio-cadastro .formulario {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

/*@media (min-width: 992px) and (max-width: 1300px) {
  .section.inicio-cadastro .kv.desktop {
    position: relative;
    width: 100%;
    min-height: 50em;
  }

  .section.inicio-cadastro .kv.desktop .bkg {
    position: relative;
    left: -52%;
    width: 200%;
    margin-top: -9rem;
  }

  .section.inicio-cadastro .kv.desktop .selo {
    max-width: 370px;
  }

  .section.inicio-cadastro .kv.desktop .packshot {
    position: absolute;
    z-index: 4;
    bottom: -1%;
    left: 3%;
    width: 70%;
    transition: all 0.3s ease-in-out;
  }

  .section.inicio-cadastro .kv.desktop .img-packshot {
    width: 100%;
    max-width: 1200px;
    transition: all 0.3s ease-in-out;
  }

  .section.inicio-cadastro .kv.desktop .packshot:hover {
    transition: all 1s ease-in-out;
    transform: scale(1.1);
  }

  .section.inicio-cadastro .kv.desktop .img-aceleradores {
    max-width: 500px;
  }

  .section.inicio-cadastro .adjust-overflow2 {
    overflow: hidden;
  }

  .section.inicio-cadastro .kv.desktop .boxgeral {
    max-width: 280px;
  }
}*/


/*Ajuste de Home logado*/
/*.section.inicio-cadastro .adjust-loginconectado .kv.desktop .boxgeral {
    top: 13%;
    right: 10%;
    max-width: 500px;
    width: 27%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .comoparticipar-premio {
  right: 39%;
  top: 13%;
  max-width: 165px;
  width: 13%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .selo {
  top: 13%;
  left: 8%;
  width: 100%;
  max-width: 370px;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .aceleradores {
  bottom: -3.3%;
  right: 4%;
  width: 17%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .packshot {
  bottom: -3%;
  left: 4.1%;
  width: 72%;
}*/

/*Ajuste de Home logado*/
.section.inicio-cadastro .adjust-loginconectado .kv.desktop .boxgeral {
  top: 13%;
  right: 15%;
  max-width: 330px;
  width: 23%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .comoparticipar-premio {
  right: 39%;
  top: 13%;
  max-width: 200px;
  width: 16%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .selo {
  top: 14%;
  left: 10%;
  width: 30%;
  max-width: 370px;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .aceleradores {
  bottom: 7.7%;
  right: 4%;
  width: 16%;
}

.section.inicio-cadastro .adjust-loginconectado .kv.desktop .packshot {
  bottom: 5%;
  left: 20%;
  width: 61%;
}

/* Section COMO PARTICIPAR */
.section.comoparticipar {
  position: relative;
  background: #fcf4d4;
  box-shadow: 0px 0px 50px 0px #fab620 inset;
}

.section.comoparticipar .padding {
  padding: 4rem 2rem 4rem 2rem !important;
  max-width: 1453px !important;
}

.section.comoparticipar  .header-section {
  margin-bottom: 1rem!important;
}
@media (max-width: 991px){
  .section.comoparticipar  .header-section {
    margin-bottom: 3rem!important;
  }
}

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

.section.comoparticipar .comoparticipar-produtos,
.section.comoparticipar .comoparticipar-premios {
  max-width: 338px;
  padding: 0 1rem !important;
}

.section.comoparticipar .comoparticipar-premios img {
  max-width: 260px;
  /*max-width: 201px;*/
  margin: auto;
}

.section.comoparticipar .header-section h2 {
  max-width: max-content;
  padding: 1rem;
  border-radius: 1rem;
  background: #425095;
  font-size: 3.2rem;
  color: #fff;
  margin: auto;
}

.section.comoparticipar .title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  color: #425095;
  transition: all 0.7s ease-in-out;
  position: relative;
  display: inline-block;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0px;
  margin-bottom: 2rem;
}

.section.comoparticipar .description {
  font-family: "Grotesca", Arial, sans-serif;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-top: 0;
  color: #425095;
  font-weight: 400;
  text-transform: none;
}

.section.comoparticipar .step.passo3 .description {
  max-width: 28ch;
  margin: auto;
}

.section.comoparticipar .description a {
  color: var(--c-white);
}

.section.comoparticipar .steps-container {
  padding: 0 !important;
}

.section.comoparticipar .steps-boxes {
  width: 100%;
  margin: auto;
  /*background: #425095;*/
  background: var(--c-bluedark1);
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 4rem;
}

.section.comoparticipar .steps-boxes .title {
  font-size: 25px;
  line-height: 1;
  color: #ffc400;
}

.section.comoparticipar .steps-boxes .btn.btn-gradient-yellow img {
  max-width: none !important;
}

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

.section.comoparticipar .steps-boxes .step .title {
    font-size: 1.8rem !important;
    margin: 2rem 0px 2rem 0 !important;
}

.section.comoparticipar .steps-boxes .step .step-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  max-width: 400px;
  padding: 0 0.4rem;
  height: 100%;
  background: transparent;
  border-radius: 1rem;
  border: 0px solid rgba(0, 149, 255, 0.47);
  /*  background: rgba(0, 89, 255, 0.07);*/
  backdrop-filter: blur(0px);
  transition: all 0.5s ease-in-out;
}

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

.section.comoparticipar .steps-boxes .step .step-box .btn {
  font-size: 1.7rem !important;
  height: 43px;
  padding: 1.3rem 0rem 1.2rem 0rem;
}

.section.comoparticipar .steps-boxes .step .step-box .btn img {
  position: relative;
  top: -1px;
}

.section.comoparticipar .steps-boxes .step .step-box .btn i {
  font-size: 2.7rem;
  position: relative;
  top: 4px;
  line-height: 1;
  left: -2px;
  margin-top: -8px;
}

.section.comoparticipar .steps-boxes .step .step-box.destaque {
  transition: all 0.5s ease-in-out;
  padding: 0 !important;
}

.section.comoparticipar .steps-boxes .step .step-box .icone {
  position: relative;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

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

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

.section.comoparticipar .steps-boxes .step .step-box:hover h3.title {
  transition: all 0.3s ease-in-out;
  transform: scale(1.1);
}

.section.comoparticipar .steps-boxes .step .step-box:hover p.description {
  transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step-box-premios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.comoparticipar .steps-boxes .title-premio {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 1306px) {
  .section.comoparticipar .step.passo3 .btn img {
    /*display: none;*/
  }
}

@media (max-width: 991px) {
  .section.comoparticipar .step.passo3 .btn img {
    margin-right: 5px;
  }

  .section.comoparticipar .steps-boxes .step .step-box,
  .section.comoparticipar .steps-boxes .step .step-box.destaque {
    margin: auto;
    margin-top: 1rem;
  }

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

  .section.comoparticipar .steps-boxes {
    max-width: 600px;
    margin: 3.2rem auto;
  }

  .section.comoparticipar .comoparticipar-produtos,
  .section.comoparticipar .comoparticipar-premios {
    max-width: 400px;
    margin: auto;
  }

  .section.comoparticipar .comoparticipar-produtos {
    margin-top: 3.2rem;
  }

  .section.comoparticipar .comoparticipar-produtos p {
    max-width: 24ch;
    margin: auto;
  }
}

@media (max-width: 991px) {
  .section.comoparticipar .header-section {
    margin-bottom: 1rem !important;
  }

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

  .section.comoparticipar p.description {
    font-size: 2rem;
    letter-spacing: -1px;
  }
}

/* Section PRÊMIOS */
.section.premios {
  position: relative;
  background: transparent;
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}
@media (max-width: 991px){
  .section.premios {
    background: url(../img/bkg_430.webp) no-repeat center center;
    background-size: cover;
  }
}

.section.premios .padding {
  position: relative;
  padding: 5rem 3rem !important;
}

.section.premios .content-section {
  position: relative;
}

.section.premios .box-premios-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: min-content;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /*max-width: 900px;*/
  margin: auto;
  margin-top: 4rem;
}

.section.premios .box-premio {
  /*display: flex;*/
  width: 100%;
}

.section.premios .box-premio img {
  max-width: 100%;
}

.section.premios .box-premio:last-child {
  /*min-height: 100%;*/
  /*grid-row: span 2;*/
  /*grid-column: -1 / 1;*/
}

@media (max-width: 700px) {
  .section.premios .img-desktop {
    display: none;
  }

  .section.premios .img-mobile {
    display: block;
  }

  .section.premios .box-premios-container {
    display: flex;
    flex-direction: column;
  }

  .section.premios .box-premio img {
    width: 100%;
    max-width: 640px;
    margin: auto;
  }
}

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

.section.produtos .bkg-black50 {
  /*background: #2690d4c9;*/
  backdrop-filter: blur(10px);
}

.section.produtos .padding {
  padding-bottom: 33rem;
}

.section.produtos .packshot {
  position: absolute;
  z-index: 2;
  bottom: 0%;
  left: 4%;
  width: 72%;
  transition: all 0.3s ease-in-out;
}

.section.produtos .img-packshot {
  width: 100%;
  max-width: 1300px;
  transition: all 0.3s ease-in-out;
}

.section.produtos .aceleradores {
  position: absolute;
  z-index: 4;
  bottom: -1%;
  right: 4%;
  width: 20%;
  transition: all 0.3s ease-in-out;
}

.section.produtos .img-aceleradores {
  width: 100%;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.section.produtos .barra {
  position: absolute;
  z-index: 1;
  bottom: -5%;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section.produtos .img-barra {
  width: 100%;
  max-width: 1920px;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

@media (max-width: 991px) {
  .section.produtos {
    /*background: url(../img/bkg1-1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom; center;
  }

  .section.produtos .padding {
    padding-bottom: 12rem !important;
  }

  .section.produtos .packshot {
    position: absolute;
    z-index: 2;
    bottom: 0%;
    left: 0%;
    width: 100%;
  }

  .section.produtos .aceleradores {
    display: none;
  }

  .section.produtos .img-aceleradores {
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease-in-out;
  }

  .section.produtos .barra {
    bottom: -0.3%;
  }
}

/*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.4rem;
  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 {
  display: flex;
  max-width: 200px;
  padding: 1rem 1rem;
  color: #fff;
  text-align: center;
  border-radius: 0.7rem;
  background: #0c152b !important;
  border: 2px solid rgba(0, 149, 255, 0.6);
}

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

#cadastro .bkg-black50 {
  backdrop-filter: blur(10px);
}

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

#cadastro p,
#cadastro p.description_small {
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-black) !important;
}

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

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

#cadastro .formulario {
  margin-top: 0;
}

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

#cadastro .custom-control-label {
  color: var(--c-black);
}

#cadastro .float-placeholder {
  color: var(--c-bluedark1);
}

#cadastro .custom-checkbox .custom-control-label::before {
  border: 1px solid var(--c-bluedark1) !important;
}

#cadastro .custom-control-input:checked ~ .custom-control-label::before {
  color: var(--c-bluedark1);
  border-color: var(--c-bluedark1);
  background-color: var(--c-bluedark1);
}

@media (max-width: 991px) {
  #cadastro {
    /*background: url(../img/bkg1-1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom; center;
  }

  #cadastro .formulario {
    padding: 4rem 3rem;
  }

  #cadastro .formulario .formsteps-btn-prev {
    width: 100%;
  }

  #cadastro .formulario .formsteps-btn-next {
    width: 100%;
  }
}

.section.cadastro .titulo {
  font-family: "Grotesca", 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 PESSOAL - SUCESSO */
.section.cadastrosucesso {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat top center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat top center;*/
  background-size: cover;
}

.section.cadastrosucesso .bkg-black50 {
  /*background: #2690d4c9;*/
  backdrop-filter: blur(0px);
}

.section.cadastrosucesso p.description {
  /*    color: var(--c-red1);*/
  font-family: "Grotesca", Arial, sans-serif;
}

.section.cadastrosucesso p.description_small {
  font-family: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", Arial, sans-serif;
}

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

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

@media (max-width: 991px) {
  .section.cadastrosucesso {
    /*background: url(../img/bkg2-1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom center;
    background-size: 100% auto;
  }
}

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

/* SECTION - REGULAMENTO */
.section.rtp {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

.section.rtp .bkg-black50 {
  /*background: #2690d4c9;*/
  backdrop-filter: blur(0px);
}

.section.rtp .bkg-black50.black50_bluelight {
  background: #139af1d1;
  backdrop-filter: blur(0px);
}

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

.section.rtp strong {
  font-family: "Grotesca", 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: "Grotesca", 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;
  }
}

/* SECTION - DÚVIDAS */
.section.duvidas {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

.section.duvidas .bkg-black50 {
  /*    background: #2690d4c9;*/
  backdrop-filter: blur(0px);
}

.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: #062d8f;
}

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

.section.duvidas .pesquisar {
  font-size: 1.5rem;
  line-height: 1.7rem;
  color: var(--c-white);
  margin: 0px 0 10px 0;
  font-family: "Grotesca", 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: 1.7rem;
  line-height: 1.2;
  letter-spacing: 0px;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: none;
  padding: 2rem 1rem 2rem 0;
  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;*/
  text-shadow: 0px 0px 11px #fdc200 !important;
}

.section.duvidas [aria-expanded="true"].faq-item {
  color: var(--c-yellow1);
  /*background: transparent;*/
  /*font-family: 'Grotesca', Arial, sans-serif;*/
  /*font-weight: 800;*/
  transition: all 0.3s ease-in-out;
  text-shadow: 0px 0px 11px #fdc200 !important;
}

.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: 0.7rem 1rem 0.7rem 1rem;
  border-radius: 100px;
}

.section.duvidas .faq-item:hover::before {
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  box-shadow: 0px -1px 13px 3px rgb(255 212 0);
  transition: all 0.3s ease-in-out;
}

.section.duvidas [aria-expanded="true"].faq-item:before {
  color: var(--c-bluedark1);
  background: var(--c-yellow1);
  box-shadow: 0px -1px 13px 3px rgb(255 212 0);
  transition: all 0.3s ease-in-out;
  transform: rotate(-180deg) scale(1.3);
}

.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-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
  /*background: #1e1d1c;*/
  border-radius: 10px;
  font-style: inherit;
}

.section.duvidas .faq-item + div strong {
  font-family: "Grotesca", 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);
}

/* ---------- 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: 0 0 2rem 0;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--c-white);
  font-family: "Grotesca", 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 0 0.2rem 0;
  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 0 0 0.7rem;
  border: none;
  margin: 12px 0px 6px 0px;
  /*    font-size: 1.4rem;*/
  line-height: 1;
  background: var(--c-gray);
}

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

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

.section.duvidas .descricao {
  font-family: "Grotesca", 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-white);
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 800;
  margin-top: 50px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: var(--c-bluelight1);
  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;*/
  text-decoration: none;
}

.section.duvidas .box-contact a.btn:focus,
.section.duvidas .box-contact a.btn:hover {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

.section.duvidas .box-contact:hover .img-iconcontact {
  -webkit-animation-name: pulseUm;
  animation-name: pulseUm;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  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-bluedark1);
}

.footer p {
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
}

.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 {
  display: block;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--c-white);
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}

.footer .links a:hover {
  color: var(--c-yellow1);
  text-decoration: none;
  text-shadow: 0px 0px 11px #fdc200;
}

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

.footer .texto-legal a:hover {
  text-decoration: none;
  color: var(--c-yellow1);
  text-shadow: 0px 0px 11px #fdc200;
}

.footer .redes {
  color: var(--c-white);
  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-white);
  transition: all 0.3s ease-in-out;
}

.footer .redes a.icone-redes svg:hover {
  transform: scale(1.2);
  fill: var(--c-yellow1);
  transition: all 0.3s ease-in-out;
  /*    text-shadow: 0px 0px 11px #fdc200;*/
}

.footer .redes a.icone-redes i {
  color: var(--c-white);
  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;
  /*    text-shadow: 0px 0px 11px #fdc200;*/
}

.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 #ffffff50;
  text-align: center;
}

.footer.tarja {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0px;
  /**/
  background: rgb(255, 58, 40);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 58, 40, 1) 0%,
    rgba(222, 0, 3, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3a28", endColorstr="#de0003", GradientType=1);
  box-shadow: inset 0 0 4px 3px rgb(159 0 0);
}

.footer.tarja.tarja-erro {
  margin-top: -20rem;
}
@media (max-width: 991px){
  .footer.tarja.tarja-erro {
    margin-top: 0rem;
  }
}

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

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

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

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

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

  .footer .padding {
    margin: 0 auto;
  }

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

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

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

  .footer .links a {
    font-size: 2rem !important;
    text-transform: none !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    margin-left: 0px !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;
  }
}

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

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

@media (min-width: 992px) and (max-width: 1149px) {
  .footer .links a {
    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: 0.7rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-black);
}

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

select.form-control {
  padding: 1.5rem 2rem 1.5rem 2rem;
  height: auto;
  border-radius: 0.7rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Grotesca", 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: 0.7rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Grotesca", 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: 0.7rem;
  border: none;
  margin: 15px 0px 6px 0px;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--c-gray);
  font-family: "Grotesca", 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.5rem 1.5rem 1.5rem 1.5rem;
  height: auto;
  border-radius: 0 0.7rem 0.7rem 0;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--c-yellow1);
  color: var(--c-bluedark1);
}

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

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

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

.float-placeholder {
  font-size: 1rem;
  line-height: 1;
  text-align: left;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  color: #ffcb00;
  background: transparent;
  border-radius: 0.4rem;
  z-index: 2;
  padding: 0 0 0 0;
  display: block;
  position: absolute;
  top: 0px;
  left: 1.5rem;
  letter-spacing: 0px;
  text-transform: none;
}

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

.custom-control-label {
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  padding: 0 0 0 1rem;
  font-size: 1.3rem;
  line-height: 1.7;
  /*    line-height: 1.4;*/
  padding-top: 3px;
}

.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-yellow1);
  border-color: var(--c-yellow1) !important;
  background-color: var(--c-yellow1);
  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: transparent;
  color: var(--c-form);
  border: 1px solid var(--c-yellow1) !important;
  width: 1.5rem;
  height: 1.5rem;
}

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

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

[class*="vld-"] + .error {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  margin-top: 1px;
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  color: #ff494b;
}

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.2rem;
  line-height: 1;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  margin-top: 1px;
  margin-bottom: 8px;
  padding: 0.3rem 0 0 1.5rem;
  background: transparent;
  color: #ff494b;
}

/* 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.2rem;
  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: "Grotesca", 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: var(--c-red1);
  /* color: var(--c-white); */
  color: transparent;
}

[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],
.eye [data-bs-togglepassword] {
  height: 25px;
  width: 25px;
  line-height: 30px;
  text-decoration: none !important;
  position: absolute;
  color: var(--c-bluelight1);
  top: 21px;
  right: 25px;
  z-index: 1;
  font-size: 2rem;
  cursor: pointer;
}

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

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

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

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

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

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-red1) !important;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
}

/* Formulario steps */

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

[data-plugin="upload"] .upload-preview {
  font-family: "Grotesca", 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;
  overflow: hidden;
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  /*background: url(../img/bkg1-1.png) no-repeat center center;*/
  background-size: cover;
}

.section.ganhadores table.table tbody td {
  background: var(--c-bluedark2);
}

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

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

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

.section.ganhadores .box .content span.title {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  line-height: 1;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-brown1);
  padding: 0 0 0.5rem 0;
  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: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  color: var(--c-white);
  padding: 0 0 2rem 0;
  text-align: left;
  transition: all 0.7s ease-in-out;
}

.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 0 0 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: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  background: var(--c-yellow1);
  border-color: var(--c-yellow1);
  margin-top: 5px;
}

.section.ganhadores .embreve {
  padding: 2rem 4rem;
  border-radius: 0.7rem;
  font-size: 1.7rem;
  line-height: 1.4;
  color: var(--c-yellow1);
  border: 1px solid;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  background: var(--c-bluedark1);
  border-color: var(--c-yellow2);
  margin-top: 25px;
  text-shadow: 0px 0px 11px #fdc200;
}

/* Filtro letra */
.section#ganhadores button.btn {
  position: relative;
  font-size: 1.6rem;
  line-height: 15px;
  margin: 3px 1px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ffffff;
  color: var(--c-red2);
  font-family: "Grotesca", 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 {
    /*background: url(../img/bkg1-1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom; center;
    background-size: 100% auto;
  }

  .section#ganhadores .conteudo {
    position: relative;
    padding: 1rem;
    height: inherit;
    background: transparent;
    background-size: 100% auto;
  }

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

  .section#ganhadores table.table tbody tr td:last-child {
    padding: 0.65rem 0.65rem 2rem 0.65rem !important;
  }
}

/* __Elementos | Ganhadores */
.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

.section.ganhadores .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: 0.5;
}

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

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

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

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

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

.section.meuextrato .bkg-black50 {
  /*    background: #2690d4c9;*/
  backdrop-filter: blur(0px);
}

.section.meuextrato .padding {
  max-width: 100%;
}

.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 .thead-dark th {
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 1.5rem 1rem 1.5rem 1rem;
  vertical-align: middle;
}

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

.section.meuextrato .img-premio {
  position: relative;
  width: 100%;
  max-width: 150px;
}

.section.meuextrato .aprovado {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #11c76f;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .aprovado-pagamento {
  display: flex;
  flex-direction: column;
  color: #00ff08;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .aprovado span {
  text-transform: none !important;
  font-weight: 500;
}
.section.meuextrato .aprovado-pagamento span {
  text-transform: none !important;
  font-weight: 500;
}

.section.meuextrato .reprovado {
  color: #ff0000;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .aguardando {
  color: #ffc400;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .invalidado {
  color: #ff6200;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .pendente {
  color: #00aaff;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.section.meuextrato .bkg-app {
  background: #094adc;
}

.section.meuextrato .bkg-site {
  background: #072262;
}

.section.meuextrato .bkg-bot {
  background: #1a5495;
}

.section.meuextrato table.table .title-table-mobile {
  /*    display: inline-block !important;*/
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.6;
  border-radius: 6px;
  background: transparent;
  text-transform: uppercase;
  padding: 2px 30px 2px 30px;
  border: 0px solid #fc0034;
  margin-bottom: 8px;
}

.section.meuextrato .lista-cupons {
  position: relative;
}

.section.meuextrato .lista-cupons th {
  position: relative;
}

.section.meuextrato .lista-cupons th.sorteio-mensal:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 7px;
  border: 3px solid #fc0034;
}

.section.meuextrato .lista-cupons .title-table-mobile.sorteio-mensal {
  color: #ffffff;
  padding: 7px 20px;
  border: 3px solid #fc0034;
}

.section.meuextrato .lista-cupons th.sorteio-final:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 7px;
  border: 3px solid #01a350;
}

.section.meuextrato .lista-cupons .title-table-mobile.sorteio-final {
  color: #ffffff;
  padding: 7px 20px;
  border: 3px solid #01a350;
}

.section.meuextrato .lista-cupons th.sorteio-tixan:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 7px;
  border: 3px solid #e83dab;
}

.section.meuextrato .lista-cupons .title-table-mobile.sorteio-tixan {
  color: #ffffff;
  padding: 7px 20px;
  border: 3px solid #e83dab;
}

.section.meuextrato .lista-cupons th.premio-instantaneo:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 7px;
  border: 3px solid #feb929;
}

.section.meuextrato .lista-cupons .title-table-mobile.premio-instantaneo {
  color: #ffffff;
  padding: 7px 20px;
  border: 3px solid #feb929;
}

.section.meuextrato .box-gabarito {
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 149, 255, 0.47);
  backdrop-filter: blur(4px);
  padding: 2rem 2rem;
  max-width: 650px;
  /*max-width: 350px;*/
  margin: auto;
  background: var(--c-bluedark1);
}

.section.meuextrato .box-gabarito-cor {
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 149, 255, 0.47);
  backdrop-filter: blur(4px);
  padding: 1rem 1rem;
  max-width: 550px;
  margin: auto;
  background: var(--c-bluedark1);
}

.section.meuextrato .box-gabarito-cor img {
  margin-left: 5px;
  margin-right: 5px;
}

.section.meuextrato .box-gabarito-cor .descricao {
  font-size: 1.5rem;
  line-height: 1.3;
  display: inline-block;
  padding: 1rem;
}

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

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

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

@media (max-width: 991px) {
  .section.redefinirsenha {
    position: relative;
    /*background: url(../img/bkg1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom; center;
    background-size: 100% auto;
  }

  .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 .form-control {
  border-color: var(--c-red1);
}

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

/* SECTION - MEUS DADOS */
.section.meusdados {
  position: relative;
  /*    background-color: var(--c-yellow1);*/
}

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

.section.meusdados .eye [data-bs-togglepassword] {
  top: 30px;
  right: 32px;
}

.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.meusdados .btn {
  box-shadow: none;
  text-shadow: none;
}

.section.meusdados .float-placeholder {
  color: var(--c-yellow1) !important;
}

.section.meusdados .custom-control-label {
  color: var(--c-white) !important;
}

#frm-meusdados .custom-checkbox .custom-control-label::before {
  border: 1px solid var(--c-yellow1) !important;
  background-color: var(--c-bluedark1) !important;
}

#frm-meusdados .custom-control-input:checked ~ .custom-control-label::before {
  color: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
  background-color: var(--c-yellow1) !important;
}

/* 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 {
  position: relative;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
  color: var(--c-white);
  background: var(--c-red2);
  border-radius: 5px;
  padding: 1.6rem 2rem 1.1rem 2rem;
  border: none;
  border-radius: 0px;
}

table.table tbody td {
  position: relative;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  border: none;
  background: var(--c-bluedark1);
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0;
  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: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 0.7rem;
  padding: 0 2.5rem 1rem 2.5rem;
  background: transparent;
  color: var(--c-yellow1);
}

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: 1.6rem;
  line-height: 1;
  background: var(--c-yellow1);
  color: var(--c-black);
  padding: 3rem 2rem 3rem 2rem;
  text-transform: none;
  border-radius: 0;
  border: 0 !important;
  text-transform: uppercase;
  /**/
  background-color: transparent;
  color: var(--c-yellow1);
  text-shadow: 0px 0px 11px #fdc200;
  padding: 2rem 2rem 2rem 2rem;
  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: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-yellow1);
  line-height: 1.5;
}

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

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

table.table tbody td .aguardando {
  font-family: "Grotesca", 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: "Grotesca", Arial, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.6;
    border-radius: 100px;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--c-yellow1);
    text-transform: uppercase;
  }

  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: 0;
    border-bottom-right-radius: 0;
    font-weight: 400 !important;
  }

  table.table tbody tr td:last-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    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 .kv.desktop .selo {
  z-index: 3;
  top: 10%;
  left: 29%;
}

#erro .bkg-black50 {
  backdrop-filter: blur(5px);
  z-index: 1;
}

#erro .padding {
  padding: 0;
}

#erro .kv.desktop .bkg {
  left: inherit !important;
}

#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: "Grotesca", 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: "Grotesca", 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: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
}

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

@media (max-width: 991px) {
  #erro {
    position: relative;
    /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
    /*background: url(../img/bkg1-1.png) no-repeat center center;*/
    background-size: cover;
  }

  #erro .padding {
    padding: 3rem 3rem 3rem 3rem !important;
  }

  #erro .content-section {
    height: 100vh !important;
  }

  #erro .texto {
    position: relative;
    font-size: 20px;
    line-height: 25px;
  }

  #erro .titulo {
    margin-bottom: 10px !important;
  }
}

/* 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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-yellow1);
  font-size: 15px;
  line-height: 17px;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
}

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

#img1 .arquivo-carregado,
#img1 .filename {
  font-size: 13px;
  color: var(--c-white);
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  background: transparent;
  margin-top: 4px;
}

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

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

  #img1 .arquivo-carregado,
  #img1 .filename {
    font-size: 13px;
    color: var(--c-white);
    font-family: "Grotesca", Arial, sans-serif;
    font-weight: 400;
    background: transparent;
    margin-top: 4px;
  }
}

/*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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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: "Grotesca", 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-bluelight2);
  border: 2px solid #ffffff;
  background-size: cover;
}

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

.section.cadastro-cupom .padding {
  padding: 12rem 10;
}

.section.cadastro-cupom .content-section {
  width: 90%;
  margin: auto;
}

.section.cadastro-cupom .box {
  background: transparent;
  padding: 0px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.section.cadastro-cupom .responsabilidade {
  background: var(--c-bluedark3);
  padding: 2rem;
  position: relative;
  border-radius: 1rem;
  color: var(--c-white);
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section.cadastro-cupom .responsabilidade i {
  color: var(--c-yellow1);
  text-shadow: 0px 0px 11px #fdc200;
}

.section.cadastro-cupom .carousel .btn {
  font-size: 1.3rem;
}

.section.cadastro-cupom .titulo-step {
  font-family: "Grotesca", 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-bs-togglepassword] {
  top: 30px;
}

.section.cadastro-cupom .enviar .vld-img.vld-error {
  font-size: 1.5rem;
  line-height: 23px;
  color: #e90a2a;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 400;
}

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

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

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

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

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

#frm-cadastrocupom table.table tbody td i {
  display: none !important;
}

#frm-cadastrocupom .custom-control-label {
  display: contents;
}

#frm-cadastrocupom .custom-control-label::before,
#frm-cadastrocupom .custom-control-label::after {
  opacity: 0;
}

#frm-cadastrocupom .custom-control-label {
  display: contents;
}

#frm-cadastrocupom .custom-control-label::before,
#frm-cadastrocupom .custom-control-label::after {
  opacity: 0;
}

.cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
  display: contents;
}

.cadastro-cupom table.table th {
  background-color: transparent;
  color: var(--c-yellow1);
  text-shadow: 0px 0px 11px #fdc200;
  padding: 2rem 2rem 2rem 2rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section.cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .section.cadastro-cupom {
    /*background: url(../img/bkg1-1_mobile.png) no-repeat top center;*/
    background: url(../img/bkg_991.webp) no-repeat bottom; center;
  }

  .section.cadastro-cupom .content-section {
    width: 100%;
  }

  .section.cadastro-cupom .titulo {
    text-align: center;
  }

  .section.cadastro-cupom .total {
    margin-bottom: 15px;
  }

  .section.cadastro-cupom table.table .title-table-mobile {
    text-transform: uppercase !important;
  }

  .section.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-bluelight1);
  background: transparent;
  border-radius: 100px;
  top: 18px;
  right: 20px;
  z-index: 1;
  font-size: 21px;
  line-height: 40px;
  cursor: pointer;
}

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

/* Section PRODUTOS LISTA */
.section.produtos .subcategoria {
  padding: 0px;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-family: "Grotesca", 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: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  padding: 11px 8px 10px 8px;
  color: #cd171d;
  background: #ffc800;
  text-transform: none;
  border-radius: 0.7rem 0.7rem 0 0;
  margin-bottom: 0px;
  letter-spacing: 0px;
  height: 84px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section.produtos.produtos_lista .lista-produtos .item .nome p.title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}

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

.section.produtos.produtos_lista .lista-produtos .item .logo-marca {
  position: relative;
  padding: 15px 15px;
  background: var(--c-white);
  border-radius: 0 0 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-selo2x {
  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: absolute;
  top: 5%;
  right: 3%;
  z-index: 9;
  margin-top: 0px;
  width: 350px;
  margin-bottom: 0;
}

#erro .countdown .digits {
  background: #e0dbdc !important;
  border-radius: 6px;
  padding-bottom: 10px;
  padding-right: 2px;
  padding-left: 2px;
  font-family: "Grotesca", 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;
}

#erro .countdown .digits span {
  color: #000000;
}

@media (max-width: 991px) {
  #erro .countdown {
    position: relative;
    top: inherit;
    bottom: inherit;
    right: inherit;
    z-index: 9;
    margin-bottom: inherit;
    margin-top: inherit;
    width: 100%;
  }
}

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

#erro .countdown .descricao {
  font-size: 1.3rem;
  padding: 0px;
  line-height: 1.3;
  color: var(--c-yellow1);
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: none;
  text-shadow: 0px 0px 11px #fdc200;
}

#erro .countdown .descricao2 {
  font-size: 1.4rem;
  padding: 0px;
  line-height: 1.3;
  color: var(--c-yellow1);
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: none;
  text-shadow: 0px 0px 11px #fdc200;
}

#erro .countdown .digits div {
  font-size: 50px;
  color: #000000;
  background: transparent;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
  width: 70px;
  height: 60px;
  line-height: 76px;
  z-index: 1;
  position: relative;
}

/* Section Resgate */
.section#comoresgatar {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

.section#comoresgatar .padding {
  max-width: 1340px;
}

.section#comoresgatar .faixa {
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .section#comoresgatar .faixa {
    padding: 0;
  }
}

.section#comoresgatar .steps-boxes.fluxo {
  display: inline-block;
  width: 100%;
  max-width: 1920px;
  margin: 20px 0 0 0;
}

@media (max-width: 991px) {
  .section#comoresgatar .steps-boxes.fluxo {
    width: 100%;
  }
}

.section#comoresgatar .steps-boxes .step {
  position: relative;
  display: inline-block;
  width: 33%;
  padding: 0 30px;
  vertical-align: top;
}

@media (max-width: 991px) {
  .section#comoresgatar .steps-boxes .step {
    width: 100%;
    padding: 0;
  }
}

/*.section#comoresgatar .steps-boxes .step:before {
  display: none;
}

.section#comoresgatar .steps-boxes .step::after {
  content: "\e9c3";
  position: absolute;
  top: -20px;
  right: -70px;
  font-family: "icomoon", Arial, sans-serif;
  font-size: 70px;
  color: #ffffff;
}

.section#comoresgatar .steps-boxes .step.no-arrow::after {
  opacity: 0;
}

@media (max-width: 991px) {
  .section#comoresgatar .steps-boxes .step::after {
    position: relative;
    top: inherit;
    right: inherit;
    display: inline-block;
    margin: 25px 0;
    transform: rotate(90deg);
  }

  .section#comoresgatar .steps-boxes .step.no-arrow::after {
    opacity: 1;
  }
}

.section#comoresgatar .steps-boxes .step:last-of-type::after {
  display: none;
}*/

.section#comoresgatar .steps-boxes .step .number {
  display: inline-block;
  margin: 0 0 10px 0;
  width: 60px;
  height: 60px;
  color: #002f87;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-size: 45px;
  line-height: 57px;
  border: 0;
  border-radius: 100%;
  background: #feb929;
  transition: all 0.3s ease-in-out;
}

.section#comoresgatar .steps-boxes .step .description {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-family: "Grotesca", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-transform: none;
}

.section#comoresgatar .steps-boxes .step:hover .image img {
  transform: scale(1);
}

@media (max-width: 991px) {
  .section#comoresgatar .steps-boxes .step .description {
    margin: 0;
  }
}

.section#comoresgatar .steps-boxes .step .description a.btn {
  font-size: 20px;
  color: #ffffff !important;
}

.section#comoresgatar .steps-boxes .step .description span {
  font-size: 22px;
  color: #feb929;
  text-transform: uppercase;
}

.section#comoresgatar .steps-boxes .step .description .destaque {
  color: #fec734;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-weight: normal;
}

.section#comoresgatar .steps-boxes .step .description a:hover {
  text-decoration: none !important;
}

.section#comoresgatar .steps-boxes .step .print {
  padding: 0 20px;
}

.section#comoresgatar .button {
  padding: 40px 20px;
  border-radius: 10px;
}

.section#comoresgatar .infos {
  padding: 15px;
  margin: 20px auto 0 auto;
  color: #ffffff;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .section#comoresgatar .infos {
    font-size: 36px;
  }
}

.section#comoresgatar .infos .destaque {
  color: #ffffff;
  font-size: 24px;
  line-height: 110%;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-weight: normal;
  text-transform: uppercase;
}

.section#comoresgatar .infos .destaque strong {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-weight: normal;
}

.section#comoresgatar .infos a {
  color: #fc0034;
  text-decoration: underline;
}

.section#comoresgatar .infos a:hover {
  text-decoration: none;
}

.section#comoresgatar .logo-plataforma {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.section#comoresgatar .logo-plataforma img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section#comoresgatar .logo-plataforma:hover img {
  transform: scale(1.05);
}

/* Ajustes de cookies*/
.cmp-theme {
  font-family: "Grotesca", Arial, sans-serif !important;
  font-weight: 400 !important;
}

.cc-message-container {
  font-size: 1.3rem !important;
  line-height: 1 !important;
  font-family: "Grotesca", Arial, sans-serif !important;
  font-weight: 400 !important;
}

.cc-banner .cc-compliance {
  height: auto;
  padding: 24px 0;
  flex-direction: row;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  font-family: "Grotesca", Arial, sans-serif !important;
  font-weight: 400 !important;
}

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

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

/*Central de mensagens*/
.section.central-mensagem {
  /*background: url(../img/bkg2-1.png) no-repeat bottom center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat bottom center;*/
  background-size: cover;
}

.btn-login-mobile::before {
  content: "JÁ POSSUO CADASTRO";
  position: absolute;
  font-size: 9px;
  left: 50%;
  bottom: -4px;
  width: 100%;
  transform: translateY(100%) translateX(-50%);
}

@media (max-width: 580px) {
  .user2.mobile .btn-green {
    font-size: 10px !important;
    padding: 1rem 1rem 1rem 1rem !important;
    border-radius: 0.2rem;
  }

  .btn.btn-green:hover {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  #menu .navbar-toggler {
    padding: 26px 15px 26px 15px !important;
  }
}

/* Geral */
.w-full {
  width: 100% !important;
}

.underline {
  text-decoration: underline !important;
}

/* Button Voltar */
.btn-voltar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

@media (max-width: 748px) {
  .btn-voltar {
    position: static;
    margin-bottom: 4rem;
  }
}

/* Cadastro Manual */
.other-options-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: 4rem 0;
}

@media (max-width: 991px) {
  .other-options-container {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Cadastro QR CODE */
.section.cadastro-qrcode #img1 svg,
.section.selecao #img1 svg {
  fill: var(--c-white);
  width: 100%;
  height: 125px;
}
.section.cadastro-qrcode #img1 .btn {
  width: 100%;
  max-width: 300px;
  /*max-width: 200px;*/
  margin: auto;
}

.section.cadastro-qrcode #img1 .upload-preview {
  background: var(--c-bluelight5);
  max-width: 200px;
}

/* Seleção */
.section#selecao {
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

#selecao .upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: var(--c-bluelight5);
  border: 2px solid #ffffff;
  background-size: cover;
  border-radius: 7px;
  transition: transform 500ms ease-in-out;
  padding: 2rem;
}

#selecao .upload-preview:hover {
  transform: scale(1.1);
}

.loading.infosCupom input.form-control {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #ffffff 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1s infinite ease-in-out;
  border-color: #ddd;
}

.infosCupom .col-lg-6.absolute {
  left: 50%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media screen and (max-width: 991px) {
  #selecao .row {
    gap: 6rem;
  }
}

/* Title Shadow */
.title-shadow {
  color: #ffcb00 !important;
  text-shadow: 0px 0px 17.8px #ffc400 !important;
}

/* Semana Turbo */
.section.semanaturbo {
  position: relative;
  /*background: url(../img/bkg2-1.png) no-repeat center center;*/
  /*background: url(../img/bkg_1920.webp) no-repeat center center;*/
  background-size: cover;
}

.turbo-tables {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.turbo-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.turbo-table th,
.turbo-table td {
  padding: 0.5rem;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-size: 1.7rem !important;
  font-weight: 900;
  text-align: center;
  color: var(--c-yellow1);
  background: rgba(0, 89, 255, 0.07);
  border: 1px solid rgba(0, 149, 255, 0.47);
  text-shadow: 0px 0px 17.8px #ffc400;
  backdrop-filter: blur(1px);
  height: 4rem !important;
}

.turbo-table td.number {
  font-size: 2rem !important;
}

.turbo-table th.transparent,
.turbo-table td.transparent {
  background: none;
  border: none;
}

.turbo-table .legend {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .turbo-tables {
    gap: 1.5rem;
  }
  .turbo-table table {
    display: block;
    overflow-x: auto;
  }
}

.box-semana-turbo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 149, 255, 0.47);
  background: rgba(0, 89, 255, 0.07);
  backdrop-filter: blur(4px);
  margin: auto;
  margin-bottom: 2rem;
  width: auto;
}

.box-semana-turbo p {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}

.box-aviso-semana {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 149, 255, 0.47);
  background: rgba(0, 89, 255, 0.07);
  backdrop-filter: blur(4px);
}

.box-aviso-semana p {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  color: var(--c-white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

/* Index */
.main.index {
  /*background-image: url("../img/bkg2-1.png");*/
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

/* Cadastro novo */
.section.inicio-cadastro .formulario {
  padding-top: 14rem !important;
}

.section.inicio-cadastro .btn-voltar {
  position: static !important;
  color: var(--c-purple1) !important;
  text-transform: none !important;
  gap: 1rem !important;
  transition: all 0.3s ease !important;
  margin-bottom: 1rem !important;
  padding-left: 0 !important;
}

.section.inicio-cadastro .btn-voltar:hover,
.section.inicio-cadastro .btn-voltar:focus {
  transition: all 0.3s ease !important;
  transform: scale(1.1) !important;
}

.section.inicio-cadastro .btn-voltar svg {
  width: 18px !important;
  height: 13px !important;
}

.section.inicio-cadastro .btn-voltar svg path {
  stroke: var(--c-purple1) !important;
}

.section.inicio-cadastro .subtitle {
  display: flex;
  width: auto;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1.1rem;
  color: var(--c-white);
  border-radius: 5rem;
  background: var(--c-purple1);
  padding: 0.4rem 2rem !important;
  margin-bottom: 1rem;
  margin-right: auto;
  margin-left: 1rem;
}

.section.inicio-cadastro .title {
  text-transform: none !important;
}

.section.inicio-cadastro .descricao {
  font-size: 1.6rem !important;
  color: var(--c-purple1) !important;
}

.section.inicio-cadastro .esquecisenha {
  font-family: "Grotesca", Arial, sans-serif;
  color: #313131 !important;
  text-decoration: underline !important;
}

.section.inicio-cadastro .esquecisenha:hover,
.section.inicio-cadastro .esquecisenha:focus {
  text-decoration: none !important;
}

.section.inicio-cadastro .btn.btn-green {
  border-radius: 1rem !important;
}

.section.inicio-cadastro .btn.btn-green:hover,
.section.inicio-cadastro .btn.btn-green:focus,
.popup-recuperacaowhatsapp .btn.btn-green:hover,
.popup-recuperacaowhatsapp .btn.btn-green:focus,
.popup-recuperaremail .btn.btn-green:hover,
.popup-recuperaremail .btn.btn-green:focus {
  transform: scale(1.03) !important;
}

/* OTP */
.input-codigo-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.input-codigo-container.separated {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.otp-input {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  color: var(--c-purple1) !important;
  width: 100%;
  max-width: 80%;
  padding: 12px 0;
  border: 2px solid var(--c-purple1);
  border-radius: 8px;
  font-size: 2rem;
  letter-spacing: 4rem;
  text-align: center;
  outline: none;
}

.otp-input::placeholder {
  color: var(--c-purple1) !important;
  letter-spacing: 2rem;
}

.input-codigo-container .error {
  width: 80%;
}

.codigo-input {
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--c-white);
  border-radius: 1rem;
  background: transparent;
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-white);
  text-align: center;
  outline: none;
}

/* placeholder (se desejar) */
.codigo-input::placeholder {
  color: var(--c-white);
}

.reenviar-codigo-container p {
  text-align: center;
  font-size: 1.4rem !important;
  color: #313131 !important;
}

.reenviar-codigo-container p #reenviar-codigo {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.4rem !important;
  color: var(--c-black) !important;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
}

.reenviar-codigo-container p #reenviar-codigo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.codigo-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
}
.codigo-timer-icon {
  width: 20px;
  height: 20px;
}
.codigo-timer-tempo {
  font-size: 1.4rem;
  line-height: 0.8;
  font-weight: bold;
  color: #333;
  color: var(--c-purple1) !important;
}

/* Recuperar senha WhatsApp OTP */
.popup-recuperacaowhatsapp .codigo-timer-icon svg path {
  stroke: var(--c-white);
}

.popup-recuperacaowhatsapp .codigo-timer-tempo {
  color: var(--c-white) !important;
}
.popup-recuperacaowhatsapp .reenviar-codigo-container p {
  color: var(--c-white) !important;
}
.popup-recuperacaowhatsapp .reenviar-codigo-container p #reenviar-codigo {
  color: var(--c-white) !important;
}
.popup-recuperacaowhatsapp #frm-recuperacaolink-otp .descricao {
  font-size: 1.6rem !important;
}

/* Aceite Promo */
.section.aceitepromo label.error {
  color: var(--c-yellow1) !important;
  font-size: 1.2rem !important;
}

/* Reenviar cupom */
.popup-reenviarcupom #img1 {
  border-spacing: 0 15px;
}

.link-underline {
  text-decoration: underline !important;
}

.link-underline:hover,
.link-underline:focus {
  text-decoration: none !important;
}

/* Switch */
.form-switch {
  display: flex !important;
  padding-left: 0 !important;
  cursor: pointer !important;
  justify-content: flex-end !important;
}

.form-switch input {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  max-width: 32px !important;
  max-height: 16px !important;
  margin-left: 0 !important;
  cursor: pointer !important;
}

.form-switch .custom-control-label {
  font-family: "Grotesca", Arial, sans-serif;
  font-size: 2rem !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='%23021748'/%3e%3c/svg%3e") !important;
  border: 1px solid var(--c-white) !important;
}

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

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

.form-check .form-check-input {
  width: 2rem;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  max-height: 2rem;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 0.5rem !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-check .form-check-input:focus {
  border: 2px solid #fff !important;
  outline: none !important;
  box-shadow: none !important;
}

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

.form-check .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23de0003' 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;
}

.section.inicio-cadastro .form-check .form-check-input,
.section.inicio-cadastro .form-check .form-check-input:focus {
  border: 2px solid var(--c-black2) !important;
}

.section.inicio-cadastro .form-check .form-check-input:checked {
  border: 2px solid var(--c-yellow1) !important;
}

/* Otp via link whatsapp */
.link-aguardando,
.link-autenticado {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--c-purple1);
  border-radius: 1rem;
  width: auto;
  margin: auto;
}

.link-aguardando p,
.link-autenticado p {
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.link-aguardando p {
  color: var(--c-purple1);
}

.link-autenticado {
  background: var(--c-check) !important;
  border: 1px solid var(--c-check) !important;
}

.link-autenticado p {
  color: var(--c-white);
}

.popup-recuperacaowhatsapp .link-autenticado,
.popup-recuperacaowhatsapp .link-aguardando {
  background: rgb(0, 89, 255, 0.07) !important;
  border-color: rgb(0, 149, 255, 0.47) !important;
  backdrop-filter: blur(4px) !important;
}

.popup-recuperacaowhatsapp .link-aguardando svg path {
  stroke: var(--c-yellow1) !important;
}

.popup-recuperacaowhatsapp .link-aguardando p {
  color: var(--c-yellow1) !important;
}

.popup-recuperacaowhatsapp .link-autenticado svg path {
  stroke: var(--c-check) !important;
}

.popup-recuperacaowhatsapp .link-autenticado p {
  color: var(--c-check) !important;
}

.btn-escolhalink {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid var(--c-purple1);
  font-family: "GrotescaCondensed", Arial, sans-serif;
  font-weight: 900;
  color: var(--c-purple1);
  font-size: 1.7rem;
  line-height: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.popup-recuperacaogeral .btn-escolhalink {
  background: transparent;
  color: #ffcb00;
  border-color: #ffcb00;
}

.popup-recuperacaogeral .btn-escolhalink:hover,
.popup-recuperacaogeral .btn-escolhalink:focus {
  background: #ffcb00;
  border-color: #ffcb00;
  color: var(--c-bluedark1);
}

.popup-recuperacaogeral input[type="radio"]:checked + label.btn-escolhalink {
  background: #ffcb00;
  color: var(--c-bluedark1);
}

input[type="radio"]:checked + label.btn-escolhalink {
  color: var(--c-white);
  background: var(--c-purple1);
}

.section.produtos .table [data-resource] {
  display: table-row-group;
}

.section.produtos .table tr.acelerador {
  box-shadow: 0px 0px 8.1px 0px #ffc400;
  border-radius: 1rem;
}

.section.produtos .table tr.acelerador td {
  border: 2px solid #ffc400;
  padding: 1.2rem 2rem;
}
.section.produtos .table tr.acelerador td:first-child {
  border-right: 0;
}
.section.produtos .table tr.acelerador td:last-child {
  border-left: 0;
}

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

.section.produtos .table tbody tr:nth-child(odd) td {
  background: #1c348e;
}

@media screen and (max-width: 991px) {
  .section.produtos .table tr td {
    text-align: center;
  }

  .section.produtos .table tr.acelerador td:first-child {
    border-right: 2px solid #ffc400;

    border-bottom: 0;
  }
  .section.produtos .table tr.acelerador td:last-child {
    border-left: 2px solid #ffc400;
    border-top: 0;
  }
}

.section.produtos .box-gabarito-cor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 149, 255, 0.47);
  background: rgba(0, 89, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 1rem;
  max-width: 320px;
  margin: auto;
}

.section.produtos .box-gabarito-cor .descricao {
  display: flex;
  gap: 1rem;
  justify-content: baseline;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1.3;
}

/*Leitura do QR Code*/
.cadastro-qrcode-foto .container {
    text-align: center;
}
.cadastro-qrcode-foto #reader {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
}
.cadastro-qrcode-foto #qr-canvas {
  width: 100%;
  display: block;
  border: 1px solid #ffcb00;
  background-color: #0c2768;
}
.cadastro-qrcode-foto #qr-result {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--c-yellow1);
    background-color: var(--c-yellow1);
    border-radius: 5px;
    display: none;
}
.cadastro-qrcode-foto #qr-result p {
  color: var(--c-bluedark1);
  text-align: center;
  font-weight: 600;
}
.cadastro-qrcode-foto #chave-acesso {
    font-size: 18px;
    font-weight: bold;
    word-break: break-all;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdc54;
    color: var(--c-bluedark1);
    border-radius: 4px;
}
.cadastro-qrcode-foto #file-input {
    display: none;
}
.cadastro-qrcode-foto .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 5px;
}
.cadastro-qrcode-foto .btn:hover {
    background-color: #45a049;
}
.cadastro-qrcode-foto .fallback {
    margin-top: 20px;
    display: none;
}
.cadastro-qrcode-foto .error {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: "Grotesca", Arial, sans-serif;
  font-weight: 800;
  background: transparent;
  color: var(--c-red2);
  padding: 20px;
  border: 0px solid var(--c-red2);
  background-color: transparent;
  border-radius: 5px;
  text-transform: uppercase;
}

/*Calendário*/
.datepicker {
  font-family: "Grotesca", Arial, sans-serif!important;
}

/*Efeito home*/
@keyframes pulse-border {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulsar {
    animation: pulse-border 0.4s ease-in-out;
    animation-iteration-count: 3;
}

@media (max-width: 991px){
  input#CupomChave.form-control:focus {
    font-size: 1.08rem;
  }
}