@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  --promo-bg:#06282f;        /* azul bem escuro do layout */
  --promo-accent:#00a8e8;    /* azul claro */
  --promo-yellow:#ffd11f;    /* amarelo do título */
  --promo-text:#d7e9f2;      /* texto claro */
  --promo-muted:#bcd6e3;     /* subtítulo / texto secundário */
  --card-bg: rgba(255,255,255,0.03);
  --info-bg: #00a8e8;
}

@font-face {
  font-family: 'NeoSansStdBold';
  src: url('../fonts/neoSansStdBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NeoSansStdBoldItalic';
  src: url('../fonts//neoSansStdBoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NeoSansStdLight';
  src: url('../fonts/neoSansStdLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

.b0-bottom-navigation{
  background-color: #fff;
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.bottom-menu-navigation-list{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.bottom-menu-navigation-list li{
  flex: 1;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bottom-menu-navigation-list li:hover{
  background-color: #F1F2F4;
}

.bottom-menu-navigation-list li img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.bottom-menu-navigation-list > li a{
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
    font-family: 'NeoSansStdLight';
    font-weight: 700;
    text-decoration: none;
    color: #0F5974;
    font-size: 0.90em;
}

.bottom-menu-navigation-list > li a:hover{
    color: #4ADBFB;
}

.order-buttons{
  margin-bottom:  70px !important;
}

.bases-button-wins{
  width: 100%;
  height: auto;
  margin-top: 100px !important;
  margin-bottom: 50px  !important;
}

.navigation-top {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    background-color: #fff;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000 !important;
}

.base-brand {
    height: 100px;
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.base-brand img{
    width: 250px;
    height: auto;
}

.menu-navigation{
    height: 100px;
    display: flex;
    align-items: center;
}

.menu-navigation-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    align-items: center;
}

.menu-navigation-list > li {
    display: flex;
    margin-right: 5px;
    height: 100px; 
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: center;
    background-color: transparent;

    padding-left: 15px;
    padding-right: 15px;
}

.menu-navigation-list > li:hover {
    background-color: #F1F2F4;
}

.menu-navigation-list > li a{
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
    font-family: 'NeoSansStdLight';
    font-weight: 700;
    text-decoration: none;
    color: #0F5974;
    font-size: 1.05em;
}

.menu-navigation-list > li a:hover{
    color: #4ADBFB;
}

.menu-navigation-list > li > img {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

/* Botão hamburguer (oculto no desktop) */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

/* --- RESPONSIVIDADE --- */
@media screen and (max-width: 768px) {
    .navigation-top {
        justify-content: space-between;
        padding: 0 20px;
        height: 80px;
    }

    .base-brand img {
        width: 180px;
    }

    /* Exibir botão hamburguer */
    .menu-toggle {
        display: block;
    }

    /* Ocultar menu por padrão */
    .menu-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        z-index: 999;
    }

    /* Quando ativo (via JS) */
    .menu-navigation.active {
        display: block;
    }

    .menu-navigation-list {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 20px 0;
    }

    .menu-navigation-list > li {
        margin: 15px 0;
    }

    .menu-navigation-list > li > img {
        width: 35px;
        height: 35px;
    }

    .menu-navigation-list > li > span {
        font-size: 14px;
    }
}

/* section 02 inicio */

.sorteios{
  background-image: url("../imgs/fundo-sorteios-home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.titulo {
  font-weight: 700;
  color: #4ADBFB;
  font-size: 3.5rem;
  margin-top: 30px;
  font-family: 'NeoSansStdBoldItalic';
}

.subtitulo {
  color: #327A91;
  font-size: 1rem;
  font-family: 'NeoSansStdBoldItalic';
  font-weight: 100;
}

.btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 6px 50px;
  font-family: 'NeoSansStdLight';
}

.btn-ativo {
  background: #FF7100;
  color: #fff;
  border: none;
}

.btn-concluidos {
  background: #0BBDE3;
  color: #fff;
  border: none;
}

.card-sorteio {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-sorteio img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.overlay .btn {
  font-size: 1rem;
  font-family: 'NeoSansStdBold';
}

.overlay .data {
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
  margin-top: 5px;
}

.btn-laranja {
  background: #ff7b00;
  color: #fff;
  border: none;
}

.btn-amarelo {
  background: #f7d800;
  color: #000;
  border: none;
}

.btn-azul {
  background: #00aee6;
  color: #fff;
  border: none;
}

.btn-rosa {
  background: #f23292;
  color: #fff;
  border: none;
}

.bshom021{
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: red;
}

/* 02 */

@media screen and (max-width: 512px) {
  .como-participar {
    background-color: #002633;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .order-buttons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mala-img{
    width: 100%;
  }

  .titulo {
    font-weight: 700;
    color: #00aee6;
    font-size: 2.50rem;
    margin-top: 30px;
  }

  .subtitulo {
    color: #555;
    font-size: 1.05rem;
    padding-left: 8px;
    padding-right: 8px;
    font-family: 'NeoSansStdLight';
    font-weight: 600;
  }

  .btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    width: 80%;
    margin-bottom: 5px;
  }

  .overlay > button {
    width: 50% !important;
  }
}

.s2-area{
  margin-bottom: 10px;
}

.como-participar {
  background-color: #002230;
  padding-top: 100px;
  padding-bottom: 100px;
}

.titulo-s2 {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.3;
  font-family: 'NeoSansStdBoldItalic';
}

.titulo-s2 .italico-s2 {
  color: #00ADA9;
  font-style: italic;
  font-weight: 600;
  font-family: 'NeoSansStdBoldItalic';
}

.titulo-s2 .negrito-s2 {
  color: #FBCF00;
  font-weight: 700;
  font-style: italic;
  font-size: 3.7rem;
  font-family: 'NeoSansStdBoldItalic';
}

.imagem-superior img {
  max-width: 400px;
}

.etapa {
  text-align: center;
  font-family: 'NeoSansStdLight';
}

.etapa > img {
  width: 180px;
  height: auto;
  margin-bottom: 20px !important;
}

.circulo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 4rem;
  font-weight: 600;
  color: #00aee6;
  position: relative;
  font-family: 'NeoSansStdLight';
}

.circulo::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border-width: 8px;
  border-style: solid;
  border-color: transparent;
}

.circulo.azul::before {
  border-color: #00b5e2 #00b5e2 transparent transparent;
}

.circulo.cinza::before {
  border-color: #4d4d4d #4d4d4d transparent transparent;
}

.circulo.verde::before {
  border-color: #00c2a8 #00c2a8 transparent transparent;
}

.circulo.amarelo::before {
  border-color: #ffcc00 #ffcc00 transparent transparent;
}

.etapa p {
  color: #fff;
  font-size: 1.10rem;
  max-width: 200px;
  margin: 0 auto;
  font-family: 'NeoSansStdLight';
  font-weight: 700;
}

.s2-bx-titles{
  display: flex;
  justify-content: center;
  align-items: center;
}

.s2-bx-title-img{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 03 */

.bx-s3{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.chegou-a-hora {
  background-color: #00a9a6; /* fundo turquesa */
  color: #fff;
  padding: 80px 0;
}

.titulo-s3 {
  font-size: 3.5rem;
  font-weight: 200 !important;
  margin-bottom:60px !important;
}

.descricao-s3 {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  font-family: 'NeoSansStdLight';
}

.btn-participar {
  background-color: #00628e; /* azul escuro do botão */
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 15px 70px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.3em;
  font-family: 'NeoSansStdLight';
}

.btn-participar:hover {
  background-color: #004f70;
  color: #fff;
}

.mala-img {
  max-width: 700px;
}

/* ===== SEÇÃO PRINCIPAL ===== */
.secao-vencedores {
  background: #FBCF00;
  background-image: url("../imgs/background-home-dps.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #001d3d;
  position: relative;
}

/* ===== TÍTULOS E TEXTOS ===== */
.titulo-vencedores {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 400;

  margin-top: 70px;
  margin-bottom: 40px;
  font-family: 'NeoSansStdLight';
}

.titulo-vencedores strong {
  font-weight: 700;
  color: #001d3d;
  font-family: 'NeoSansStdBold';
}

.texto-vencedores {
  font-size: 1.3rem;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'NeoSansStdLight';
}

.texto-vencedores strong{
  font-size: 1.3rem;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'NeoSansStdBold';
}

/* ===== CARDS ===== */
.box-vencedor {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  padding: 0;
  margin: 0;
}

.box-vencedor:hover {
  transform: translateY(-5px);
}

.box-vencedor img {
  width: 100%;
  height: 280px;
  margin-bottom: 30px;
}

.corpo-vencedor {
  padding: 0px;
}

.rotulo-vencedor {
  color: #00aee6;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'NeoSansStdLight';
}

.nome-vencedor {
  color: #001d3d;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'NeoSansStdBold';
}

.numero-vencedor {
  font-size: 0.95rem;
  color: #001d3d;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

.numero-vencedor span {
  color: #00aee6;
  font-weight: 700;
}

/* ===== BOTÕES ===== */
.botao-vencedor {
  width: 100%;
  display: inline-block;
  background: #001d3d;
  color: #fff;
  font-weight: 500;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 10px;
  transition: background 0.3s;
  font-family: 'NeoSansStdBold';
}

.botao-vencedor:hover {
  background: #003366;
  color: #fff;
}

.botao-ver-todos {
  background: #00eeff;
  background: linear-gradient(180deg,rgba(0, 238, 255, 1) 0%, rgba(0, 168, 219, 1) 62%);
  color: #fff;
  font-weight: 600;
  padding: 20px 60px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.3s;
  font-family: 'NeoSansStdBold';
}

.botao-ver-todos:hover {
  color: #fff !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .titulo-vencedores {
    font-size: 2rem;
  }

  .box-vencedor {
    margin-bottom: 20px;
  }

  .botao-ver-todos {
    background: #00eeff;
    background: linear-gradient(180deg,rgba(0, 238, 255, 1) 0%, rgba(0, 168, 219, 1) 62%);
    color: #fff;
    font-weight: 600;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
    font-family: 'NeoSansStdBold';
  }

  .titulo-s3 {
    font-size: 2.5rem !important;
    font-weight: 200 !important;
    margin-bottom: 30px !important;
  }

  .btn-participar {
    width: 70%;
    background-color: #00628e; /* azul escuro do botão */
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
  }
}


/* ====== SEÇÃO PRINCIPAL ====== */
.bloco-feedback-clientes {
  background: linear-gradient(180deg,rgba(0, 238, 255, 1) 0%, rgba(0, 168, 219, 1) 62%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 100px;
}

/* ====== TÍTULOS ====== */
.titulo-feedback {
  font-size: 2.4rem;
  font-weight: 200;
  color: #ffffff;
  font-family: 'NeoSansStdLight';
}

.subtitulo-feedback {
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 70px;
  font-family: 'NeoSansStdBold';
}

/* ====== CARD PRINCIPAL ====== */
.caixa-feedback {
  background: #fff;
  border-radius: 25px;
  max-width: 750px;
  padding: 35px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  color: #000;
}

.conteudo-feedback {
  position: relative;
}

/* ====== FOTO E PERFIL ====== */
.perfil-feedback img.foto-feedback {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.nome-feedback {
  font-weight: 600;
  color: #222;
}

.cargo-feedback {
  color: #666;
  font-size: 0.9rem;
}

/* ====== TEXTO DO DEPOIMENTO ====== */
.descricao-feedback {
  font-size: 0.90rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

/* ====== SETAS ====== */
.icone-seta-feedback {
  font-size: 2.2rem;
  font-weight: 300;
  color: #00b7df;
  cursor: pointer;
  transition: color 0.3s;
}

.icone-seta-feedback:hover {
  color: #009ac4;
}

.seta-esquerda {
  margin-right: 10px;
}

.seta-direita {
  margin-left: 10px;
}

/* ====== IMAGEM FINAL ====== */
.imagem-feedback img {
  max-width: 650px;
  width: 100%;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {

  /* ====== SEÇÃO PRINCIPAL ====== */
  .bloco-feedback-clientes {
    background: linear-gradient(180deg, rgb(3 192 235) 0%, rgb(0 148 219) 62%);
  }


  .caixa-feedback {
    padding: 25px 20px;
  }

  .icone-seta-feedback {
    font-size: 1.8rem;
  }

  .descricao-feedback {
    font-size: 0.80rem;
  }


  .titulo-feedback {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'NeoSansStdLight';
  }

  .subtitulo-feedback {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 70px;
  }
}

/* quem somos  */

/* ======= Container Principal ======= */
.qs-container {
  padding: 80px 5%;
  background-color: #0f576d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ======= Conteúdo Principal ======= */
.qs-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  margin-bottom: 0px;
}

.qs-text {
  flex: 1 1 700px;
  min-width: 300px;
}

.qs-subtitle {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'NeoSansStdLight';
}

.qs-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
  color: #fff;
  font-family: 'NeoSansStdBold';
}

.qs-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #b2d6e0;
  text-align: left;
  font-family: 'NeoSansStdLight';
  font-weight: 700;
}

/* ======= Imagem ======= */
.qs-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;  
}

.qs-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 0px;
  object-fit: cover;
}

/* ======= Cards ======= */
.qs-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  font-family: 'NeoSansStdBold';
}

.qs-card {
  flex: 1;
  text-align: center;
  border-radius: 10px;
  padding: 15px 0;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'NeoSansStdBold';
}

.qs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.qs-blue {
  background-color: #0094d8;
}

.qs-yellow {
  background-color: #ffb400;
}

.qs-card h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'NeoSansStdBold';
}

.qs-card p {
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}

/* ======= Responsividade ======= */

/* Tablets */
@media (max-width: 1024px) {
  .qs-title {
    font-size: 3.5rem;
  }
  .qs-subtitle {
    font-size: 1.6rem;
  }
  .qs-description {
    font-size: 1rem;
    text-align: center;
  }
}

/* Celulares grandes */
@media (max-width: 900px) {
  .qs-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qs-text {
    flex: 1;
    width: 100%;
  }

  .qs-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0 !important;
  }

  .qs-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }

  .qs-stats {
    gap: 15px;
  }
}

/* Celulares médios */
@media (max-width: 600px) {
  .qs-title {
    font-size: 2.8rem;
  }
  .qs-subtitle {
    font-size: 1.4rem;
  }
  .qs-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .qs-card {
    flex: 1 1 45%;
    padding: 20px 0;
  }
  .qs-card h3 {
    font-size: 2rem;
  }
  .qs-card p {
    font-size: 0.9rem;
  }
}

/* Celulares pequenos */
@media (max-width: 400px) {
  .qs-title {
    font-size: 2.3rem;
  }
  .qs-subtitle {
    font-size: 1.2rem;
  }
  .qs-card {
    flex: 1 1 100%;
  }
}

/* ======= Footer ======= */
.cv-footer {
  background-color: #f8fbfc;
  padding: 60px 15px 40px;
  text-align: center;
  color: #111;
}

.cv-footer-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ======= Logo ======= */
.cv-footer-logo {
  width: 300px;
  margin-bottom: 25px;
}

/* ======= Texto principal ======= */
.cv-footer-text {
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 15px;
}

.cv-footer-text strong {
  font-weight: 600;
}

/* ======= CNPJ ======= */
.cv-footer-cnpj {
  font-size: 14px;
  margin-bottom: 10px;
  color: #222;
}

.cv-footer-cnpj span {
  color: #d42b2b;
  font-weight: 600;
}

/* ======= Links ======= */
.cv-footer-links {
  font-size: 14px;
  margin-bottom: 20px;
}

.cv-footer-links a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cv-footer-links a:hover {
  color: #0099cc;
}

/* ======= Direitos Autorais ======= */
.cv-footer-copy {
  font-size: 13px;
  color: #333;
}

.cv-footer-copy strong {
  font-weight: 700;
}

.cv-footer-copy span {
  color: #555;
  font-weight: 500;
}

/* ======= Responsividade ======= */
@media (max-width: 600px) {
  .cv-footer-logo {
    width: 120px;
  }

  .cv-footer-text {
    font-size: 14px;
  }

  .cv-footer-cnpj,
  .cv-footer-links,
  .cv-footer-copy {
    font-size: 12.5px;
  }

  .cv-footer {
    padding: 40px 10px 30px;
  }
}

/* promo */

.promo-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 140px;
}

.promo-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.promo-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #002b45;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'NeoSansStdBoldItalic';
}

.promo-subtitle {
  background-color: #00a8e8;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 16px;
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'NeoSansStdBoldItalic';
}

.promo-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
  font-family: 'NeoSansStdBold';
  font-weight: 600;
  color: #003366;
}

.promo-btn {
  background-color: #00a8e8;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  margin: 8px;
  font-size: 0.95rem;
  cursor: default;
  font-family: 'NeoSansStdBold';

  width: 320px;
}

.promo-btn:hover {
  background-color: #0092cc;
}

.promo-footer {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 40px;
  color: #333;

  font-family: 'NeoSansStdLight';
}


/* promo */

/* ===== SESSÃO GANHADORES ===== */
.promo-winners-section {
  background-color: #002b45;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.promo-winners-section h2 {
  font-weight: 600;
  font-size: 2.3rem;
  text-transform: uppercase;
  color: #00ADA9;
  margin-bottom: 0px;
  font-family: 'NeoSansStdBoldItalic';
}

.promo-winners-section h3 {
  font-weight: 800;
  font-size: 3.5rem;
  color: #FBCF00;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: 'NeoSansStdBoldItalic';
}

.promo-winner-card {
  text-align: center;
  margin-bottom: 40px;
}

.promo-winner-card img {
  border-radius: 6px;
  width: 100%;
  position: relative;
}

.promo-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #00a8e8;
  opacity: 0.9;
}

.img-vem-ser-proximo{
  width: 350px;
  height: auto;
}

.promo-winner-city {
  color: #00ADA9;
  font-size: 0.9rem;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
  margin-top:  0 !important;
}

.promo-next-btn {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  background-image: linear-gradient(90deg, #00a8e8 0%, #00a8e8 100%);
  padding: 10px 25px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  font-family: 'NeoSansStdBold';
}

.promo-next-btn:hover {
  background-color: #00a8e8;
  color: #fff;
}

/* ===== SESSÃO CHANCE ===== */
.promo-chance-section {
  background-color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.promo-chance-section h2 {
  color: #0BBDE3;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: 'NeoSansStdBoldItalic';
}

.promo-chance-section p {
  color: #727272;
  font-size: 1.60rem;
  margin-bottom: 50px;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

.promo-place-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.promo-place-card img:hover {
  transform: scale(1.03);
}

.promo-place-name {
  margin-top: 10px;
  font-weight: 600;
  color: #727272;
  font-family: 'NeoSansStdLight';
}

/* ===== SEÇÃO HOTÉIS ===== */
.promo-hotels-section {
  background-color: #3ad8ff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: -50px;
}

.promo-hotels-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #FFF;
  margin-bottom: 10px;
  font-family: 'NeoSansStdLight';
}

.promo-hotels-title span {
  color: #002b45;
  font-family: 'NeoSansStdBold';
}

.promo-hotels-subtitle {
  color: #002b45;
  font-size: 1.4rem;
  max-width: 600px;
  font-family: 'NeoSansStdLight';
  margin: 0 auto 50px;
  font-weight: 600;
}

.promo-hotel-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.promo-hotel-card:hover {
  transform: translateY(-5px);
}

.promo-hotel-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.promo-hotel-body {
  text-align: left;
  padding: 20px;
}

.promo-hotel-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ff8c00;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'NeoSansStdBold';
}

.promo-hotel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-hotel-list li {
  font-size: 0.95rem;
  color: #002b45;
  margin-bottom: 6px;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

.promo-hotel-list li::before {
  content: "✔";
  color: #00a8e8;
  margin-right: 8px;
  font-weight: 700;
}

/* ===== SEÇÃO FAQ ===== */
.promo-faq-section {
  padding: 80px 20px;
  text-align: center;
}

.promo-faq-title {
  font-size: 2rem;
  font-weight: 600;
  color: #002b45;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: 'NeoSansStdLight';
}

.promo-faq-subtitle {
  font-size: 3.2rem;
  font-weight: 800;
  color: #00a8e8;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'NeoSansStdBold';
}

.promo-faq-desc {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #001d3d;
  line-height: 1.6;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

/* ===== ACCORDION ===== */
.promo-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.promo-accordion .accordion-button {
  font-weight: 600;
  color: #002b45;
  background-color: #fff;
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'NeoSansStdBold';
}

.promo-accordion .accordion-button:not(.collapsed) {
  background-color: #004b5c;
  color: #fff;
  box-shadow: none;
}

.promo-accordion .accordion-button:focus {
  box-shadow: none;
}

.promo-accordion .accordion-body {
  background-color: #fff;
  color: #002b45;
  font-size: 0.95rem;
  padding: 20px 25px;
  line-height: 1.5;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

.area-adquirir-sorter{
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: 'NeoSansStdBold';

  transition: all 0.3s ease;
}

.area-adquirir-sorter.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px 0;
}

.area-adquirir-sorter > button{
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 10px;
  padding-bottom: 10px;

  border: none;
  outline: none;
  background-color: #fb8500;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  color: #fff;
  cursor: pointer;
  font-family: 'NeoSansStdBold';
}

.area-adquirir-sorter > a {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 10px;
  padding-bottom: 10px;

  border: none;
  outline: none;
  background-color: #fb8500;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  color: #fff;
  cursor: pointer;
  font-family: 'NeoSansStdBold';
  text-decoration: none;
}


@media (max-width: 750px) {

  .area-adquirir-sorter.fixed {
    position: fixed;
    bottom: 80px;
    left: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
  }

  .promo-container {
    width: 100%;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }

  .promo-image {
    width: 100%;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 30px;
  }

  .promo-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #002b45;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
  }

  .promo-subtitle {
    background-color: #00a8e8;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 16px;
    display: inline-block;
    font-size: 1.0rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .promo-text {
    font-size: 0.90em;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;

    margin-bottom: 20px;
  }

  .buttons-promo-bas{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }

  .promo-footer {
    font-size: 0.9rem;
  }

  .area-adquirir-sorter > button{
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;

    font-size: 0.90em;
  }

  .promo-faq-title {
    font-size: 1.30rem;
  }

  .promo-faq-subtitle {
    font-size: 2.0rem;
  }


  .promo-faq-desc {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 0.90rem;
    color: #444;
    line-height: 1.6;
  }

  .cv-footer-text {
    font-size: 0.70em;
    line-height: 1.7;
    color: #222;
    margin-bottom: 15px;
  }

  .promo-hotels-title {
    font-size: 2.3rem;
  }

  .promo-hotels-subtitle {
    color: #002b45;
    font-size: 0.90rem;
    max-width: 700px;
    margin: 0 auto 50px;
  }

}

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

.promo-section {
  padding:72px 20px 100px;
  text-align:center;
  background-color: #002b45;
  margin-top:  100px !important;
}

/* Título */
.promo-title-top {
  font-size:1.6em;
  color:#00ADA9;
  font-weight:600;
  margin-bottom:6px;
  letter-spacing:.6px;
  font-family: 'NeoSansStdBoldItalic';
}
.promo-title-main {
  font-size:3.7em;
  color:#FBCF00;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:34px;
  line-height:1;
  font-family: 'NeoSansStdBoldItalic';
}

/* Layout do conteúdo principal (imagem + infos) */
.promo-winner-wrap{
  max-width:980px;
  margin:0 auto 50px;
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.promo-winner-photo {
  flex:0 0 400px;
  width:400px;
  height:auto;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  border:4px solid rgba(255,255,255,0.03);
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15));
}
.promo-winner-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.promo-winner-info {
  flex:1 1 420px;
  text-align:left;
  min-width:260px;
  font-family: 'NeoSansStdBold';
}

.promo-winner-name {
  font-size:1.6em;
  color:var(--promo-text);
  font-weight:700;
  font-family: 'NeoSansStdLight';
  margin-top:  10px;
  margin-bottom: 0px;
  text-align: center;
}

.promo-info-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:18px;
  flex-direction: column;
}

.promo-info-pill {
  background:var(--info-bg);
  color:#fff;
  padding:10px 14px;
  border-radius:8px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  font-size:1.0em;

  font-family: 'NeoSansStdLight';
  width: 300px;

  display: flex;
  justify-content: center;
  align-items: center;
}


.promo-info-pill > span{
  font-family: 'NeoSansStdBold';
}

.promo-info-pill .promo-pill-value{
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-weight:800;
  margin-left:10px;
  font-family: 'NeoSansStdBold';
  font-size: 1.2em;
}

/* Texto descritivo central */
.promo-desc {
  max-width:820px;
  margin:18px auto 8px;
  color:var(--promo-muted);
  font-size:1.0em;
  line-height:1.6;
  text-align:center;
  font-family: 'NeoSansStdLight';
}

/* Lista de resultados com destaque de links/valores */
.promo-results {
  max-width:720px;
  margin:12px auto 30px;
  color:#00A9DB;
  font-size:1.0em;
  line-height:1.7;
  text-align:center;
  font-family: 'NeoSansStdLight';
}
.promo-results a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-family: 'NeoSansStdLight';
}
.promo-results a:hover{text-decoration:underline}

/* Bloco final de texto */
.promo-final-text {
  max-width:850px;
  margin:26px auto 36px;
  color:var(--promo-text);
  font-size:1.1em;
  line-height:1.6;
  text-align:center;
  font-family: 'NeoSansStdLight';
}

/* Vídeo responsivo */
.promo-video-wrap {
  max-width:820px;
  margin:22px auto 0;
  text-align:left;
}
.promo-video-title {
  color:var(--promo-text);
  font-weight:600;
  margin-bottom:12px;
  font-family: 'NeoSansStdBold';
}
.promo-video {
  width:100%;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  border:6px solid rgba(0,0,0,0.15);
}
.promo-video iframe,
.promo-video video {
  width:100%;
  height:460px;
  display:block;
}

/* Pequenas regras responsivas */
@media (max-width:880px){
  .promo-winner-wrap{ gap:22px; padding:0 6px; }
  .promo-winner-photo{ width:220px; height:220px; flex:0 0 220px; }
  .promo-winner-name{ font-size:18px }
  .promo-title-main{ font-size:36px }
  .promo-video iframe, .promo-video video { height:360px; }
}
@media (max-width:520px){

  .promo-winner-info{ text-align:center; }
  .promo-info-row{ justify-content:center; }
  .promo-video iframe, .promo-video video { height:240px; }
  .promo-title-main{ font-size:30px }
}

/* afiliados */

/* Container principal */
.afl-section {
    padding: 90px 20px;
    background-color: #002b45;
    margin-top: 100px;
}

/* Cabeçalho */
.afl-title-main {
    font-size: 3.6em;
    font-weight: 700;
    color: #FBCF00;
    text-align: center;
    font-family: 'neoSansStdBoldItalic';
}

.afl-title-sub {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 12px;
    color: #00ADA9;
    text-align: center;
    font-family: 'neoSansStdBoldItalic';
}

/* Como Funciona */
.afl-steps-title {
    font-size: 2em;
    font-weight: 700;
    color: #4ADBFB;
    margin-top: 40px;
    font-family: 'NeoSansStdBold';
}

.afl-step-box {
    display: flex;
    margin-top: 26px;
}

.afl-number {
    font-size: 50px;
    font-weight: 900;
    margin-right: 14px;
    line-height: 1;
    font-family: 'NeoSansStdBold';
}

.afl-number.yellow { color: #FFCE00; }
.afl-number.teal { color: #00B5BB; }
.afl-number.blue { color: #4da9ff; }

.afl-step-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'NeoSansStdLight';
}

.afl-step-title.yellow { color: #FFCE00; }
.afl-step-title.teal { color: #00B5BB; }

.afl-step-desc {
    font-size: 1.2em;
    color: #ffffff;
    font-family: 'NeoSansStdLight';
}

/* Placeholder da arte */
.afl-image-box {
    width: 100%;
    max-width: 450px;
    height: 380px;
    background: linear-gradient(140deg, #00C0C8, #4da9ff);
    border-radius: 40px;
    position: relative;
}

.afl-image-box::after {
    content: "";
    width: 200px;
    height: 200px;
    background: rgba(255, 200, 0, 0.8);
    clip-path: polygon(20% 0, 100% 50%, 20% 100%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-10%, -50%);
    border-radius: 10px;
}

/* Responsividade */
@media(max-width: 992px) {
    .afl-title-main { font-size: 42px; }
    .afl-section { text-align: center; }
    .afl-image-box { margin: 50px auto 0; }

    .afl-number {
    margin-right: 0px;
  }
}

@media(max-width: 576px) {
    .afl-title-main { font-size: 34px; }
    .afl-title-sub { font-size: 20px; }
    .afl-steps-title { text-align: center; }
    .afl-step-box {
        /* justify-content: center; */
        text-align: left;
    }
    .afl-number { font-size: 42px; }

    .afl-number {
    margin-right: 20px;
  }
}


/* afiliados 02 */

:root {
    --aff-bg: #28C9E8;
    --aff-text-dark: #02232E;
    --aff-yellow: #FFC500;
    --aff-btn-bg: #043C4A;
    --aff-white: #FFFFFF;
}

.aff-section {
    padding: 5rem 1rem;
    color: var(--aff-text-dark);
    background-color: #4adbfb;
}

.aff-title {
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 2rem;
    font-family: 'NeoSansStdBold';
}

.aff-list {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    font-family: 'NeoSansStdLight';
}

.aff-list li {
  margin-bottom: 15px;
  font-size: 0.90em;
}

.aff-list i {
    margin-right: .5rem;
    font-weight: bold;
    font-family: 'NeoSansStdLight';
}

.aff-list li > img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.aff-btn {
    background: #002230;
    color: #00ADA9;
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    padding: 0.9rem 2rem;
    border-radius: .5rem;
    transition: opacity .3s;
    display: inline-block;
    margin-top: 2rem;
    font-family: 'NeoSansStdBold';
    text-decoration: none;
}

.aff-btn:hover {
    color: #fff;
}

.aff-img {
    width: 100%;
    max-width: 380px;
    height: 300px;
    border-radius: 1rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .aff-img {
        margin-top: 2.5rem;
        height: 250px;
    }

    .afl-section {
      margin-top: 80px !important;
  }
}


/* aff 3 */

/* Seção principal */
.premios-section {
  background: linear-gradient(90deg, #FFD200 0%, #FFB800 100%);
  color: #002233;
  min-height: auto;
}

/* Título */
.titulo-aff-s4 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #002233;
  line-height: 1.3;
  font-family: 'neoSansStdBoldItalic';
  margin-bottom: 40px;
}

/* Lista */
.lista-premios {
  list-style: none;
  padding: 0;
  font-size: 1.20rem;
  color: #333;
}

.lista-premios li {
  margin-bottom: 20px;
  font-family: 'NeoSansStdLight';
  font-weight: 700;
}

.lista-premios img {
  width: 20px;
  width: 20px;
  margin-right: 10px;
}

/* Imagem */
.imagem-premios {
  max-width: 450px;
}

/* Responsividade */
@media (max-width: 992px) {
  .titulo {
    font-size: 1.8rem;
  }
  .imagem-premios {
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .premios-section {
    text-align: center;
    padding: 40px 20px;
  }
  .imagem-premios {
    max-width: 320px;
    margin-top: 20px;
  }

  .b0-bottom-navigation{
    display: block;
  }
}

@media (max-width: 576px) {
  .titulo {
    font-size: 1.5rem;
  }
  .lista-premios li {
    font-size: 0.95rem;
  }
}


/* ============================
   SEÇÃO PRINCIPAL
============================ */
.aff-section {
  background-color: #1ae4ff;
  color: #002233;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* ============================
   TEXTOS
============================ */
.aff-titulo {
  font-weight: 700;
  font-size: 2.7rem;
  color: #002233;
  font-family: 'NeoSansStdBold';
  text-align: left;
}

.aff-descricao {
  font-size: 1.3rem;
  color: #002233;
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: 'NeoSansStdLight';
  font-weight: 700;
  text-align: left;
}

/* ============================
   CARDS
============================ */
.aff-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.aff-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
  width: 400px;
}

.bsbsf1affs{
  padding-left: 50px;
}

.aff-card:hover {
  transform: scale(1.02);
}

.aff-icone {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.aff-card-titulo {
  color: #FF9900;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 'NeoSansStdBold';
}

.aff-card-texto {
  color: #333;
  font-size: 1.20rem;
  font-family: 'NeoSansStdLight';
  font-weight: 700;
}

/* ============================
   BOTÃO
============================ */
.aff-botao {
  background-color: #FFD200;
  color: #002233;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 10px 70px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  font-family: 'NeoSansStdBold';
}

.aff-botao:hover {
  background-color: #FFB800;
  color: #fff;
}

.bsbs0affs{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

/* ============================
   IMAGEM
============================ */
.aff-imagem {
  max-width: 400px;
}

/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 992px) {
  .aff-titulo {
    font-size: 1.8rem;
  }

  .aff-imagem {
    max-width: 320px;
  }
}

@media (max-width: 768px) {

  .aff-descricao{
    text-align: center;
  }
  .aff-section {
    text-align: center;
    padding: 50px 20px;
  }

  .aff-card {
    justify-content: center;
  }

  .aff-imagem {
    margin-top: 40px;
    max-width: 280px;
  }

  .aff-descricao {
    font-size: 0.90rem;
  }

  .aff-botao {
    background-color: #FFD200;
    color: #002233;
    font-weight: 700;
    font-size: 0.95em;
    padding: 20px 70px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-family: 'NeoSansStdBold';
  }

  /* Título */
  .titulo-aff-s4 {
    font-size: 1.80rem;
    margin-bottom: 40px;
  }

  .lista-premios {
    list-style: none;
    padding: 0;
    font-size: 0.90rem;
    color: #333;
    font-family: 'NeoSansStdLight';
    font-weight: 700;
  }

  .img-afiliado-affs1{
    width: 100%;
  }

  .imgpoqsfa {
    width: 80%;
  }

  .imagem-premios{
    width: 100%;
  }

  .promo-section {
    margin-top:  80px !important;
  }

  .bsbsf1affs{
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  .aff-card {
    width: 100% !important;
  }

  .bsbs0affs{
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 576px) {
  .aff-titulo {
    font-size: 1.5rem;
    text-align: center;
  }

  .aff-card-titulo {
    font-size: 0.95rem;
  }

  .aff-card-texto {
    font-size: 0.85rem;
  }

  .titulo-s2 {
    font-size: 2.0rem;
    color: #fff;
    line-height: 1.3;
    font-family: 'NeoSansStdBoldItalic';
  }


  .titulo-s2 .negrito-s2 {
    font-size: 2.5rem;
  }

  .imagem-superior img {
    max-width: 350px;
  }

  .etapa > img {
    width: 120px;
    height: auto;
    margin-bottom: 20px !important;
  }

  .etapa > p{
    text-align: center;
    font-family: 'NeoSansStdLight';
    font-size: 0.90em;
  }

  .bases-button-wins{
    width: 100%;
    height: auto;
    margin-top: 30px !important;
    margin-bottom: 20px  !important;
  }

}

.footer-buttom-affs{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}


/* plans */

.plans-container{
  width: 100%;
  height: 91vh;

  background-image: url("../imgs/background-plans-maps.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  margin: 0 !important;
  margin-top: -100px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.header-section {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 130px;
}

.header-section h1 {
  font-weight: 700;
  color: #003366;
  font-family: 'NeoSansStdLight';
  font-size: 2.8em;
  
}

.header-section img {
  width: 280px;
  height: auto;
  margin-bottom: 10px;
}

.header-section h1 span {
  color: #ff7b00;
  font-family: 'NeoSansStdBold';
}

.header-section p {
  font-size: 1rem;
  color: #444;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
}

.header-section p strong {
  font-size: 1rem;
  color: #444;
  font-family: 'NeoSansStdBold';
  font-weight: 600;
}

.package-card {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.package-card.highlight {
  background-color: #ff7b00;
  color: #fff;
}

.package-card.highlight .btn {
  background-color: #002b45;
  border: none;
}

.package-card h2 {
  font-size: 2.5rem;
  color: #ff7b00;
  font-weight: 700;
}

.header-plan-qnts{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0 0 30px;
}

.header-plan-qnts h2{
  font-size: 4rem;
  color: #ff7b00;
  font-weight: 700;
  padding: 0;
  margin: 0;
  font-family: 'NeoSansStdBold';
  margin-right: 10px;
}

.header-plan-qnts p{
  font-size: 2rem;
  color: #ff7b00;
  font-weight: 600;
  padding: 0;
  margin: 0;
  font-family: 'NeoSansStdLight';
  text-align: left !important;
  line-height: 25px;
}

.value-txt-fillbs{
  font-size: 1.3rem;
  color: #ff7b00;
  font-weight: 900;
  font-family: 'NeoSansStdLight';
}

.value-txt-fillbs strong {
  font-size: 1.7em;
  font-family: 'NeoSansStdLight';
}

.total-txt-fillbs{
  font-size: 1.3rem;
  color: #003366;
  font-weight: 600;
  font-family: 'NeoSansStdLight';
}

.total-txt-fillbs strong{
  font-size: 1.3rem;
  color: #003366;
  font-weight: 600;
  font-family: 'NeoSansStdLight';
}

.package-card.highlight h2 {
  color: #fff;
}

.highlight > .value-txt-fillbs {
  color: #fff !important;
}

.highlight > .total-txt-fillbs {
  color: #FBCF00 !important;
}

.highlight > .total-txt-fillbs > strong{
  color: #FBCF00 !important;
}

.package-card p {
  margin: 5px 0;
  font-weight: 500;
}

.highlight > .header-plan-qnts > p {
  color: #fff !important;
}

.btn-comprar {
  background-color: #002b45;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 25px;
  transition: background-color 0.3s ease;
  width: 100%;
  font-family: 'NeoSansStdLight';
  font-weight: 600;
  font-size: 1.2em;
}

.btn-comprar:hover {
  color: #fff;
}

.active-inMobile{
  display: none !important;
}

@media (max-width: 768px) {

  .bs2faff{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .descricao-s3 {
    font-size: 1.0rem;
    line-height: 1.6;
    text-align: center;
    font-family: 'NeoSansStdLight';
  }

  .package-card {
    margin-bottom: 20px;
  }

  .plans-container{
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    margin-top: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }

  .header-section h1 {
    font-weight: 700;
    color: #003366;
    font-family: 'NeoSansStdLight';
    font-size: 2.8em;
    
  }

  .header-section img {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
  }

  .header-section {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  }

  .promo-title-main {
    font-size:3.0em;
  }

  .promo-title-top{
    font-size: 1.0em;
  }

  .disabledInMobile{
    display: none !important;
  }

  .active-inMobile{
    display: block !important;
    margin-top: 50px !important;
  }

}

.plans-changes > .carousel-track-js > * {
  margin-right: 20px !important;
}