:root {
  /* Degradê botões (laranja MDS) */
  --btn-slide-2: #f9b613;

  --c-purple1: #6a288f;
  --c-yellow1: #fbf9de;
  --c-yellow2: #fffef0;
  --c-orange1: #f9b613;
  /* mostarda / cartão ativo calendário; qrcode.css */
  --c-orange2: #f9b222;
  --c-green1: #00b96e;
  /* alias para gradientes e utilitários que referenciam --c-green2 */
  --c-green2: var(--c-green1);
  /* verde destaque print (ex.: countdown #calendario) */
  --c-green3: #27ae60;

  /* cream seção MDS (#comoparticipar, #calendario) */
  --c-yellow3: #fefdf0;
  /* cartões calendário inativos */
  --c-yellow4: #faf9e4;

  /* roxo print (títulos #calendario) */
  --c-purple2: #62308e;

  /* degradê roxo institucional — uso: background: var(--c-purple1); background: var(--c-gradientPurple1); */
  --c-gradientPurple1: linear-gradient(
    127deg,
    rgba(106, 40, 143, 1) 0%,
    rgba(71, 5, 108, 1) 100%
  );

  --c-black: #000000;
  --c-black2: #313131;
  --c-blackform: #6c757d;
  --c-white: #ffffff;
  --c-graydark: #666666;
  --c-gray: #f7f7f7;
  --c-gray2: #efeeed;
  --c-check: #00b96e;
  --c-error: #ce1212;
  --c-error2: #ce1212;

  /* Tipografia BrandingSF — fonts/Galvji/galvji.css + fonts/Cinematografica/cinematografica.css */
  --font-sans: "Galvji", system-ui, -apple-system, sans-serif;
  --letter-spacing-sans: -0.05rem;
  --font-heading: "Cinematografica", "Galvji", 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: 100px; */
  height: 85px;

  /* Linha inferior: preenchimento L→R conforme scroll (ver ::after) */
  /* background: var(--c-orange1); */
  /* box-shadow: 0 0 20px 1px rgb(1 33 105); */
  background: var(--c-white);
}
@media screen and (max-width: 991px) {
  #menu {
    height: 75px;
  }
}
#menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: calc(var(--menu-scroll-progress, 0) * 100%);
  background: var(--c-purple1);
  pointer-events: none;
  z-index: 1;
}
#menu .navbar-brand {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 999;
  margin-right: 5rem;
}
@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 {
  position: relative;
  width: 115%;
  max-width: 150px;
  transition: all 0.3s ease-in-out;
}
#menu .navbar-brand.navbar-brand-marcas {
  margin-right: 0;
}
#menu .navbar-brand.navbar-brand-marcas img {
  position: relative;
  width: 110%;
  max-width: 100px;
  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: 0rem;
}
@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: 100px; */
  height: 85px;
  padding: 0rem 2rem;
  /* 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: var(--c-white);
  }
  #menu nav .navbar-collapse:not(.show) {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #menu nav .navbar-collapse.show {
    height: auto;
    max-height: calc(100vh - 75px);
    max-height: calc(100dvh - 75px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    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 {
  --menu-link-pad-x: 1.6rem;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--c-purple1);
  padding: 0.2rem 1.6rem 0rem 1.6rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Cinematografica", var(--font-sans);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transform: translateY(-0.08em);
  letter-spacing: 0;
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link::after,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link::after {
  content: "";
  position: absolute;
  left: var(--menu-link-pad-x);
  bottom: -9px;
  width: calc(100% - (var(--menu-link-pad-x) * 2));
  height: 1px;
  background: var(--c-green1);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
#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-green1);
  background: transparent;
  text-decoration: none;
}
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link:hover::after,
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link:focus::after,
#menu nav .navbar-collapse .navbar-nav .nav-item a.nav-link.active::after,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link:hover::after,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link:focus::after,
#menu nav .navbar-collapse .navbar-nav .nav-item button.nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}
@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: 2.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 {
    --menu-link-pad-x: 1.2rem;
    padding: 0 1.2rem;
    font-size: 2.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 {
    --menu-link-pad-x: 2rem;
    font-size: 4rem;
    padding: 3rem 2rem 1rem 2rem !important;
    line-height: 1 !important;
    transform: none;
  }
}
#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-green1);
  background: transparent;
  text-decoration: none;
}
#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-green1);
  background: transparent;
  text-decoration: none;
}

/* Desktop: barra divisória vertical entre itens do menu (referência layout) */
@media (min-width: 992px) {
  #menu nav .navbar-collapse .navbar-nav .nav-item:not(.hide) + .nav-item:not(.hide)::before {
    content: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1em;
    background: var(--c-black);
    pointer-events: 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-purple1);
  transition: all 0.3s ease;
}
#menu .navbar-toggler:hover, #menu .navbar-toggler:focus {
  color: var(--c-orange1);
}
#menu .navbar-toggler:hover svg path, #menu .navbar-toggler:focus svg path {
  fill: var(--c-orange1);
}
#menu .user {
  display: flex;
  gap: 1rem;
  align-items: center;
}
/* Quero participar — verde sólido (menu, seções, CTAs) */
.btn.btn-participar {
  background: var(--c-green1) !important;
  border: none !important;
  color: var(--c-white) !important;
  transition: filter 0.2s ease;
}
.btn.btn-participar:hover,
.btn.btn-participar:focus,
.btn.btn-participar:active {
  filter: brightness(1.1);
}
#menu .user .btn.btn-login {
  background: var(--c-purple1) !important;
  border: none !important;
  color: var(--c-white) !important;
  transition: filter 0.2s ease;
}
#menu .user .btn.btn-login:hover,
#menu .user .btn.btn-login:focus,
#menu .user .btn.btn-login:active {
  filter: brightness(1.1);
}
/* Minha conta (logado) — mesmo visual do Quero participar (green1 + brilho no hover) */
#menu .user .btn.btn-green {
  background: var(--c-green1) !important;
  border: none !important;
  color: var(--c-white) !important;
  transition: filter 0.2s ease;
}
#menu .user .btn.btn-green:hover,
#menu .user .btn.btn-green:focus,
#menu .user .btn.btn-green:active {
  filter: brightness(1.1);
  background: var(--c-green1) !important;
  color: var(--c-white) !important;
}
@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-purple1)!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: 2rem !important;
    line-height: 1.1;
  }
}

/* ============================================== */
/* ============================================== */
/* OVERLOAD | Menu - 1º Estilo | OVERLOAD */
#menu nav {
  justify-content: space-between;
  max-width: 1440px;
}
#menu .navbar-collapse {
  width: 100%;
  gap: 4rem !important;
  justify-content: space-between;
  /* justify-content: end; */
  /* justify-content: center; */
}
#menu .navbar-brand {
  /* top: -20px; */
  position: relative;
}
@media screen and (max-width: 991px) {
  #menu .navbar-brand {
    left: 0;
    position: absolute;
    margin-right: 0rem;
    margin-left: 2rem;
  }
}
#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-orange1);
}*/
@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: 0px 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%;
  background: #ffb514;
}

.footer-wrapper .serpentina {
  position: absolute;
  left: 4%;
  bottom: 25%;
  z-index: 2;
}

.footer-wrapper .lektrek {
  position: absolute;
  right: 4%;
  bottom: 2%;
  z-index: 2;
}

@media (max-width: 991px) {
  .footer-wrapper .lektrek {
    position: absolute;
    right: 20%;
    bottom: 1%;
    z-index: 2;
  }

  .footer-wrapper .lektrek img {
    max-width: 250px;
  }
}

.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;
  position: relative;
  z-index: 3;
}
@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: 500!important;
  line-height: 1;
  color: var(--c-black);
  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-purple1);
  text-decoration: underline;
}
@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: transparent;
}
.footer .padding {
  padding: 7rem 3rem 7rem 3rem;
  margin: 0 auto;
  max-width: 1366px;
}
.footer .padding-footer {
  padding: 0rem 3rem 0rem 3rem;
  margin: 0 auto;
}
.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-yellow2);
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.footer .logo {
  margin-top: 5rem;
}
.footer .logo img {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 991px){
  .footer .padding-footer {
    padding: 4rem 0rem 0rem 0rem;
  }
  .footer .padding {
    padding: 5rem 3rem 10rem 3rem !important;
  }
  .footer .logo {
    margin-top: 0rem;
    margin-bottom: 4rem;
  }
  .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;
  }
}

/* Footer — grid institucional (referência print: duas colunas + divisor) */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 20%) 1px minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: stretch;
}
.footer-grid__divider {
  width: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
  align-self: stretch;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-heading);
  z-index: 3;
}
/* Mesmo efeito de sublinhado do #menu (scaleX + verde) */
.footer-nav__link,
.footer-nav__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: clamp(3.5rem, 1.7vw, 3.5rem)!important;
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0em;
  transition: color 0.3s ease;
}
.footer-nav__link::after,
.footer-nav__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--c-green1);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.footer-nav__link:hover,
.footer-nav__link:focus,
.footer-nav__btn:hover,
.footer-nav__btn:focus {
  color: var(--c-green1);
  background: transparent;
  text-decoration: none;
}
.footer-nav__link:hover::after,
.footer-nav__link:focus::after,
.footer-nav__btn:hover::after,
.footer-nav__btn:focus::after {
  transform: scaleX(1);
  opacity: 1;
}
.footer-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  font-family: var(--font-heading)!important;
  font-weight: 800!important;
}
.footer-institutional {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}
.footer-institutional__branding {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.footer-institutional__banner {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
}
.footer-institutional__legal {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.2vw, 1.5rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--c-white);
  text-align: left;
}
.footer-institutional__legal a {
  color: var(--c-white);
  text-decoration: underline;
}
.footer-institutional__legal a:hover,
.footer-institutional__legal a:focus {
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid__divider {
    display: none;
  }
  .footer-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-nav__link,
  .footer-nav__btn {
    justify-content: center;
  }
  .footer-nav__btn {
    text-align: center;
  }
  .footer-institutional {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 2rem;
  }
  .footer-institutional__branding {
    justify-content: center;
  }
  .footer-institutional__legal {
    text-align: center;
  }
}

/* Tabela - 2º Estilo (layout de referência interna; 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.6rem;
  line-height: 1;
  padding: 2rem 2.5rem !important;
  border-radius: 0;
  border: 0 !important;
  vertical-align: middle !important;
  /* vertical-align: unset !important; */
  text-transform: uppercase!important;
  background-color: transparent !important;
  color: var(--c-yellow2) !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-yellow2);
    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: #00b96e !important;
}
table.table tbody tr:nth-child(even) td {
  background: #00b96e !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: #00b96e !important;
  border-radius: 5rem !important;
  /* border-radius: 0.4rem !important; */
  border: 1px solid #006b1e !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,
.modal form.vld-form input.form-control,
.fenix-popup form.vld-form input.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;
  font-size: 16px !important;
  /* padding: 0.3rem 2rem 0 2rem !important; */
  box-sizing: border-box !important;
}

/* Select nativo: padding vertical do mds.css + altura 50px esmagavam o texto (invisível no WebKit) */
.main .section form.vld-form select.form-control,
.modal form.vld-form select.form-control,
.fenix-popup form.vld-form select.form-control {
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 2.5rem 0 2rem !important;
  line-height: normal !important;
  box-sizing: border-box !important;
  font-size: 16px !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;
  border-radius: 1.5rem !important;
  padding: 1rem 2rem !important;
  font-size: 16px !important;
}

.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 #00b96e inset !important;
  box-shadow: 0 0 0 30px #00b96e inset !important;
  border: 1px solid #006b1e !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: var(--c-purple1) !important;
  border: 1px solid var(--c-purple1) !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: #00b96e !important;
  border: 1px solid var(--c-purple1) !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: #00b96e;
  color: var(--c-white);
}

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

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

/* Alterar senha — campos como cadastro pessoal (#cadastro.cadastro-pessoal / circleform MDS) */
#alterarsenha #frm-alterarsenha .form-control,
#alterarsenha #frm-alterarsenha input.form-control {
  background: var(--c-yellow1) !important;
  border: 1px solid rgba(106, 40, 143, 0.35) !important;
  border-radius: 5rem !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
}

#alterarsenha #frm-alterarsenha .form-control:focus,
#alterarsenha #frm-alterarsenha .form-control:focus-visible,
#alterarsenha #frm-alterarsenha .form-control:active,
#alterarsenha #frm-alterarsenha input.form-control:focus,
#alterarsenha #frm-alterarsenha input.form-control:active {
  background: var(--c-yellow2) !important;
  border-color: var(--c-purple1) !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
  outline: none !important;
}

#alterarsenha #frm-alterarsenha input.form-control:not(:placeholder-shown):not(:focus):not(:active) {
  background: var(--c-yellow1) !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
}

#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill,
#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill:hover,
#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill:focus,
#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill:active {
  -webkit-text-fill-color: var(--c-purple1) !important;
  -webkit-box-shadow: 0 0 0 30px var(--c-yellow1) inset !important;
  box-shadow: 0 0 0 30px var(--c-yellow1) inset !important;
  border: 1px solid rgba(106, 40, 143, 0.35) !important;
}

#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill:focus,
#alterarsenha #frm-alterarsenha input.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--c-yellow2) inset !important;
  box-shadow: 0 0 0 30px var(--c-yellow2) inset !important;
}

#alterarsenha #frm-alterarsenha .form-control::-webkit-input-placeholder,
#alterarsenha #frm-alterarsenha .form-control:-moz-placeholder,
#alterarsenha #frm-alterarsenha .form-control::-moz-placeholder,
#alterarsenha #frm-alterarsenha .form-control:-ms-input-placeholder {
  color: var(--c-purple1) !important;
  opacity: 0.85;
}

#alterarsenha #frm-alterarsenha .eye [data-togglepassword],
#alterarsenha #frm-alterarsenha .eye [data-togglepassword] i {
  background: transparent !important;
  color: var(--c-purple1) !important;
}

/* Esqueci senha — campos no mesmo padrão de Alterar senha (MDS) */
#esquecisenha #frm-esquecisenha .form-control,
#esquecisenha #frm-esquecisenha input.form-control,
#popup-esquecisenha #frm-esquecisenha .form-control,
#popup-esquecisenha #frm-esquecisenha input.form-control {
  background: var(--c-yellow1) !important;
  border: 1px solid rgba(106, 40, 143, 0.35) !important;
  border-radius: 5rem !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
}

#esquecisenha #frm-esquecisenha .form-control:focus,
#esquecisenha #frm-esquecisenha .form-control:focus-visible,
#esquecisenha #frm-esquecisenha .form-control:active,
#esquecisenha #frm-esquecisenha input.form-control:focus,
#esquecisenha #frm-esquecisenha input.form-control:active,
#popup-esquecisenha #frm-esquecisenha .form-control:focus,
#popup-esquecisenha #frm-esquecisenha .form-control:focus-visible,
#popup-esquecisenha #frm-esquecisenha .form-control:active,
#popup-esquecisenha #frm-esquecisenha input.form-control:focus,
#popup-esquecisenha #frm-esquecisenha input.form-control:active {
  background: var(--c-yellow2) !important;
  border-color: var(--c-purple1) !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
  outline: none !important;
}

#esquecisenha #frm-esquecisenha input.form-control:not(:placeholder-shown):not(:focus):not(:active),
#popup-esquecisenha #frm-esquecisenha input.form-control:not(:placeholder-shown):not(:focus):not(:active) {
  background: var(--c-yellow1) !important;
  color: var(--c-purple1) !important;
  -webkit-text-fill-color: var(--c-purple1) !important;
}

#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill,
#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:hover,
#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:focus,
#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:active,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:hover,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:focus,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:active {
  -webkit-text-fill-color: var(--c-purple1) !important;
  -webkit-box-shadow: 0 0 0 30px var(--c-yellow1) inset !important;
  box-shadow: 0 0 0 30px var(--c-yellow1) inset !important;
  border: 1px solid rgba(106, 40, 143, 0.35) !important;
}

#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:focus,
#esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:active,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:focus,
#popup-esquecisenha #frm-esquecisenha input.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--c-yellow2) inset !important;
  box-shadow: 0 0 0 30px var(--c-yellow2) inset !important;
}

#esquecisenha #frm-esquecisenha .form-control::-webkit-input-placeholder,
#esquecisenha #frm-esquecisenha .form-control:-moz-placeholder,
#esquecisenha #frm-esquecisenha .form-control::-moz-placeholder,
#esquecisenha #frm-esquecisenha .form-control:-ms-input-placeholder,
#popup-esquecisenha #frm-esquecisenha .form-control::-webkit-input-placeholder,
#popup-esquecisenha #frm-esquecisenha .form-control:-moz-placeholder,
#popup-esquecisenha #frm-esquecisenha .form-control::-moz-placeholder,
#popup-esquecisenha #frm-esquecisenha .form-control:-ms-input-placeholder {
  color: var(--c-purple1) !important;
  opacity: 0.85;
}

/* 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: 5rem 0 0 5rem !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: #00b96e !important;
  border: 1px solid #006b1e !important;
  border-left: none !important;
  border-radius: 0 5rem 5rem 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: #00b96e !important;
  /* border-color: #00b96e !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-white) !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%;
}

/* Meu extrato — busca como Produtos (max 500px, centralizada) */
.section.meuextrato .produtos-search-faq.meuextrato-search-faq.faq-container--dark,
.section.meuextrato .meuextrato-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 .meuextrato-search-faq .painel-busca {
  width: 100%;
}

/* Busca no topo do cartão (antes da tabela) */
.section.meuextrato .meuextrato-tabela-box .meuextrato-tabela-box__busca {
  margin-bottom: 1.5rem;
}

/* Meu extrato — box verde atrás da tabela (mesmo cartão do FAQ em Dúvidas) */
.section.meuextrato .meuextrato-tabela-box.faq-container--dark {
  background: #009439 !important;
  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 .meuextrato-tabela-box.faq-container--dark .meuextrato-tabela-box__actions {
  margin-bottom: 0;
}

/* Minhas participações — scroll lateral para links longos */
.section.meuextrato #meuextrato-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section.meuextrato #meuextrato-table {
  min-width: 760px;
}

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

  /* Sobrescreve o "modo cards" global da tabela para permitir scroll horizontal */
  .section.meuextrato #meuextrato-table thead {
    display: table-header-group !important;
  }

  .section.meuextrato #meuextrato-table tbody tr {
    display: table-row !important;
  }

  .section.meuextrato #meuextrato-table tbody td {
    display: table-cell !important;
    padding: 1.4rem 1.2rem !important;
    white-space: nowrap;
    vertical-align: middle !important;
  }

  .section.meuextrato #meuextrato-table tbody td .title-table-mobile,
  .section.meuextrato #meuextrato-table tbody td br.mobile {
    display: none !important;
  }
}

/* Sem resultados — igual .section.duvidas .faq-container--dark .no-results */
.section.meuextrato #meuextrato-empty.no-results {
  color: var(--c-black) !important;
  font-size: 1.5rem;
  padding: 2rem 0.5rem !important;
  background: var(--c-orange1) !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;
}

/* Meu extrato — status (ícone + texto por variante) */
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--validado,
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--validado .meuextrato-status__ico {
  color: var(--c-yellow2) !important;
}
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--reprovado,
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--reprovado .meuextrato-status__ico {
  color: var(--c-white) !important;
}
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--invalido .meuextrato-status__label {
  color: var(--c-white) !important;
  font-weight: 700;
}
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--validado,
.section.meuextrato .meuextrato-tabela-box .meuextrato-status--reprovado {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.section.meuextrato .meuextrato-tabela-box .meuextrato-status__ico {
  flex-shrink: 0;
  font-size: 1.1em;
  line-height: 1;
}
.section.meuextrato .meuextrato-status--invalido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.section.meuextrato .meuextrato-tabela-box .btn-meuextrato-upload {
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 1.2rem 2rem 1.3rem 2rem;
  white-space: nowrap;
  height: 40px;
  color: var(--c-purple1);
  border: none !important;
  background: var(--c-yellow2);
}
.section.meuextrato .meuextrato-tabela-box .btn-meuextrato-upload:hover,
.section.meuextrato .meuextrato-tabela-box .btn-meuextrato-upload:active,
.section.meuextrato .meuextrato-tabela-box .btn-meuextrato-upload:focus {
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 1.2rem 2rem 1.3rem 2rem;
  white-space: nowrap;
  height: 40px;
  color: var(--c-purple1);
  border: none !important;
  background: var(--c-yellow2);
  filter: brightness(1.1);
}
.section.meuextrato .meuextrato-ver-detalhes {
  color: var(--c-white);
  text-decoration: underline;
  font-weight: 600;
}
.section.meuextrato .meuextrato-ver-detalhes:hover,
.section.meuextrato .meuextrato-ver-detalhes:focus {
  color: var(--c-orange1);
  text-decoration: none;
}

/* Meu extrato — modo detalhe (1 linha + tabela de itens + Voltar) */
.section.meuextrato .meuextrato-toolbar-voltar,
.section.meuextrato .meuextrato-detalhe-itens {
  display: none;
}
.section.meuextrato #meuextrato-tabela-box.is-detalhe .meuextrato-tabela-box__busca,
.section.meuextrato #meuextrato-tabela-box.is-detalhe .meuextrato-tabela-box__actions {
  display: none !important;
}
.section.meuextrato #meuextrato-tabela-box.is-detalhe .meuextrato-toolbar-voltar {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.section.meuextrato #meuextrato-tabela-box.is-detalhe .meuextrato-detalhe-itens {
  display: block;
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* Voltar — alinha ao upload.html (.btn-cupompopup + ícone); tipografia em .btn-cupompopup */
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar.btn-cupompopup {
  text-align: center;
}
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar .fa-arrow-left {
  vertical-align: -0.06em;
}
/* Ícone amarelo: .btn-cupompopup i força branco — reforça yellow1 no Voltar */
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar.btn-cupompopup i.text-yellow1,
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar.btn-cupompopup:hover i.text-yellow1,
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar.btn-cupompopup:focus i.text-yellow1,
.section.meuextrato .meuextrato-toolbar-voltar .meuextrato-btn-voltar.btn-cupompopup:active i.text-yellow1 {
  color: var(--c-yellow2) !important;
}
.section.meuextrato .meuextrato-detalhe-itens__titulo {
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
}
.section.meuextrato .meuextrato-detalhe-itens__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.section.meuextrato #meuextrato-table-itens tbody td {
  background: #ffffff17 !important;
}
.section.meuextrato .meuextrato-detalhe-itens__total {
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1.25rem 0 0;
  text-align: center;
  text-transform: uppercase;
}
.section.meuextrato .meuextrato-detalhe-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.35rem;
  padding: 4px;
}
.section.meuextrato .meuextrato-detalhe-itens__vazio {
  color: var(--c-white) !important;
  padding: 1.25rem 0.5rem !important;
}

.box-contato {
  display: flex;
  width: 100%;
  margin-top: 40px;
  border-radius: 1rem;
  padding: 4rem;
  align-items: center;
  background: var(--c-yellow1);
  background: -webkit-linear-gradient(360deg, var(--c-yellow1) 0%, var(--c-green1) 60%);
  background: -moz-linear-gradient(360deg, var(--c-yellow1) 0%, var(--c-green1) 60%);
  background: linear-gradient(360deg, var(--c-yellow1) 0%, var(--c-green1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9b613", endColorstr="#00b96e", 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-yellow2) !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;
  border-radius: 5rem !important;
}
.box-contato .formulario-box-contato #frm-contato .form-check-input:checked {
  background-color: var(--c-yellow2) !important;
  border-color: var(--c-yellow2) !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;
}

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

.section.meusdados label.custom-control-label {
  color: var(--c-black) !important;
  padding-top: 0.2rem;
}

.section.meusdados .form-check-input {
  background-color: var(--c-yellow2) !important;
  border-color: var(--c-green1) !important;
}
.section.meusdados .form-check-input:checked {
  background-color: var(--c-green1) !important;
  border-color: var(--c-green1) !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-orange1);
}
#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-yellow2);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: start;
}
.box-contato .description {
  color: var(--c-white);
  font-size: 1.6rem;
  font-weight: 500;
}

/* Temas (Botões) */
/* ====== Theme 1 ====== */
/* ===================== */
/* ====== Theme 2 ====== */
/* ===================== */
/* ====== Theme 3 ====== */
/* ===================== */
/* ====== Theme 4 ====== */
/* ===================== */
/* ====== Botão (Padrão) — slider esquerda→direita + gradiente amarelo   ====== */
/* ============================ */
.btn {
  --btn-bg-solid: var(--c-white);
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-purple1);
  position: relative;
  padding: 1.2rem 2.7rem 1.2rem 2.7rem;
  border-radius: 10rem;
  border: none !important;
  height: 44px;
  background: linear-gradient(
  90deg,
  #6a288f 0%,
  #6a288f 38%,
  #6a288f 50%,
  #6a288f 50%,
  #6a288f 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, 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: none !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-orange1);
  color: var(--c-white);
  border: none !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;
}
.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: none !important;
}

.btn.btn-danger {
  --btn-bg-solid: #dc3545;
  color: var(--c-white);
  border: none !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;
}
.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: none !important;
}

/* ====== Botão (Outline) ====== */
/* ============================= */
.btn.btn-outline {
  --btn-bg-solid: var(--c-white);
  color: var(--c-orange1) !important;
  border: none !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-orange1) !important;
  background-position: 0 0;
  border: none !important;
}

.btn.btn-outline2 {
  --btn-bg-solid: var(--c-white);
  color: var(--c-orange1) !important;
  border: none !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-orange1) !important;
  background-position: 0 0;
  border: none !important;
}

#menu .btn.btn-outline {
  --btn-bg-solid: rgba(255, 255, 255, 0.12);
  color: var(--c-orange1) !important;
  border: none !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-orange1) !important;
  background-position: 0 0;
  border: none !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;
}

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

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

@media (max-width: 991px) {
  .btn {
    line-height: 1.4;
  }
}

/* Btn Red */
.btn-red,
.btn-purple1 {
  --btn-bg-solid: var(--c-purple1);
  color: var(--c-white);
  border: none !important;
  line-height: 1.3;
}
.btn-red:hover,
.btn-purple1:hover {
  filter: brightness(1.1);
}
.btn-red span,
.btn-purple1 span {
  color: var(--c-white);
}
.btn-red svg path,
.btn-purple1 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),
.btn-purple1:focus:not(:disabled):not(.disabled),
.btn-purple1:hover:not(:disabled):not(.disabled),
.btn-purple1.active:not(:disabled):not(.disabled) {
  color: var(--c-white);
  background-position: 0 0;
  border: none !important;
}
.btn-red:focus svg path,
.btn-red:hover svg path,
.btn-red.active svg path,
.btn-purple1:focus svg path,
.btn-purple1:hover svg path,
.btn-purple1.active svg path {
  stroke: var(--c-white);
}

/* Btn White */
.btn-white {
  --btn-bg-solid: var(--c-white);
  color: var(--c-purple1);
  border: none !important;
  background: var(--c-white);
  line-height: 1.3;
}
.btn-white:hover ,
.btn-white:focus {
  filter: brightness(0.98);
  background: var(--c-white);
}
.btn-white span {
  color: var(--c-purple1);
}
.btn-white svg path {
  stroke: var(--c-white);
}
.btn-white:focus:not(:disabled):not(.disabled),
.btn-white:active:not(:disabled):not(.disabled),
.btn-white:hover:not(:disabled):not(.disabled),
.btn-white.active:not(:disabled):not(.disabled) {
  color: var(--c-purple1);
  background-position: 0 0;
  border: none !important;
  background: var(--c-white)!important;
}
.btn-white:focus svg path,
.btn-white:hover svg path,
.btn-white.active svg path {
  stroke: var(--c-white);
}

/* Btn Green */
.btn-green {
  --btn-bg-solid: var(--c-white);
  color: var(--c-white);
  border: none !important;
  background: var(--c-green1);
  line-height: 1.3;
}
.btn-green:hover {
  color: var(--c-white);
  filter: brightness(1.1);
  background: var(--c-green1);
}
.btn-green span {
  color: var(--c-white);
}
.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: none !important;
}
.btn-green:focus svg path,
.btn-green:hover svg path,
.btn-green.active svg path {
  stroke: var(--c-white);
}

/* Btn Yellow */
.btn-yellow {
  --btn-bg-solid: var(--c-white);
  color: var(--c-purple1);
  border: none !important;
  background: var(--c-yellow2);
  line-height: 1.3;
}
.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:focus-visible,
.btn-yellow:active {
  filter: brightness(1.1);
  background: var(--c-yellow2)!important;
  background-color: var(--c-yellow2)!important;
  color: var(--c-purple1)!important;
}
.btn-yellow span {
  color: var(--c-purple1);
}
.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-purple1);
  background-position: 0 0;
  border: none !important;
}
.btn-yellow:focus svg path,
.btn-yellow:hover svg path,
.btn-yellow.active svg path {
  stroke: var(--c-white);
}

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

/* Exceções: sem slider no acordeão / detalhes (cores vêm de mds.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-yellow2);
  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-yellow2);
  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-yellow2);
}
.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-yellow2);
}
.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-orange1);
}
.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-orange1); */
  /* 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-yellow2) !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-orange1) !important;
}

/* Dúvidas — bloco “Fale conosco” com o mesmo gradiente do cadastro pessoal */
.section.duvidas .box-contato {
  background: #009439 !important;
  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-meuextrato.btn-carregar-faq,
#ganhadores-instantaneos-load-more.btn-carregar-faq,
#ganhadores-sorteios-expand.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-meuextrato.btn-carregar-faq:hover::before,
#ganhadores-instantaneos-load-more.btn-carregar-faq:hover::before,
#ganhadores-sorteios-expand.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-meuextrato.btn-carregar-faq .text-green1,
#ganhadores-instantaneos-load-more.btn-carregar-faq .text-green1,
#ganhadores-sorteios-expand.btn-carregar-faq .text-green1 {
  color: var(--c-yellow2) !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-meuextrato.btn-carregar-faq:hover,
#btn-carregar-meuextrato.btn-carregar-faq:focus,
#btn-carregar-meuextrato.btn-carregar-faq:active,
#ganhadores-instantaneos-load-more.btn-carregar-faq:hover,
#ganhadores-instantaneos-load-more.btn-carregar-faq:focus,
#ganhadores-instantaneos-load-more.btn-carregar-faq:active,
#ganhadores-sorteios-expand.btn-carregar-faq:hover,
#ganhadores-sorteios-expand.btn-carregar-faq:focus,
#ganhadores-sorteios-expand.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-meuextrato.btn-carregar-faq:hover .text-green1,
#btn-carregar-meuextrato.btn-carregar-faq:focus .text-green1,
#btn-carregar-meuextrato.btn-carregar-faq:active .text-green1,
#ganhadores-instantaneos-load-more.btn-carregar-faq:hover .text-green1,
#ganhadores-instantaneos-load-more.btn-carregar-faq:focus .text-green1,
#ganhadores-instantaneos-load-more.btn-carregar-faq:active .text-green1,
#ganhadores-sorteios-expand.btn-carregar-faq:hover .text-green1,
#ganhadores-sorteios-expand.btn-carregar-faq:focus .text-green1,
#ganhadores-sorteios-expand.btn-carregar-faq:active .text-green1 {
  color: var(--c-yellow2) !important;
}

#btn-carregar-meuextrato.btn-carregar-faq:hover .text-green1 {
  color: var(--c-yellow2) !important;
}

.no-results {
  color: var(--c-white);
  border-color: var(--c-white);
  background: var(--c-yellow2);
  font-weight: 500!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-orange1);
  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-yellow2);
  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;
  }
}

/* CTA flutuante — desabilitado (mesmo tratamento que .btn) */
.barra-participe .btn.barra-participe-cta[disabled],
.barra-participe .btn.barra-participe-cta[aria-disabled="true"] {
  opacity: 0.65 !important;
  pointer-events: none;
  cursor: not-allowed !important;
}

.barra-participe .btn.barra-participe-cta[disabled] i,
.barra-participe .btn.barra-participe-cta[aria-disabled="true"] i {
  transform: none !important;
}

/* Legado: finalizar cadastro se usar .btnFlutuante */
.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-orange1) !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 (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: #00b96e !important;
  border: 1px solid #006b1e !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: #00b96e !important;
  border: 1px solid #006b1e !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 amarelo2; hover e selecionado: fundo amarelo1 + texto escuro */
.datepicker table tr td,
.datepicker table tr th,
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  color: var(--c-orange1);
}

.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-yellow2) !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-yellow2) !important;
  color: var(--c-white) !important;
  background-image: none !important;
  text-shadow: none !important;
}

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

.datepicker table tr td.today:not(.active):hover {
  background: var(--c-yellow2) !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-yellow2);
  color: var(--c-white);
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: var(--c-yellow2)!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-yellow2);
  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 — “sem resultados” no FAQ: ver mds.css (mesmo bloco que #duvidas .faq-container--dark .no-results) */
.section.ganhadores .faq-container--dark .painel-busca {
  width: 100%;
  margin: auto;
  margin-bottom: 2rem;
}
/* Prêmios instantâneos: sentinels para carregar mais com scroll da página (IntersectionObserver) */
.section.ganhadores .ganhadores-instantaneos-sentinel {
  height: 1px;
  width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.section.ganhadores .input-group > .custom-select:not(:last-child),
.section.ganhadores .input-group > .form-control:not(:last-child) {
  border: 1px solid #006b1e !important;
}
@media (max-width: 991px) {
  .section.ganhadores .faq-container--dark {
    padding: 2rem 1.5rem;
  }
}
.ganhadores-search-hide,
.meuextrato-search-hide {
  display: none !important;
}

/* Meu extrato — legado (sem #meuextrato-empty: usa o bloco #meuextrato-empty acima) */
.section.meuextrato .faq-container--dark .no-results:not(#meuextrato-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 #006b1e !important;
  border-right: 0px!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 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--c-white);
}

.section.centralmensagens .centralmensagens-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0rem;
  /* padding: 1.25rem 1rem; */
  /* background: var(--c-green1); */
  /* background: linear-gradient(178deg, rgba(0, 0, 150, 1) 0%, rgba(37, 37, 207, 1) 100%); */
  /* border-radius: 1rem; */
  /* 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-orange1);
  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-orange1);
  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-orange1);
  background: var(--c-yellow2);
  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-orange1);
  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;
  }
}

/* Lightgallery (vendor): dropdown usa Open Sans — alinha à marca */
.lg-outer .lg-dropdown a {
  font-family: var(--font-sans) !important;
}

/*
 * Safari/iOS: zoom ao focar se a fonte computada for menor que 16px. Este ficheiro
 * carrega depois de mds.css; regras com 1.5rem !important (≈15px) reativavam o zoom.
 */
textarea,
select,
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="hidden"]) {
  font-size: 16px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered,
.select2-search--dropdown .select2-search__field {
  font-size: 16px !important;
}

/* Botões: sem borda — reforço final (estados com maior especificidade que o tema base .btn) */
.btn:focus:not(:disabled):not(.disabled),
.btn:hover:not(:disabled):not(.disabled),
.btn:focus-visible:not(:disabled):not(.disabled),
.btn:active:not(:disabled):not(.disabled),
.btn.active:not(:disabled):not(.disabled) {
  border: none !important;
  border-width: 0 !important;
}

/* =============================================================================
   Prêmio Redes que Transformam — fundos internos (sem imagens legado) + CTAs MDS
   ============================================================================= */
body:not(.body-index) .main > .section:not(.cadastro-pessoal):not(.inicio):not(.como-participar):not(.premios):not(.duvidas) {
  background: var(--c-yellow1) !important;
  background-color: var(--c-yellow1) !important;
  background-image: none !important;
}

/* Abas (regulamento, ganhadores): estado ativo em verde institucional */
.main .tab-btn .btn.btn-red.active,
.main .tab-btn a.btn.btn-red.active {
  background: var(--c-green1) !important;
  color: var(--c-white) !important;
}

/* Bootstrap — primário alinhado ao verde do fluxo principal */
.btn.btn-primary:not(.formsteps-btn-next):not(.formsteps-btn-finish) {
  --bs-btn-bg: var(--c-green1);
  --bs-btn-border-color: var(--c-green1);
  --bs-btn-hover-bg: var(--c-green1);
  --bs-btn-hover-border-color: var(--c-green1);
  --bs-btn-active-bg: var(--c-green1);
  --bs-btn-active-border-color: var(--c-green1);
  --bs-btn-disabled-bg: var(--c-green1);
  --bs-btn-disabled-border-color: var(--c-green1);
  color: var(--c-white) !important;
}

.btn.btn-primary:not(.formsteps-btn-next):not(.formsteps-btn-finish):hover,
.btn.btn-primary:not(.formsteps-btn-next):not(.formsteps-btn-finish):focus-visible {
  filter: brightness(1.08);
}

/* alterarsenha.html — CTA verde sólido + hover brilho 1.1 (cadastro / teaser) */
#alterarsenha button.btn.btn-primary[type="submit"] {
  --btn-bg-solid: var(--c-green1);
  background: var(--c-green1) !important;
  background-image: none !important;
  color: var(--c-white) !important;
  border: none !important;
}

#alterarsenha button.btn.btn-primary[type="submit"] span {
  color: var(--c-white) !important;
}

#alterarsenha button.btn.btn-primary[type="submit"]:hover,
#alterarsenha button.btn.btn-primary[type="submit"]:focus,
#alterarsenha button.btn.btn-primary[type="submit"]:focus-visible,
#alterarsenha button.btn.btn-primary[type="submit"]:active {
  background: var(--c-green1) !important;
  background-image: none !important;
  color: var(--c-white) !important;
  filter: brightness(1.1);
}

/* Títulos de seção em páginas internas: peso e caixa alta coerentes com index/cadastro */
body:not(.body-index) .main .section .header-section > h2:first-of-type {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1;
  margin-bottom: 2rem;
}