:root {
  --btn-slide-2: #ffe600;
  
  --c-yellow1: #ffff00;
  --c-yellow2: #f1c800;
  --c-blue1: #0032a0;
  --c-green1: #1ad800;
  --c-bluelight1: #00baff;
  --c-bluedark1: #222d59;
  
  --c-black: #000000;
  --c-black2: #313131;
  --c-blackform: #6c757d;
  --c-white: #ffffff;
  --c-graydark: #666666;
  --c-gray: #f7f7f7;
  --c-gray2: #efeeed;
  --c-check: #1cb111;
  --c-error: #ffff00;
  --c-error2: #ff2525;
  
  /* Alinhado a limppano.css — Rethink Sans */
  --font-sans: "Rethink Sans", system-ui, -apple-system, sans-serif;
}
html {
  font-size: 62.5%;
  /*10px*/
}

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

/* ====== Seção Geral ====== */
/* ====== Pagina Index ====== */
/* ====== Seção: Como Participar - 3º Estilo ====== */
/* ------ Steps Container ------ */
/* ----------------------------- */
/* ------ Step ------ */
/* ------------------ */
/* ------ Step Number ------ */
/* ------------------------- */
/* ------ Step Title ------ */
/* ------------------------ */
/* ------ Step Icon ------ */
/* ----------------------- */
/* ------ Step Description ------ */
/* ------------------------------ */
/* ========================================= */
.steps-boxes {
  position: relative;
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 4rem;
  border: none;
  border-radius: 2rem;
  background: none;
}
@media screen and (max-width: 991px) {
  .steps-boxes {
    padding: 2rem;
    max-width: none;
  }
}
.steps-boxes .steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .steps-boxes .steps-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.steps-boxes .step-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}
@media screen and (max-width: 991px) {
  .steps-boxes .step-container {
    max-width: 600px;
    padding: 0 !important;
  }
}
.steps-boxes .step-container .step-content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 400px;
  /*height: 380px;*/
  padding: 2rem;
  margin: 0;
  /*border: 1px solid #fff;*/
  border-radius: 38px;
  background: transparent;
  transition: all 1s ease-in-out;
}
.steps-boxes .step-container .step-content .step-number {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 14rem;
  line-height: 14rem;
  font-weight: bold;
  font-style: normal;
  text-align: start;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  margin: 0 auto 4rem auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .steps-boxes .step-container .step-content .step-number {
    margin: 0 auto 1rem auto;
  }
}
.steps-boxes .step-container .step-content .step-icon {
  position: relative;
  width: auto;
  max-width: auto;
  margin: 0 auto 14px auto;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container .step-content .step-icon img {
  width: auto;
  max-width: auto;
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container .step-content .step-icon svg {
  width: 24px;
  height: 24px;
}
.steps-boxes .step-container .step-content .step-title {
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 0 1rem 0;
  text-transform: none;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  .steps-boxes .step-container .step-content .step-title {
    border-radius: 0;
    margin: 0 0 1rem 0;
  }
}
.steps-boxes .step-container .step-content .step-description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 300;
  color: var(--c-white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container .step-content:hover, .steps-boxes .step-container .step-content:focus {
  /*border: none;*/
}
.steps-boxes .step-container .step-content:hover .step-number, .steps-boxes .step-container .step-content:focus .step-number {
  color: #000 !important;
  -webkit-text-stroke: 1px #000 !important;
}
.steps-boxes .step-container .step-content:hover .step-description, .steps-boxes .step-container .step-content:focus .step-description {
  color: var(--c-white) !important;
}
@media screen and (max-width: 991px) {
  .steps-boxes .step-container .step-content {
    max-width: 600px;
    min-height: auto;
    max-height: fit-content;
    padding: 3rem 2rem;
    margin: 0 0 0rem;
  }
}
.steps-boxes .step-container:nth-child(1) .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(1) .step-icon svg path {
  stroke: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container:nth-child(1):hover .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(1):hover .step-icon svg path {
  stroke: rgb(0, 0, 0) !important;
}
.steps-boxes .step-container:nth-child(1).active .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(1).active .step-icon svg path {
  stroke: rgb(0, 0, 0);
}
.steps-boxes .step-container:nth-child(2) .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(2) .step-icon svg path {
  fill: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container:nth-child(2):hover .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(2):hover .step-icon svg path {
  fill: rgb(0, 0, 0) !important;
}
.steps-boxes .step-container:nth-child(2).active .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(2).active .step-icon svg path {
  fill: rgb(0, 0, 0);
}
.steps-boxes .step-container:nth-child(3) .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(3) .step-icon svg path {
  stroke: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.steps-boxes .step-container:nth-child(3):hover .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(3):hover .step-icon svg path {
  stroke: rgb(0, 0, 0) !important;
}
.steps-boxes .step-container:nth-child(3).active .step-icon {
  background: transparent;
}
.steps-boxes .step-container:nth-child(3).active .step-icon svg path {
  stroke: rgb(0, 0, 0);
}
.steps-boxes .step-container.active .step-content {
  border: none;
  border-radius: 0;
  background: transparent;
}
.steps-boxes .step-container.active .step-content .step-number {
  color: #000;
  -webkit-text-stroke: 1px #000;
}
.steps-boxes .step-container.active .step-content .step-title {
  color: var(--c-white);
  background: transparent;
}
.steps-boxes .step-container.active .step-content .step-description {
  color: var(--c-white);
}
.steps-boxes .header-section {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Seção: Como Participar - 3º Estilo | OVERLOAD */
@media screen and (max-width: 991px) {
  .section.comoparticipar {
    overflow: hidden;
  }
}

.steps-boxes .steps-container {
  justify-content: space-between !important;
  /*max-width: 1440px;*/
  margin: 0 auto;
}
.steps-boxes .steps-container .step-container:nth-child(1) .step-icon {
  aspect-ratio: 170/145;
  max-height: 165px;
}
.steps-boxes .steps-container .step-container:nth-child(2) .step-icon {
  aspect-ratio: 137/145;
  max-height: 165px;
}
@media screen and (max-width: 991px) {
  .steps-boxes .steps-container .step-container:nth-child(2) {
    margin-top: 4rem;
  }
}
.steps-boxes .steps-container .step-container:nth-child(3) .step-icon {
  aspect-ratio: 88/147;
  max-height: 165px;
}
@media screen and (max-width: 991px) {
  .steps-boxes .steps-container .step-container:nth-child(3) {
    margin-top: 4rem;
  }
}
.steps-boxes .steps-container .step-container .step-content:hover .step-icon, .steps-boxes .steps-container .step-container .step-content:focus .step-icon {
  transform: scale(1);
  animation-name: efeitoTremer;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  transition: all 0.3s ease-in-out;
  animation-iteration-count: infinite;
}
.steps-boxes .steps-container .step-description {
  max-width: 28ch;
}

/* ====== Pagina Login ====== */
/* ====== Pagina Duvidas ====== */
/* ====== Pagina Cadastro Pessoal ====== */
/* ====== Pagina Cadastro Cupom ====== */
/* Menu - 1º Estilo */
/* ====== Menu ====== */
/* ================== */
/* ====== Nav Link ====== */
/* ====================== */
/* ====== Logo ====== */
/* ================== */
/* ====== Hamburger Btn ====== */
/* =========================== */
/* Âncoras (#secao): #menu é fixed em todas as larguras — um único scroll nativo (evita “duplo scroll” no mobile) */
html {
  scroll-padding-top: 75px;
}

#menu {
  --menu-scroll-progress: 0;
  width: 100%;
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.5s ease;
  height: 75px;
  /* Linha inferior: preenchimento L→R conforme scroll (ver ::after) */
  /* background: var(--c-blue1); */
  /* box-shadow: 0 0 20px 1px rgb(1 33 105); */
  background: #1137F1;
  background: -webkit-linear-gradient(355deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(355deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(355deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
}
#menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: calc(var(--menu-scroll-progress, 0) * 100%);
  background: var(--c-yellow1);
  pointer-events: none;
  z-index: 1;
}
#menu .navbar-brand {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 999;
  margin-right: 2.8rem;
}
@media screen and (max-width: 1536px) {
  #menu .navbar-brand {
    margin-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  #menu .navbar-brand {
    margin-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1149px) {
  #menu .navbar-brand {
    display: none;
  }
  /* #menu .navbar-brand img {
  width: 100%;
  max-width: 150px;
  } */
}
#menu .navbar-brand img {
  position: relative;
  width: 120%;
  max-width: 140px;
  /* max-width: 200px; */
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  #menu .navbar-brand img {
    width: 100%;
    transition: all 0.5s ease-in-out;
    padding: 0px 0px 0px 0px;
    background: transparent !important;
    position: relative;
    z-index: 9;
    max-width: 100px;
  }
}
#menu .navbar-brand a {
  padding: 0.1rem;
}
@media screen and (max-width: 991px) {
  #menu .navbar-brand a {
    padding: 0rem;
  }
}
#menu .navbar-brand a:hover, #menu .navbar-brand a:focus {
  background: transparent !important;
}
#menu nav {
  text-transform: uppercase;
  width: 100%;
  height: 75px;
  padding: 1.6rem 2rem;
  margin: auto;
  border-radius: 0;
  transition: all 0.7s;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: static !important;
}
@media screen and (max-width: 1280px) {
  #menu nav {
    padding: 1.6rem 2rem;
  }
}
@media screen and (max-width: 991px) {
  #menu nav {
    text-transform: uppercase;
    width: 100%;
    height: 75px;
    padding: 0;
    margin: auto;
    border-radius: 0;
    transition: all 0.7s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    justify-content: flex-start;
    align-items: center;
  }
}
#menu nav .navbar-collapse {
  display: flex;
  gap: 2.8rem;
  flex-grow: unset;
}
@media screen and (max-width: 1536px) {
  #menu nav .navbar-collapse {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 1280px) {
  #menu nav .navbar-collapse {
    gap: 2rem !important;
  }
}
@media screen and (max-width: 991px) {
  #menu nav .navbar-collapse {
    flex-direction: column;
    margin-top: 0px;
    background: #0927bf;
  }
  #menu nav .navbar-collapse:not(.show) {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #menu nav .navbar-collapse.show {
    height: auto;
    transition: all 0.6s ease;
  }
}
#menu nav .navbar-collapse .navbar-nav {
  margin: 0 !important;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: none;
}
#menu nav .navbar-collapse .navbar-nav .nav-item {
  position: relative;
  cursor: pointer;
  margin: auto;
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-white);
  padding: 0 1.6rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link:hover, #menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link:focus,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link:hover,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link:focus {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
  text-shadow:
  0 0 5px #ffbe0082,
  0 0 10px #ffbe0082,
  0 0 20px #ffbe0082,
  0 0 30px #ffbe0082;
}
@media screen and (max-width: 1536px) {
  #menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link,
  #menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1280px) {
  #menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link,
  #menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  #menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link,
  #menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    padding: 3.5rem 2rem 0.5rem 2rem !important;
    line-height: 1 !important;
  }
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link.active,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link.active {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
  text-shadow:
  0 0 5px #ffbe0082,
  0 0 10px #ffbe0082,
  0 0 20px #ffbe0082,
  0 0 30px #ffbe0082;
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link.active:hover, #menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link.active:focus,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link.active:hover,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link.active:focus {
  color: var(--c-yellow1);
  background: transparent;
  text-decoration: none;
}
#menu .navbar-toggler {
  border-color: transparent;
  color: var(--c-white);
  font-size: 25px;
  padding: 24.7px 25px;
  transition: all 0.3s ease;
  border: none;
  outline: 0;
}
#menu .navbar-toggler svg path {
  fill: var(--c-white);
  transition: all 0.3s ease;
}
#menu .navbar-toggler:hover, #menu .navbar-toggler:focus {
  color: var(--c-blue1);
}
#menu .navbar-toggler:hover svg path, #menu .navbar-toggler:focus svg path {
  fill: var(--c-blue1);
}
#menu .user {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1536px) {
  #menu .user {
    gap: 8px;
  }
}
@media screen and (max-width: 1280px) {
  #menu .user {
    gap: 12px;
  }
  #menu .user .btn {
    font-size: 1.4rem !important;
  }
}
@media screen and (max-width: 991px) {
  #menu .navbar-toggler:hover, #menu .navbar-toggler:focus {
    box-shadow: none!important;
  }
  #menu .navbar-toggler:hover svg path, #menu .navbar-toggler:focus svg path {
    fill: var(--c-white)!important;
  }
  #menu .user {
    position: relative;
    display: flex;
    text-align: right;
    padding: 10px 1.5rem 10px 1.5rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  #menu .user .btn {
    font-size: 1.6rem !important;
  }
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Menu - 1º Estilo | OVERLOAD */
#menu nav {
  justify-content: space-between;
  max-width: 1440px;
}
#menu .navbar-collapse {
  width: 100%;
  gap: 4rem !important;
  justify-content: end;
  /* justify-content: center; */
}
#menu .navbar-brand {
  /* top: -20px; */
  position: relative;
}
@media screen and (max-width: 991px) {
  #menu .navbar-brand {
    /* top: -10px; */
    /* left: 20px; */
    left: 10px;
    position: absolute;
  }
}
#menu .navbar-nav .nav-item a.nav-link,
#menu .navbar-nav .nav-item button.nav-link {
  position: relative;
  font-weight: 700;
}
/*#menu .navbar-nav .nav-item a.nav-link.active::after,
#menu .navbar-nav .nav-item button.nav-link.active::after {
content: "";
display: flex;
position: absolute;
bottom: -4px;
left: 50%;
width: 70%;
height: 2px;
transform: translateX(-50%);
background: var(--c-blue1);
}*/
@media screen and (max-width: 991px) {
  #menu .navbar-nav .nav-item a.nav-link.active::after,
  #menu .navbar-nav .nav-item button.nav-link.active::after {
    bottom: 8px;
  }
}

/* Footer - 3º Estilo */
/* ==================== */
/* ====== Logo ====== */
/* ================== */
/* ====== Link ====== */
/* ================== */
/* ====== Redes ====== */
/* =================== */
/* ====== Texto Legal ====== */
/* ========================= */
.footer {
  position: relative;
  padding: 0;
  background: transparent;
  font-family: var(--font-sans);
}
.footer .padding {
  position: relative;
  max-width: 1366px;
  padding: 70px 15px 40px 15px;
  margin: 0 auto;
  /* ====== Logo ====== */
  /* ====== Link ====== */
  /* ====== Redes ====== */
  /* ====== Texto Legal ====== */
}
.footer .footer-border {
  margin-top: 4rem;
  border-top: 1px solid #ffffff99!important;
  padding-top: 2rem !important;
}
.footer .footer-border2 {
  margin-top: 4rem;
  border-top: 1px solid #0721ae !important;
  padding-top: 2rem !important;
}
.footer .footer-border2 .content.footer-redes-top {
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .footer .footer-border2 .content.footer-redes-top {
    justify-content: center;
  }
}
.footer-wrapper {
  position: relative;
  width: 100%;
}
.footer-wrapper .footer {
  margin-top: 0;
}
.footer .padding .logos {
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}
.footer .padding .logos img {
  width: 100%;
  max-width: 136px;
}
.footer .padding .logos-container {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  /* ====== Logo ====== */
}
@media screen and (max-width: 400px) {
  .footer .padding .logos-container {
    flex-direction: column;
  }
  .footer .padding .logos-container .vertical-hr {
    display: none !important;
  }
  .footer .padding .logos-container hr {
    display: block !important;
    width: 80%;
    border-color: #fff;
  }
}
.footer .padding .logos-container .logo {
  position: relative;
  width: auto;
  z-index: 9;
  text-align: center;
}
.footer .padding .logos-container .vertical-hr {
  display: block;
  border-color: #fff;
}
.footer .padding .logos-container hr {
  display: none;
}
.footer .padding .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 0;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .footer .padding .links {
    display: inline-grid;
    width: 100%;
    margin: auto;
    text-align: center;
    justify-content: center;
  }
}
.footer .padding .links a,
.footer .padding .links button {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-yellow1);
  margin-right: 0;
  margin-left: 0 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
  text-transform: uppercase;
}
.footer .padding .links a:hover,
.footer .padding .links a:focus,
.footer .padding .links button:hover,
.footer .padding .links button:focus {
  color: var(--c-yellow1);
  text-decoration: underline;
  text-shadow:
  0 0 5px hsla(60, 100%, 50%, 0.9),
  0 0 10px hsla(60, 100%, 50%, 0.9),
  0 0 20px hsla(60, 100%, 50%, 0.9),
  0 0 30px hsla(60, 100%, 50%, 0.9);
}
@media screen and (max-width: 991px) {
  .footer .padding .links a,
  .footer .padding .links button {
    font-size: 1.8rem!important;
    /* margin-bottom: 20px !important; */
  }
}
.footer .padding .titulo {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  margin-bottom: 10px;
  color: var(--c-white);
}
.footer .padding .redes {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-top: 0px;
}
@media screen and (max-width: 991px) {
  .footer .padding .redes {
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.footer .padding .redes a.icone-redes {
  font-size: 20px;
  font-weight: 800;
  line-height: 100%;
  background: transparent;
  padding-right: 7px;
  padding-left: 7px;
  border-radius: 100px;
  margin: 1px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--c-white);
}
.footer .padding .redes a.icone-redes svg {
  height: 24px;
  width: 24px;
  top: 3px;
  position: relative;
  vertical-align: unset;
  fill: var(--c-white);
}
.footer .padding .redes a.icone-redes i {
  color: var(--c-white);
  font-size: 24px;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}
.footer .padding .redes a.icone-redes i:hover, .footer .padding .redes a.icone-redes i:focus {
  color: var(--c-white);
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
  text-shadow: 
  0 0 5px hsla(60, 100%, 50%, 0.9),
  0 0 10px hsla(60, 100%, 50%, 0.9),
  0 0 20px hsla(60, 100%, 50%, 0.9),
  0 0 30px hsla(60, 100%, 50%, 0.9);
  ;
}
.footer .padding .redes a.icone-redes:hover, .footer .padding .redes a.icone-redes:focus {
  transform: scale(1.1);
}
.footer .padding .redes a.icone-redes img.icone-tiktok {
  display: block;
  max-width: 24px;
  position: absolute;
  top: 2px;
}
.footer .padding .texto-legal {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--c-white);
  font-weight: 400;
  text-align: center;
}
.footer .padding .texto-legal.small {
  font-weight: 400;
  color: #ffffff99!important;
}
@media screen and (max-width: 991px) {
  .footer .padding .texto-legal {
    font-size: var(--c-white);
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.footer .padding .texto-legal a {
  font-family: var(--font-sans);
  text-transform: none;
  text-decoration: underline;
  color: var(--c-white);
}
.footer .padding .texto-legal a:hover, .footer .padding .texto-legal a:focus {
  text-decoration: none;
  color: var(--c-white);
}
@media screen and (max-width: 991px) {
  .footer .padding .texto-legal a {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

/* Footer Tarja - 3º Estilo */
.footer.tarja {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0;
  background: var(--c-white);
}

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

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Footer - 3º Estilo | OVERLOAD */
.footer {
  background: #1137F1;
  background: -webkit-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: -moz-linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  background: linear-gradient(360deg, rgba(17, 55, 241, 1) 0%, rgba(3, 26, 151, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1137F1", endColorstr="#031A97", GradientType=0);
}
.footer-wrapper .footer-tarja {
  position: relative;
  background: var(--c-yellow1);
  z-index: 1;
}
.footer-wrapper .footer-tarja .img-seloPromo {
  position: relative;
  margin: -4rem 0rem;
}
.footer .padding {
  padding: 8rem 3rem 9rem 3rem;
  margin: 0 auto;
}
.footer .padding-footer {
  padding: 0rem 3rem 0rem 3rem;
  margin: 0 auto;
}
.footer .padding .links a,
.footer .padding .links button {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--c-yellow1);
  margin-right: 0;
  margin-left: 0rem !important;
  text-transform: uppercase;
}
.footer .padding .links a:hover,
.footer .padding .links a:focus,
.footer .padding .links button:hover,
.footer .padding .links button:focus {
  text-decoration: none;
}
.footer .padding .redes a.icone-redes i {
  color: var(--c-gray);
}
.footer .padding .redes a.icone-redes i:hover, .footer .padding .redes a.icone-redes i:focus {
  color: var(--c-yellow1);
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.footer .logo {
  text-align: center;
}
.footer .logo img {
  width: 100%;
  max-width: 200px;
  top: -1px;
  position: relative;
}
@media (max-width: 991px){
  .footer .padding-footer {
    padding: 4rem 0rem 0rem 0rem;
  }
  .footer .padding {
    padding: 0rem 3rem 17rem 3rem!important;
  }
  .footer .padding .links a,
  .footer .padding .links button {
    margin-right: 0rem;
  }
  .footer .logo img {
    max-width: 120px;
  }
}
.footer .content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.footer .assinatura {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 4rem;
}

.footer .assinatura .txt-marca p {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-white);
}

.footer .assinatura .logo.logoAB img {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .footer .assinatura .txt-marca p {
    font-size: 1.1rem;
  }
}

/* Tabela - 2º Estilo (layout alinhado ao projeto Monster; cores afinar depois) */
/* Tabelas */
/* ====== Geral ====== */
/* =================== */
/* ====== THeader ====== */
/* ===================== */
/* ====== TBody Celula ====== */
/* ========================== */
/* ====== Title Mobile ====== */
/* ========================== */
/* ====== FontAwesome Icon ====== */
/* ============================== */
table.table {
  border-collapse: separate;
  border-spacing: 0 8px;
}
@media screen and (max-width: 991px) {
  table.table thead,
  table.table .thead-dark {
    display: none;
  }
}
table.table thead tr,
table.table .thead-dark tr {
  transition: all 0.3s ease;
  cursor: pointer;
}
table.table thead tr th,
table.table .thead-dark tr th {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  padding: 2rem 2.5rem !important;
  border-radius: 0;
  border: 0 !important;
  vertical-align: unset !important;
  text-transform: uppercase!important;
  background-color: transparent !important;
  color: var(--c-bluelight1) !important;
}
table.table thead tr th:first-child,
table.table .thead-dark tr th:first-child {
  border-radius: 0;
}
table.table thead tr th:last-child,
table.table .thead-dark tr th:last-child {
  border-radius: 0;
}
table.table tbody tr td {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 2rem 2.5rem !important;
  border: 0 !important;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: #0f0f0f !important;
  vertical-align: middle !important;
  text-transform: none !important;
}
table.table tbody tr td:first-child {
  border-radius: 0 !important;
}
@media screen and (max-width: 991px) {
  table.table tbody tr td:first-child {
    border-radius: 0 !important;
  }
}
table.table tbody tr td:last-child {
  border-radius: 0 !important;
}
@media screen and (max-width: 991px) {
  table.table tbody tr td:last-child {
    border-radius: 0 !important;
  }
}
table.table tbody tr td .title-table-mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  table.table tbody tr td .title-table-mobile {
    display: inline-block !important;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--c-bluelight1);
    margin-bottom: 1.2rem;
    text-transform: uppercase !important;
  }
}
table.table tbody tr td .filter-result {
  display: inline-block;
  text-transform: none !important;
}
table.table tbody tr td i {
  position: relative;
  top: 2px;
  left: 2px;
  font-size: 2rem;
  color: var(--c-green1);
}
table.table tbody tr td i:hover, table.table tbody tr td i:focus {
  color: var(--c-green1);
  filter: brightness(1.2);
}
@media screen and (max-width: 991px) {
  table.table tbody tr td {
    display: block;
    border: 0;
    border-radius: 0;
    padding: 0.65rem 0.65rem 2rem 0.65rem;
  }
  table.table tbody tr td:first-child {
    border-radius: 0;
    font-weight: 500;
  }
  table.table tbody tr td:last-child {
    border-radius: 0;
  }
}
table.table tbody tr:nth-child(odd) td {
  background: #0104bf !important;
}
table.table tbody tr:nth-child(even) td {
  background: #0104bf !important;
}

table.table tbody td .contemplado {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--c-check);
  line-height: 1.5;
}
table.table tbody td .aprovado {
  font-family: var(--font-sans);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
table.table tbody td .reprovado {
  font-family: var(--font-sans);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
table.table tbody td .aguardando {
  font-family: var(--font-sans);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Tabela - 2º Estilo | OVERLOAD */
table.table tbody td .aprovado {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

table.table tbody td .reprovado {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* Cabeçalhos ordenáveis (extrato, cadastro sucesso, ganhadores, etc.) */
.table-sortable .th-sortable {
  cursor: pointer;
  user-select: none;
}
.table-sortable .th-sortable:hover {
  opacity: 0.9;
}

/* ========= FORMULÁRIOS ========= */
/* ====== FORM | Fale Conosco 1º Estilo ====== */
/* ------ General ------ */
/* --------------------- */
/* ------ Link ------ */
/* ------------------ */
/* ------ Label (Float) ------ */
/* -------------------------- */
/* ------ Error ------ */
/* ------------------- */
/* =========================================== */
/* ========== Formulários — padrão Cadastro pessoal / Dúvidas (campos) ========== */
.main .section form.vld-form .form-control,
.main .section form.vld-form input.form-control,
.main .section form.vld-form select.form-control,
.main .section form.vld-form textarea.form-control,
.modal form.vld-form .form-control,
.modal form.vld-form input.form-control,
.modal form.vld-form select.form-control,
.modal form.vld-form textarea.form-control,
.fenix-popup form.vld-form .form-control,
.fenix-popup form.vld-form input.form-control,
.fenix-popup form.vld-form select.form-control,
.fenix-popup form.vld-form textarea.form-control,
.faq-container--dark .painel-busca input.form-control,
.faq-container--dark .painel-busca input[type="text"] {
  background: #0000b2 !important;
  border-radius: 0.4rem !important;
  border: 1px solid #0823b3 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
}

/* Altura 50px — igual Cadastro pessoal (#frm-cadastro .form-control em circleform.css) */
.main .section form.vld-form input.form-control,
.main .section form.vld-form select.form-control,
.modal form.vld-form input.form-control,
.modal form.vld-form select.form-control,
.fenix-popup form.vld-form input.form-control,
.fenix-popup form.vld-form select.form-control,
.faq-container--dark .painel-busca input.form-control,
.faq-container--dark .painel-busca input[type="text"] {
  height: 50px !important;
  min-height: 50px !important;
  line-height: 50px !important;
  padding: 0.3rem 2rem 0 2rem !important;
  box-sizing: border-box !important;
}

.main .section form.vld-form textarea.form-control,
.modal form.vld-form textarea.form-control,
.fenix-popup form.vld-form textarea.form-control {
  height: auto !important;
  min-height: 8rem;
}

.main .section form.vld-form input.form-control:-webkit-autofill,
.main .section form.vld-form input.form-control:-webkit-autofill:hover,
.main .section form.vld-form input.form-control:-webkit-autofill:focus,
.main .section form.vld-form input.form-control:-webkit-autofill:active,
.modal form.vld-form input.form-control:-webkit-autofill,
.modal form.vld-form input.form-control:-webkit-autofill:hover,
.modal form.vld-form input.form-control:-webkit-autofill:focus,
.modal form.vld-form input.form-control:-webkit-autofill:active,
.fenix-popup form.vld-form input.form-control:-webkit-autofill,
.fenix-popup form.vld-form input.form-control:-webkit-autofill:hover,
.fenix-popup form.vld-form input.form-control:-webkit-autofill:focus,
.fenix-popup form.vld-form input.form-control:-webkit-autofill:active,
.faq-container--dark .painel-busca input:-webkit-autofill,
.faq-container--dark .painel-busca input:-webkit-autofill:hover,
.faq-container--dark .painel-busca input:-webkit-autofill:focus,
.faq-container--dark .painel-busca input:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 30px #0104bf inset !important;
  box-shadow: 0 0 0 30px #0104bf inset !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
}

.main .section form.vld-form .form-control:focus,
.main .section form.vld-form input.form-control:not(:placeholder-shown),
.main .section form.vld-form textarea.form-control:not(:placeholder-shown),
.main .section form.vld-form select.form-control:has(option:checked:not([value=""])),
.modal form.vld-form .form-control:focus,
.modal form.vld-form input.form-control:not(:placeholder-shown),
.modal form.vld-form textarea.form-control:not(:placeholder-shown),
.modal form.vld-form select.form-control:has(option:checked:not([value=""])),
.fenix-popup form.vld-form .form-control:focus,
.fenix-popup form.vld-form input.form-control:not(:placeholder-shown),
.fenix-popup form.vld-form textarea.form-control:not(:placeholder-shown),
.fenix-popup form.vld-form select.form-control:has(option:checked:not([value=""])) {
  background: #0104bf !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
  outline: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.faq-container--dark .painel-busca input.form-control:focus,
.faq-container--dark .painel-busca input[type="text"]:focus,
.faq-container--dark .painel-busca input.form-control:not(:placeholder-shown),
.faq-container--dark .painel-busca input[type="text"]:not(:placeholder-shown) {
  background: #0104bf !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
  border-right: none !important;
  outline: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.main .section form.vld-form .form-control::-webkit-input-placeholder,
.main .section form.vld-form .form-control:-moz-placeholder,
.main .section form.vld-form .form-control::-moz-placeholder,
.main .section form.vld-form .form-control:-ms-input-placeholder,
.modal form.vld-form .form-control::-webkit-input-placeholder,
.fenix-popup form.vld-form .form-control::-webkit-input-placeholder,
.faq-container--dark .painel-busca input::placeholder {
  color: rgba(255, 255, 255, 0.95) !important;
}

.main .section form.vld-form select.form-control option,
.modal form.vld-form select.form-control option,
.fenix-popup form.vld-form select.form-control option {
  background: #0000b2;
  color: var(--c-white);
}

.main .section form.vld-form .eye [data-togglepassword] {
  background: #0000b2 !important;
  color: var(--c-white) !important;
}

.main .section form.vld-form .eye [data-togglepassword] i {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* FAQ — painel busca: input + ícone (layout Dúvidas / Ganhadores / Extrato) */
.faq-container--dark .painel-busca input.form-control,
.faq-container--dark .painel-busca input[type="text"] {
  border-radius: 0.4rem 0 0 0.4rem !important;
  border-right: none !important;
}
.faq-container--dark .painel-busca .search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: #0000b2 !important;
  border: 1px solid #0823b3 !important;
  border-left: none !important;
  border-radius: 0 0.4rem 0.4rem 0 !important;
}
.faq-container--dark .painel-busca .search-icon svg path {
  fill: var(--c-white) !important;
}
.faq-container--dark .painel-busca input:focus ~ .search-icon,
.faq-container--dark .painel-busca input:not(:placeholder-shown) ~ .search-icon {
  background: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
}
.faq-container--dark .painel-busca input:focus ~ .search-icon svg path,
.faq-container--dark .painel-busca input:not(:placeholder-shown) ~ .search-icon svg path {
  fill: var(--c-blue1) !important;
}

/* Produtos — busca idêntica à Dúvidas; centralizada (max 500px), sem cartão gradiente */
.section.produtos.produtos_lista .produtos-search-faq.faq-container--dark {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section.produtos.produtos_lista .produtos-search-faq .painel-busca {
  width: 100%;
}

/* Meus números / extrato — busca como Produtos (max 500px, centralizada) */
.section.meuextrato .produtos-search-faq.meusnumeros-search-faq.faq-container--dark,
.section.meuextrato .meusnumeros-search-faq.faq-container--dark {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section.meuextrato .meusnumeros-search-faq .painel-busca {
  width: 100%;
}

/* Meus números — box azul atrás da tabela (mesmo cartão do FAQ em Dúvidas) */
.section.meuextrato .meusnumeros-tabela-box.faq-container--dark {
  background: #000096 !important;
  background: -webkit-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: -moz-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000096", endColorstr="#2525CF", GradientType=0);
  padding: 3rem;
  border-radius: 0.4rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  margin-top: 1.5rem;
}

.section.meuextrato .meusnumeros-tabela-box.faq-container--dark .meusnumeros-tabela-box__actions {
  margin-bottom: 0;
}

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

/* Sem resultados — igual .section.duvidas .faq-container--dark .no-results */
.section.meuextrato #meusnumeros-empty.no-results {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.5rem;
  padding: 2rem 0.5rem !important;
  background: var(--c-blue1) !important;
  font-family: var(--font-sans);
  font-weight: 400 !important;
  line-height: 1.5;
  text-align: center;
  border: none !important;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.box-contato {
  display: flex;
  width: 100%;
  margin-top: 40px;
  border-radius: 1rem;
  padding: 4rem;
  align-items: center;
  background: #05478E;
  background: -webkit-linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  background: -moz-linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  background: linear-gradient(360deg, rgba(5, 71, 142, 1) 0%, rgba(1, 33, 105, 1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#05478E", endColorstr="#012169", GradientType=0);
}
@media screen and (max-width: 991px) {
  .box-contato {
    width: auto;
    padding: 2rem 1.5rem;
  }
}
.box-contato .formulario-box-contato {
  padding: 0;
}
.box-contato .formulario-box-contato a {
  color: var(--c-white) !important;
  text-decoration: underline;
}
.box-contato .formulario-box-contato a:hover, .box-contato .formulario-box-contato a:focus {
  color: var(--c-white) !important;
  text-decoration: none;
}

/* Formulário Fale Conosco — labels e checkboxes (campos: bloco global) */
.box-contato .formulario-box-contato #frm-contato .custom-control-label,
.box-contato .formulario-box-contato #frm-contato .form-check-label {
  color: var(--c-white) !important;
}
.box-contato .formulario-box-contato #frm-contato .custom-control-label a,
.box-contato .formulario-box-contato #frm-contato .form-check-label a {
  color: var(--c-white) !important;
  text-decoration: underline;
}
.box-contato .formulario-box-contato #frm-contato .custom-control-label a:hover,
.box-contato .formulario-box-contato #frm-contato .form-check-label a:hover {
  color: var(--c-yellow1) !important;
}
.box-contato .formulario-box-contato #frm-contato .form-check-input {
  background-color: var(--c-white) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.box-contato .formulario-box-contato #frm-contato .form-check-input:checked {
  background-color: var(--c-yellow1) !important;
  border-color: var(--c-yellow1) !important;
}

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

/* Redefinir / Alterar senha — .senha-regras (igual Cadastro pessoal: circleform #frm-cadastro .senha-regras) */
.section.redefinirsenha #frm-alterarsenha .form-password,
.section.redefinirsenha #frm-redefinicaosenha .form-password {
  position: relative;
  z-index: 9 !important;
}

.section.redefinirsenha #frm-alterarsenha .form-password .form-control,
.section.redefinirsenha #frm-redefinicaosenha .form-password .form-control {
  padding-right: 50px;
}

/* Mesma lógica que limppano: oculto no load, vazio, ou senha válida sem foco */
.section.redefinirsenha #frm-alterarsenha #NovaSenha:not([data-senha-vazio]) ~ .senha-regras,
.section.redefinirsenha #frm-alterarsenha [data-senha-vazio="true"]#NovaSenha ~ .senha-regras,
.section.redefinirsenha #frm-alterarsenha #NovaSenha.valid:not(:focus) ~ .senha-regras,
.section.redefinirsenha #frm-redefinicaosenha #Senha:not([data-senha-vazio]) ~ .senha-regras,
.section.redefinirsenha #frm-redefinicaosenha [data-senha-vazio="true"]#Senha ~ .senha-regras,
.section.redefinirsenha #frm-redefinicaosenha #Senha.valid:not(:focus) ~ .senha-regras {
  display: none !important;
}

.section.redefinirsenha #frm-alterarsenha .senha-regras,
.section.redefinirsenha #frm-redefinicaosenha .senha-regras {
  background: #f7f7f7;
  border: none;
  border-radius: 0.4rem !important;
  position: absolute;
  z-index: 999;
  padding: 0.7rem 0.5rem;
  margin-top: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  left: 7px;
  top: 67px;
  min-width: 160px;
  text-align: left;
}

.section.redefinirsenha #frm-alterarsenha .senha-regras::before,
.section.redefinirsenha #frm-redefinicaosenha .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: 0;
  display: inline-block;
  background: transparent;
  color: transparent;
  position: absolute;
  top: -19px;
  left: 3px;
  z-index: 1;
}

.section.redefinirsenha #frm-alterarsenha .senha-regras > div,
.section.redefinirsenha #frm-redefinicaosenha .senha-regras > div {
  padding: 0.2rem;
  color: #000000;
  font-size: 13px;
}

.section.redefinirsenha #frm-alterarsenha .senha-regras > div:before,
.section.redefinirsenha #frm-redefinicaosenha .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: #ccc;
  color: #ccc;
}

.section.redefinirsenha #frm-alterarsenha [data-senha-maiusculas="true"] ~ .senha-regras .regra-maiusculas:before,
.section.redefinirsenha #frm-alterarsenha [data-senha-minusculas="true"] ~ .senha-regras .regra-minusculas:before,
.section.redefinirsenha #frm-alterarsenha [data-senha-numeros="true"] ~ .senha-regras .regra-numeros:before,
.section.redefinirsenha #frm-alterarsenha [data-senha-tamanho="true"] ~ .senha-regras .regra-tamanho:before,
.section.redefinirsenha #frm-redefinicaosenha [data-senha-maiusculas="true"] ~ .senha-regras .regra-maiusculas:before,
.section.redefinirsenha #frm-redefinicaosenha [data-senha-minusculas="true"] ~ .senha-regras .regra-minusculas:before,
.section.redefinirsenha #frm-redefinicaosenha [data-senha-numeros="true"] ~ .senha-regras .regra-numeros:before,
.section.redefinirsenha #frm-redefinicaosenha [data-senha-tamanho="true"] ~ .senha-regras .regra-tamanho:before {
  color: transparent;
  background: #4caf50;
}

/* Formulário meusdados — labels e floats (campos: bloco global) */
.section.meusdados .float-placeholder {
  /* color: rgba(255, 255, 255, 0.8) !important; */
}
.section.meusdados label.custom-control-label {
  color: var(--c-white) !important;
}
.section.meusdados .form-check-input {
  background-color: #0000b2 !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.section.meusdados .form-check-input:checked {
  background-color: var(--c-green1) !important;
  border-color: var(--c-green1) !important;
}
.section.meusdados .header-section h2,
.section.meusdados .header-section h3 {
  color: var(--c-white) !important;
}

/* Fale conosco — texto do botão visível no hover (gradiente do .btn) */
#btn-faleconosco span {
  position: relative;
  z-index: 1;
  color: var(--c-blue1);
}
#btn-faleconosco:hover span,
#btn-faleconosco:focus span,
#btn-faleconosco:active span {
  /* color: var(--c-white); */
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | FORM | Fale Conosco 1º Estilo | OVERLOAD */
.box-contato .title {
  color: var(--c-white);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: start;
}
.box-contato .description {
  color: var(--c-white);
  font-size: 1.6rem;
  font-weight: 400;
}

/* Temas (Botões) */
/* ====== Theme 1 ====== */
/* ===================== */
/* ====== Theme 2 ====== */
/* ===================== */
/* ====== Theme 3 ====== */
/* ===================== */
/* ====== Theme 4 ====== */
/* ===================== */
/* ====== Botão (Padrão) — slider esquerda→direita + gradiente amarelo (Monster) ====== */
/* ============================ */
.btn {
  --btn-bg-solid: var(--c-blue1);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-white);
  position: relative;
  padding: 1.4rem 2rem 1.4rem 2rem;
  border: 0;
  border-radius: 0.4rem;
  border: 0px solid var(--c-blue1) !important;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.btn:focus:not(:disabled):not(.disabled),
.btn:hover:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  transform: scale(1);
  border: 0px solid var(--c-blue1) !important;
}
.btn:disabled,
.btn[aria-disabled="true"],
.btn.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: var(--btn-bg-solid) !important;
  background-image: none !important;
}

/* Variantes Bootstrap (sobrescreve background-color do tema) */
.btn.btn-primary {
  --btn-bg-solid: var(--c-blue1);
  color: var(--c-white);
  border-color: var(--c-blue1);
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
}
.btn.btn-primary:focus:not(:disabled):not(.disabled),
.btn.btn-primary:hover:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border-color: var(--c-blue1);
}

.btn.btn-danger {
  --btn-bg-solid: #dc3545;
  color: var(--c-white);
  border-color: #dc3545;
  background: linear-gradient(
  90deg,
  #f9e60e 0%,
  var(--btn-slide-2) 38%,
  #f5ce10 50%,
  #f7e30d 50%,
  #f5d110 50%,
  var(--btn-bg-solid) 50%,
  var(--btn-bg-solid) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
}
.btn.btn-danger:focus:not(:disabled):not(.disabled),
.btn.btn-danger:hover:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border-color: #dc3545;
}

/* ====== Botão (Outline) ====== */
/* ============================= */
.btn.btn-outline {
  --btn-bg-solid: var(--c-white);
  color: var(--c-blue1) !important;
  border: 1px solid var(--c-blue1) !important;
  border-radius: 0.4rem;
}
.btn.btn-outline:focus:not(:disabled):not(.disabled),
.btn.btn-outline:hover:not(:disabled):not(.disabled),
.btn.btn-outline.active:not(:disabled):not(.disabled) {
  color: var(--c-blue1) !important;
  background-position: 0 0;
  border: 1px solid var(--c-blue1) !important;
}

.btn.btn-outline2 {
  --btn-bg-solid: var(--c-white);
  color: var(--c-blue1) !important;
  border: 1px solid var(--c-white) !important;
  border-radius: 0.4rem;
}
.btn.btn-outline2:focus:not(:disabled):not(.disabled),
.btn.btn-outline2:hover:not(:disabled):not(.disabled),
.btn.btn-outline2.active:not(:disabled):not(.disabled) {
  color: var(--c-blue1) !important;
  background-position: 0 0;
  border: 1px solid var(--c-white) !important;
}

#menu .btn.btn-outline {
  --btn-bg-solid: rgba(255, 255, 255, 0.12);
  color: var(--c-blue1) !important;
  border: 1px solid var(--c-blue1) !important;
  border-radius: 0.4rem;
}
#menu .btn.btn-outline:focus:not(:disabled):not(.disabled),
#menu .btn.btn-outline:hover:not(:disabled):not(.disabled),
#menu .btn.btn-outline.active:not(:disabled):not(.disabled) {
  color: var(--c-blue1) !important;
  background-position: 0 0;
  border: 1px solid var(--c-blue1) !important;
}

#menu .btn.btn-outline2 {
  --btn-bg-solid: rgba(255, 255, 255, 0.12);
}
#menu .btn.btn-outline2:focus:not(:disabled):not(.disabled),
#menu .btn.btn-outline2:hover:not(:disabled):not(.disabled),
#menu .btn.btn-outline2.active:not(:disabled):not(.disabled) {
  background-position: 0 0;
}

/* Botão profile (ícone) — desktop; mobile mantém Entrar / Minha conta em texto */
.btn.btn-profile {
  background: transparent !important;
  padding: 0.75rem 1rem;
  min-width: auto;
  border: none !important;
}
.btn.btn-profile::before {
  display: none;
}
@media (min-width: 992px) {
  #menu .btn.btn-profile.desktop {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}
#menu .user:not(.user_logado) .btn.btn-profile {
  color: var(--c-white) !important;
}
#menu .user:not(.user_logado) .btn.btn-profile:hover,
#menu .user:not(.user_logado) .btn.btn-profile:focus,
#menu .user:not(.user_logado) .btn.btn-profile.active {
  color: var(--c-yellow1) !important;
  background: transparent !important;
}
#menu .user.user_logado .btn.btn-profile {
  color: var(--c-yellow1) !important;
}
#menu .user.user_logado .btn.btn-profile:hover,
#menu .user.user_logado .btn.btn-profile:focus,
#menu .user.user_logado .btn.btn-profile.active {
  color: var(--c-white) !important;
  background: transparent !important;
}
#menu .btn.btn-profile i {
  font-size: 2rem;
  color: inherit;
}
#menu .btn.btn-profile .btn-profile-icon-hamburger {
  display: block;
  width: 30px;
  height: 17px;
  flex-shrink: 0;
  color: inherit;
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Botão | OVERLOAD */
.btn {
  /*  display: flex;*/
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.btn svg path {
  /* stroke: var(--c-blue1); */
  transition: all 0.3s ease-in-out;
}
.btn:focus svg path, .btn:hover svg path, .btn.active svg path {
  /* stroke: var(--c-blue1); */
}

.outline svg path {
  /* stroke: var(--c-white); */
}
.outline:focus svg path, .outline:hover svg path, .outline.active svg path {
  /* stroke: var(--c-blue1); */
}

.btn-red {
  --btn-bg-solid: var(--c-yellow1);
  color: var(--c-white);
  border: 0px solid var(--c-yellow1) !important;
}
.btn-red svg path {
  /* stroke: var(--c-white); */
}
.btn-red:focus:not(:disabled):not(.disabled),
.btn-red:hover:not(:disabled):not(.disabled),
.btn-red.active:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border: 0px solid var(--c-yellow1) !important;
}
.btn-red:focus svg path, .btn-red:hover svg path, .btn-red.active svg path {
  /* stroke: var(--c-white); */
}

.btn-wine {
  --btn-bg-solid: var(--c-yellow1);
  color: var(--c-white);
  border: 0px solid var(--c-yellow1) !important;
}
.btn-wine svg path {
  /* stroke: var(--c-white); */
}
.btn-wine:focus:not(:disabled):not(.disabled),
.btn-wine:hover:not(:disabled):not(.disabled),
.btn-wine.active:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border: 0px solid var(--c-yellow1) !important;
}
.btn-wine:focus svg path, .btn-wine:hover svg path, .btn-wine.active svg path {
  /* stroke: var(--c-white); */
}

.btn.btn-white {
  --btn-bg-solid: var(--c-white);
  color: var(--c-blue1);
}
.btn.btn-white svg path {
  /* stroke: var(--c-white); */
}
.btn.btn-white:focus:not(:disabled):not(.disabled),
.btn.btn-white:hover:not(:disabled):not(.disabled),
.btn.btn-white.active:not(:disabled):not(.disabled) {
  color: var(--c-blue1);
  background-position: 0 0;
}
.btn.btn-white:focus svg path, .btn.btn-white:hover svg path, .btn.btn-white.active svg path {
  /* stroke: var(--c-white); */
}

.btn-green {
  --btn-bg-solid: var(--c-check);
  color: var(--c-white);
  border: 0px solid var(--c-check) !important;
}
.btn-green svg path {
  /* stroke: var(--c-white); */
}
.btn-green:focus:not(:disabled):not(.disabled),
.btn-green:hover:not(:disabled):not(.disabled),
.btn-green.active:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border: 0px solid var(--c-check) !important;
}
.btn-green:focus svg path, .btn-green:hover svg path, .btn-green.active svg path {
  /* stroke: var(--c-white); */
}

.btn-yellow {
  --btn-bg-solid: var(--c-yellow1);
  color: var(--c-blue1);
  border: 0px solid var(--c-yellow1) !important;
}
.btn-yellow svg path {
  /* stroke: var(--c-white); */
}
.btn-yellow:focus:not(:disabled):not(.disabled),
.btn-yellow:hover:not(:disabled):not(.disabled),
.btn-yellow.active:not(:disabled):not(.disabled) {
  color: var(--c-blue1);
  background-position: 0 0;
  border: 0px solid var(--c-yellow1) !important;
}
.btn-yellow:focus svg path, .btn-yellow:hover svg path, .btn-yellow.active svg path {
  /* stroke: var(--c-white); */
}
.btn-yellow span {
  color: var(--c-blue1);
}

.cookies .padding .buttons-allow .btn.btn-yellow {
  --btn-bg-solid: var(--c-yellow1);
}

/* Exceções: sem slider no acordeão / detalhes (cores vêm de limppano.css) */
#popup-cookiesgeral .accordion .btn,
#popup-cookiesgeral .btn-mostrar-detalhes {
  background-image: none !important;
  background-size: auto !important;
  background-position: 0 0 !important;
}

/* Temas (FAQ) */
/* ====== Theme 1 ====== */
/* ------ General ------ */
/* ------ Question ------ */
/* ------ Answer ------ */
/* ===================== */
/* ====== Theme 2 ====== */
/* ------ General ------ */
/* ------ Question ------ */
/* ------ Answer ------ */
/* ===================== */
/* ====== Faq Item ====== */
/* ------ General ------ */
/* --------------------- */
/* ------ Question ------ */
/* ---------------------- */
/* ------ Answer ------ */
/* -------------------- */
/* ------ Number ------ */
/* -------------------- */
/* ------ Arrow ------ */
/* ------------------- */
/* ====================== */
.border-faq {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-top: none;
  border-bottom: 1px solid rgb(245 165 1);
}
.border-faq .faq-item {
  background: transparent;
  color: var(--c-yellow1);
  margin-top: 0;
  padding: 20px 0;
  border-radius: 0;
}
.border-faq .faq-item[aria-expanded=true] {
  border-radius: 0;
}
.border-faq .faq-item + div {
  background: transparent;
  margin: 0 0 20px 0;
  padding: 8px 0;
  border-radius: 10px;
  color: var(--c-white);
}
.border-faq .faq-item + div p,
.border-faq .faq-item + div span,
.border-faq .faq-item + div strong,
.border-faq .faq-item + div li {
  color: var(--c-white);
}
.border-faq .faq-item {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}
.border-faq .faq-item .faq-numero {
  font-size: 24px;
  font-weight: 500;
  color: var(--c-white);
  margin-right: 8px;
  transition: all 0.3s ease;
}
.border-faq .faq-item::before {
  content: "\f107";
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "FontAwesome", Arial, sans-serif;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  line-height: 100%;
  background: var(--c-yellow1);
  color: var(--c-white);
  border-radius: 50%;
  padding: 0;
  font-style: normal;
  order: 5;
  position: absolute;
  right: 0px;
  transition: all 0.3s ease;
}
.border-faq .faq-item[aria-expanded=true] {
  color: var(--c-yellow1);
}
.border-faq .faq-item[aria-expanded=true]::before {
  content: "\f106";
  color: var(--c-white)!important;
  transform: scale(1.3);
}
.border-faq .faq-item[aria-expanded=true] .faq-numero {
  color: yellow;
}
.border-faq .faq-item:hover {
  color: var(--c-yellow1);
}
.border-faq .faq-item:hover::before {
  color: var(--c-white);
  transform: scale(1.2);
}
.border-faq .faq-item:hover .faq-numero {
  color: yellow;
}
.border-faq .faq-item + div {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  font-style: inherit;
  letter-spacing: 0;
  text-align: left;
  width: 100%;
  z-index: 1;
}
.border-faq .faq-item + div ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 3.2rem;
  margin-top: 1.2rem;
}
.border-faq .faq-item + div p, .border-faq .faq-item + div li {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--c-blue1);
}
.border-faq .faq-item + div p a, .border-faq .faq-item + div li a {
  color: var(--c-black);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.border-faq .faq-item + div p a:hover, .border-faq .faq-item + div li a:hover {
  color: var(--c-black);
  text-decoration: none;
}
.border-faq .faq-item + div strong {
  font-family: var(--font-sans);
  font-weight: 500;
}
.border-faq .faq-item + div table p {
  padding: 2px 0 2px;
  text-align: center;
  margin-bottom: 0;
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Faq Item | OVERLOAD */
.border-faq .faq-numero {
  display: none;
}

.painel-busca input {
  color: var(--c-black) !important;
  border: 0px solid #e0e0e0;
  background: #f7f7f7;
  border-right: none !important;
  border-radius: 0.4rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.painel-busca input:focus {
  /* background: var(--c-blue1); */
  /* border: 0px solid var(--c-white); */
}
.painel-busca input::placeholder {
  color: var(--c-black) !important;
  opacity: 0.7 !important;
}
.painel-busca .search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  background: #f7f7f7;
  border-top-right-radius: 0.4rem !important;
  border-bottom-right-radius: 0.4rem !important;
}
.painel-busca .float-placeholder {
  z-index: 9;
}

/* Dúvidas — botão “Ver mais”: ícone amarelo (mesmo destaque do cadastro) */
.section.duvidas .faq-container--dark #btn-carregar.btn-carregar-faq .text-green1,
.section.duvidas .faq-container--dark #btn-carregar.btn-carregar-faq .fa-solid {
  color: var(--c-bluelight1) !important;
}
.section.duvidas .faq-container--dark #btn-carregar.btn-carregar-faq:hover .text-green1,
.section.duvidas .faq-container--dark #btn-carregar.btn-carregar-faq:focus .text-green1,
.section.duvidas .faq-container--dark #btn-carregar.btn-carregar-faq:active .text-green1 {
  color: var(--c-yellow2) !important;
}

/* Dúvidas — bloco “Fale conosco” com o mesmo gradiente do cadastro pessoal */
.section.duvidas .box-contato {
  background: #000096 !important;
  background: -webkit-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: -moz-linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000096", endColorstr="#2525CF", GradientType=0);
  border-radius: 0.4rem !important;
}

/* Botão Ver mais — FAQ e Ganhadores */
#btn-carregar.btn-carregar-faq,
#btn-carregar-cadeiras-gamer.btn-carregar-faq,
#btn-carregar-gaming-kits.btn-carregar-faq,
#btn-carregar-fones.btn-carregar-faq,
#btn-carregar-meusnumeros.btn-carregar-faq {
  background: transparent !important;
  border: none !important;
  padding: 0.5rem 1rem !important;
  font-size: 2rem !important;
  min-height: auto !important;
}
#btn-carregar.btn-carregar-faq:hover::before,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:hover::before,
#btn-carregar-gaming-kits.btn-carregar-faq:hover::before,
#btn-carregar-fones.btn-carregar-faq:hover::before,
#btn-carregar-meusnumeros.btn-carregar-faq:hover::before {
  display: none !important;
}
#btn-carregar.btn-carregar-faq .text-green1,
#btn-carregar-cadeiras-gamer.btn-carregar-faq .text-green1,
#btn-carregar-gaming-kits.btn-carregar-faq .text-green1,
#btn-carregar-fones.btn-carregar-faq .text-green1,
#btn-carregar-meusnumeros.btn-carregar-faq .text-green1 {
  color: var(--c-bluelight1) !important;
}
#btn-carregar.btn-carregar-faq:hover,
#btn-carregar.btn-carregar-faq:focus,
#btn-carregar.btn-carregar-faq:active,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:hover,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:focus,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:active,
#btn-carregar-gaming-kits.btn-carregar-faq:hover,
#btn-carregar-gaming-kits.btn-carregar-faq:focus,
#btn-carregar-gaming-kits.btn-carregar-faq:active,
#btn-carregar-fones.btn-carregar-faq:hover,
#btn-carregar-fones.btn-carregar-faq:focus,
#btn-carregar-fones.btn-carregar-faq:active,
#btn-carregar-meusnumeros.btn-carregar-faq:hover,
#btn-carregar-meusnumeros.btn-carregar-faq:focus,
#btn-carregar-meusnumeros.btn-carregar-faq:active {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
  transform: none !important;
  box-shadow: none !important;
}
#btn-carregar.btn-carregar-faq:hover .text-green1,
#btn-carregar.btn-carregar-faq:focus .text-green1,
#btn-carregar.btn-carregar-faq:active .text-green1,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:hover .text-green1,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:focus .text-green1,
#btn-carregar-cadeiras-gamer.btn-carregar-faq:active .text-green1,
#btn-carregar-gaming-kits.btn-carregar-faq:hover .text-green1,
#btn-carregar-gaming-kits.btn-carregar-faq:focus .text-green1,
#btn-carregar-gaming-kits.btn-carregar-faq:active .text-green1,
#btn-carregar-fones.btn-carregar-faq:hover .text-green1,
#btn-carregar-fones.btn-carregar-faq:focus .text-green1,
#btn-carregar-fones.btn-carregar-faq:active .text-green1,
#btn-carregar-meusnumeros.btn-carregar-faq:hover .text-green1,
#btn-carregar-meusnumeros.btn-carregar-faq:focus .text-green1,
#btn-carregar-meusnumeros.btn-carregar-faq:active .text-green1 {
  color: var(--c-green1) !important;
}

.no-results {
  color: var(--c-white);
  border-color: var(--c-white);
  background: var(--c-yellow1);
  font-weight: 700!important;
  border: 0px;
  font-family: var(--font-sans);
}

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

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

/* TEXT */
.text-start {
  text-align: start !important;
}

p {
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 5px;
}

p a {
  text-decoration: underline;
}

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

.text-sm {
  font-size: 12px !important;
}

.text-md {
  font-size: 14px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

.text-xxl {
  font-size: 24px !important;
}

.text-3xl {
  font-size: 28px !important;
}

.text-4xl {
  font-size: 32px !important;
}

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

.vertical-hr {
  width: 1px;
  min-height: 55px;
  border: none;
  border-left: 1px solid;
  border-color: #000;
  margin: 0 !important;
}

/*# sourceMappingURL=overload.css.map */



.formsteps [data-step]:not(.active) {
  display: none!important;
}

.formsteps [data-step]:first-child.active ~ .formsteps-buttons .formsteps-btn-prev,
.formsteps [data-step].active + .formsteps-buttons .formsteps-btn-next,
.formsteps [data-step]:not(.active) + .formsteps-buttons .formsteps-btn-finish {
  display: none!important;
}

/* ====== Box Total de Pontos ====== */
.total-pontos-box {
  position: relative;
  text-align: center;
}

.total-pontos-number {
  background: var(--c-blue1);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.total-pontos-number .label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-sans);
  text-transform: uppercase;
  color: var(--c-yellow1);
  letter-spacing: 0.05em;
}

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

/* Botão Quero Resgatar - Desabilitado */
.btnFlutuante[disabled],
.btnFlutuante[aria-disabled="true"] {
  opacity: 0.4 !important;
  pointer-events: none;
  cursor: not-allowed !important;
  background: var(--c-white) !important;
  background-image: none !important;
}

.btnFlutuante[disabled]:hover,
.btnFlutuante[aria-disabled="true"]:hover {
  background: var(--c-white) !important;
  background-image: none !important;
  color: var(--c-blue1) !important;
  transform: none !important;
  box-shadow: none !important;
}

.btnFlutuante[disabled] i,
.btnFlutuante[aria-disabled="true"] i {
  animation: none !important;
}

/* Select2 — produtos com imagem (cadastro cupom) */
.select2-selection-produto {
  display: inline-flex !important;
  align-items: center;
  gap: 0.8rem;
}
.select2-option-produto span {
  color: var(--c-black) !important;
}
.select2-selection-produto span {
  color: var(--c-white) !important;
}
.select2-option-produto img,
.select2-selection-produto img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.select2-results__option .select2-option-produto img {
  width: 32px;
  height: 32px;
}

/* Formulário cadastro-cupom — inputs nativos: bloco global vld-form; Select2 alinhado ao cadastro pessoal */
/* Zera margem herdada de .select2-selection--single global (limppano: 15px 0 6px), que deslocava o campo */
.section.cadastro-cupom .select2-container--default .select2-selection--single {
  height: 50px !important;
  min-height: 50px !important;
  margin: 0 !important;
  background: #0000b2 !important;
  border: 1px solid #0823b3 !important;
  border-radius: 0.4rem !important;
  color: var(--c-white) !important;
  display: flex !important;
  align-items: center !important;
}
.section.cadastro-cupom .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--c-white) !important;
  line-height: 1.25 !important;
  top: 0 !important;
  align-self: center;
}
.section.cadastro-cupom .select2-container--default.select2-container--focus .select2-selection--single,
.section.cadastro-cupom .select2-container--default.select2-container--open .select2-selection--single {
  background: #0104bf !important;
  border: 1px solid #1035ea !important;
  border-bottom: 1px solid #ffff00 !important;
}
.section.cadastro-cupom .select2-container--default .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.95) !important;
}
.section.cadastro-cupom .select2-container--default .select2-selection__arrow b {
  border-color: var(--c-white) transparent transparent transparent !important;
}

/* Select de produto — nomes longos (nome + embalagem) com altura flexível, alinhado ao campo quantidade */
#cadastrocupom-ProdutoItem + .select2-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#cadastrocupom-ProdutoItem + .select2-container .select2-selection--single {
  height: auto !important;
  min-height: 50px !important;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}
#cadastrocupom-ProdutoItem + .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 1.25 !important;
  white-space: normal !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0.8rem !important;
  color: var(--c-white) !important;
  width: 100%;
}

/* Linha produto + quantidade: topo alinhado (evita deslocamento vertical entre colunas) */
.section.cadastro-cupom [data-plugin="tbitems"][data-tbitems="Produtos"] > form > .row.d-flex {
  align-items: flex-start !important;
}

/* Mesma altura mínima e sem margem extra no input de quantidade */
.section.cadastro-cupom #cadastrocupom-ProdutoQtd.form-control {
  min-height: 50px !important;
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
  line-height: 1.25 !important;
  box-sizing: border-box !important;
}

/*
* float-placeholder (fenix.js insere antes do select/input quando há valor).
* .section.cadastro-cupom .float-placeholder { top: 5px } quebrava o alinhamento
* com o padrão global (top: -9px; left: 0.8rem), como no campo Data da compra.
*/
.section.cadastro-cupom .cadastro-float--produto .float-placeholder,
.section.cadastro-cupom .cadastro-float--qtd .float-placeholder {
  top: -15px;
  left: 0.8rem;
  right: auto;
  z-index: 4;
}

/* Bootstrap Datepicker — legibilidade (+1rem em relação ao tamanho base ~1.4rem) */
.datepicker-dropdown.dropdown-menu,
.datepicker.datepicker-dropdown {
  font-size: calc(1.3rem + 0rem);
  font-weight: 500;
}
.datepicker-dropdown table th,
.datepicker-dropdown table td,
.datepicker table th,
.datepicker table td {
  font-size: inherit;
}

/* Datepicker — texto blue1; hover e selecionado: fundo bluelight1 + texto branco */
.datepicker table tr td,
.datepicker table tr th,
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  color: var(--c-blue1);
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused,
.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
  background: var(--c-bluelight1) !important;
  color: var(--c-white) !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.focused,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.today.active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover {
  background: var(--c-bluelight1) !important;
  color: var(--c-white) !important;
  background-image: none !important;
  text-shadow: none !important;
}

.datepicker table tr td.today:not(.active) {
  color: var(--c-blue1);
  background-color: transparent;
}

.datepicker table tr td.today:not(.active):hover {
  background: var(--c-bluelight1) !important;
  color: var(--c-white) !important;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: rgba(0, 50, 160, 0.45);
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: var(--c-bluelight1);
  color: var(--c-white);
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: var(--c-bluelight1)!important;
  color: var(--c-white)!important;
}

.btn-cupompopup {
  background: transparent !important;
  border: none !important;
  color: var(--c-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 900;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.btn-cupompopup:hover {
  color: var(--c-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-cupompopup i {
  color: var(--c-white) !important;
  transition: color 0.3s ease;
}
.btn-cupompopup:hover i {
  color: var(--c-white) !important;
  transition: color 0.3s ease;
}

/* Botão Finalizar cadastro — padrão btnFlutuante */
.btn-finalizar-cadastro.btnFlutuante {
  background: #171717 !important;
  border: 1px solid var(--c-green1) !important;
  border-radius: 0rem !important;
  box-shadow: none !important;
  cursor: pointer;
  font-family: var(--font-sans) !important;
  font-weight: 900 !important;
  font-size: 2rem !important;
  padding: 1.6rem 2rem 1.5rem 2rem !important;
  height: 50px !important;
}
.btn-finalizar-cadastro.btnFlutuante:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.btn-finalizar-cadastro.btnFlutuante i {
  background: var(--c-green1) !important;
  color: var(--c-white) !important;
}
.btn-finalizar-cadastro.btnFlutuante:hover i {
  background: var(--c-white) !important;
  color: var(--c-green1) !important;
}

/* Box responsabilidade — tabela de produtos (cadastro cupom) */
.section.cadastro-cupom .responsabilidade {
  min-height: 9rem;
  margin-bottom: 0;
  padding: 2rem;
  background: #00000020;
  border: 1px solid var(--c-yellow1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 400;
  border-radius: 0;
}
.section.cadastro-cupom .responsabilidade i {
  color: var(--c-gray) !important;
}

/* Tabela produtos — coluna imagem */
.section.cadastro-cupom .table-mobile .td-imagem {
  width: 120px;
  padding: 0.5rem;
  vertical-align: middle;
  text-align: center;
}
.section.cadastro-cupom .table-mobile .td-imagem img {
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Ganhadores — painel FAQ (.faq-container--dark: estilo global) */
.section.ganhadores .faq-container--dark .no-results {
  color: var(--c-white);
  padding: 3rem;
  background: var(--c-black2);
  font-weight: 900 !important;
  border-radius: 0rem;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.section.ganhadores .faq-container--dark .painel-busca {
  width: 100%;
  margin: auto;
  margin-bottom: 2rem;
}
.section.ganhadores .input-group > .custom-select:not(:last-child),
.section.ganhadores .input-group > .form-control:not(:last-child) {
  border: 1px solid #0823b3 !important;
}
@media (max-width: 991px) {
  .section.ganhadores .faq-container--dark {
    padding: 2rem 1.5rem;
  }
}
.ganhadores-search-hide,
.meusnumeros-search-hide {
  display: none !important;
}

/* Meus números / extrato — legado (sem #meusnumeros-empty: usa o bloco #meusnumeros-empty acima) */
.section.meuextrato .faq-container--dark .no-results:not(#meusnumeros-empty) {
  color: var(--c-white);
  padding: 3rem;
  background: var(--c-black2);
  font-weight: 900 !important;
  border-radius: 0rem;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.section.meuextrato .faq-container--dark .painel-busca {
  width: 100%;
  margin: auto;
  margin-bottom: 2rem;
}
.section.meuextrato .input-group > .custom-select:not(:last-child),
.section.meuextrato .input-group > .form-control:not(:last-child) {
  border: 1px solid #0823b3 !important;
}

/* =============================================================================
Central de Mensagens — box e título alinhados ao Cadastro Pessoal
(gradiente #frm-cadastro / #cadastro.cadastro-pessoal em circleform.css)
============================================================================= */
.section.centralmensagens.cadastro-pessoal .padding {
  position: relative;
  z-index: 2;
}

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

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

@media (max-width: 991px) {
  #centralmensagens .title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}

.section.centralmensagens .centralmensagens-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  background: #000096;
  background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%);
  border-radius: 0.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

@media (min-width: 992px) {
  .section.centralmensagens .centralmensagens-box {
    padding: 2rem 2.5rem;
  }
}

.section.centralmensagens .centralmensagens-box .chat-wrapper {
  width: 100%;
}

/* Ganhadores — paginação (alinhada às abas Produtos: pills, gap, amarelo ativo) */
.section.ganhadores .ganhadores-semanal-pagination {
  padding-top: 1.75rem;
  margin-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.section.ganhadores .ganhadores-semanal-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item {
  margin: 0;
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item .page-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.85rem 1.35rem;
  margin-left: 0 !important;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  color: var(--c-blue1);
  background: var(--c-white);
  border: 0 !important;
  border-radius: 0.4rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item:not(.disabled):not(.active) .page-link:hover {
  background: #f0f4fa;
  color: var(--c-blue1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item.active .page-link {
  color: var(--c-blue1);
  background: var(--c-yellow1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item:not(.disabled) .page-link:focus-visible {
  outline: 2px solid var(--c-green1);
  outline-offset: 2px;
}

.section.ganhadores .ganhadores-semanal-pagination .pagination .page-item.disabled .page-link {
  color: var(--c-blue1);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  opacity: 0.75;
  pointer-events: none;
  cursor: not-allowed;
}

@media (max-width: 575px) {
  .section.ganhadores .ganhadores-semanal-pagination .pagination {
    gap: 0.5rem;
  }
  
  .section.ganhadores .ganhadores-semanal-pagination .pagination .page-item .page-link {
    font-size: 1.35rem;
    padding: 0.7rem 1rem;
    min-width: 2.85rem;
  }
}

/* Ganhadores — intro em tela cheia (vídeo ~8s, fade in/out) */
body.ganhadores-intro-active {
  overflow: hidden !important;
  touch-action: none;
}

/* Camada full viewport (altura estável em mobile: dvh / -webkit-fill-available) */
.ganhadores-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200000;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  background: #000;
  opacity: 1;
  transition: opacity 0.65s ease;
}

/* Container cover: recorta o que o vídeo ultrapassar nas laterais / topo / fundo */
.ganhadores-intro-overlay__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Vídeo estilo background-size: cover — proporção nativa, preenche a área, centralizado */
.ganhadores-intro-overlay__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: auto;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.65s ease;
}

/* Fallback: navegadores sem object-fit no vídeo (escala mínima para cobrir o quadro) */
@supports not (object-fit: cover) {
  .ganhadores-intro-overlay__video {
    inset: auto;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }
}

.ganhadores-intro-overlay--video-in .ganhadores-intro-overlay__video {
  opacity: 1;
}

.ganhadores-intro-overlay--leaving {
  opacity: 0;
  pointer-events: none;
}

.ganhadores-intro-overlay--leaving .ganhadores-intro-overlay__video {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ganhadores-intro-overlay,
  .ganhadores-intro-overlay__video {
    transition-duration: 0.01ms !important;
  }
}