/* Fundo da página */

/* Forçar fundo branco global */
body {
  background-color: #ffffff !important;
}

/* Seção LEX com ID atualizado */
#lex-foto1 {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Conteúdo */
#lex-foto1 .conteudo-lex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Título */
#lex-foto1 h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color:#3533cd; /* TITULO AZUL*/
}

/* Parágrafos e listas */
#lex-foto1 p {
  margin-bottom: 16px;
}

#lex-foto1 ul {
  margin: 20px 0;
  padding-left: 20px;
}

#lex-foto1 ul li {
  margin-bottom: 10px;
}

/* Botão com gradiente e efeito hover translúcido */
#lex-foto1 .btn-lex {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #000000, #3533cd);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

#lex-foto1 .btn-lex:hover {
  background-color: #00000080;
  background-image: none;
  box-shadow: 0 0 12px #00000080;
}





/* Forçar fundo branco em elementos principais */
html,
body,
main,
section,
.container,
.wrap,
.page,
.content {
  background-color: #ffffff !important;
}




/* Botão flutuante (bolha do menu) */
/* Botão flutuante (azul escuro com texto branco) */
#menu-bolha-botao {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3533cd;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#menu-bolha-botao:hover {
  background-color: #1e1ca8;
}

/* Menu flutuante */
#menu-bolha-container {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #ffffff;
  border: 2px solid #3533cd;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
}

#menu-bolha-container.mostrar {
  display: block;
}

/* Botões internos */
.menu-bolha-item {
  display: block;
  background-color: #3533cd;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  margin: 6px 0;
  width: 100%;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-bolha-item:hover {
  background-color: #1e1ca8;
}

/* Oculto (classe utilitária) */
.oculto {
  display: none;
}


/*BLOCO LEGAL */

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

#bloco-marco-legal {
  padding: 40px 20px;
  text-align: center;
}



#conteudo-marco-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

#titulo-marco-legal {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #3533cd;
}

#info-alexandria {
  color: #ad3aad;
  font-weight: bold;
  margin-top: 20px;
}

#botao-legal {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(90deg, #000000, #3533cd);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#botao-legal:hover {
  opacity: 0.85;
}



/* Estilo da seção bloco-ganhos */
.bloco-ganhos {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 20px;
}

/* Título azul fixo */
.ganhos-titulo {
  color: #3533cd;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Botão com efeito pulsante alternando azul, preto e branco */
.btn-lex {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  color: #ffffff;
  background: #3533cd;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  animation: pulsar-cor 3s infinite;
  transition: transform 0.2s ease;
}

.btn-lex:hover {
  transform: scale(1.05);
}

/* Animação pulsante de cor */
@keyframes pulsar-cor {
  0% {
    background-color: #3533cd;
    color: #ffffff;
  }
  33% {
    background-color: #000000;
    color: #ffffff;
  }
  66% {
    background-color: #ffffff;
    color: #3533cd;
  }
  100% {
    background-color: #3533cd;
    color: #ffffff;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .bloco-ganhos {
    flex-direction: column;
  }

  .ganhos-imagem,
  .ganhos-conteudo {
    width: 100%;
    text-align: center;
  }

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



/* STYLES ESPECIFIFICOS PARA O MENU NO RODAPE */

/* Bolha inicial do menu */
.bolha-menu {
  background: linear-gradient(90deg, #000000, #3533cd);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  animation: pulseGradient 3s infinite;
  transition: background 0.4s, transform 0.2s;
}

.bolha-menu:hover {
  transform: scale(1.05);
}

/* Container do menu flutuante */
.menu-lex-flutuante {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  background: #ffffff;
  border: 2px solid #3533cd;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 0 15px rgba(53, 51, 205, 0.4);
}

/* Botões do menu flutuante */
.btn-menu-lex-flutuante {
  background: linear-gradient(90deg, #3533cd, #000000);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px 15px;
  border-radius: 12px;
  cursor: pointer;
  animation: pulseGradient 4s infinite;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-menu-lex-flutuante:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px #3533cd;
}

/* Animação de gradiente pulsante */
@keyframes pulseGradient {
  0% {
    background: linear-gradient(90deg, #000000, #3533cd);
  }
  50% {
    background: linear-gradient(90deg, #3533cd, #ffffff);
  }
  100% {
    background: linear-gradient(90deg, #000000, #3533cd);
  }
}

/* Classe para esconder o menu (caso use JS para alternar) */
.oculto {
  display: none;
}



/* BLOCO DO LOGO E TITULO CENTRALIZADO POR ID */

/* Bloco geral centralizado */
.bloco-logo-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

/* LOGO com ID e animação pulsante */
#logo-centralizado {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pulse-circle 3s infinite;
}

#logo-centralizado img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Título com animação de cor */
.Titulo-pulsante-Principal {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(270deg, #3533cd, #000000, #ffffff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-pulse 5s ease infinite, shadow-pulse 3s infinite;
}

/* Animações */
@keyframes gradient-pulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shadow-pulse {
  0%, 100% {
    text-shadow: 0 0 10px #3533cd;
  }
  50% {
    text-shadow: 0 0 20px #ffffff, 0 0 30px #3533cd;
  }
}

@keyframes pulse-circle {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 51, 205, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(53, 51, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 51, 205, 0);
  }
}




/* Título com animação de cor simule seu ganhos como afiliado no Lex e tambem em quanto vai economizar no economiza.html */


:root {
  --azul-principal: #3533cd;
  --branco: #ffffff;
}

/* TÍTULO PRINCIPAL (menor) */
.titulo-1-pulsante {
  font-size: 1.8rem; /* tamanho reduzido */
  color: var(--azul-principal);
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  animation: pulsarAzul 2.5s infinite;
}

/* SUBTÍTULO (menor) */
.subtitulo-1pulsante {
  font-size: 1.2rem; /* tamanho reduzido */
  color: var(--azul-principal);
  text-align: center;
  margin-bottom: 25px;
  animation: pulsarAzul 3s infinite;
}

/* ANIMAÇÃO DE PULSO */
@keyframes pulsarAzul {
  0% {
    text-shadow: 0 0 3px #3533cd;
  }
  50% {
    text-shadow: 0 0 10px #3533cd;
  }
  100% {
    text-shadow: 0 0 3px #3533cd;
  }
}








/* STYLES DA CALCULADORA DE ECONOMIZAR */


.simulador-ganhos {
  background-color: #ffffff;
  padding: 40px 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(53, 51, 205, 0.15); /* aurora azul */
  margin: 30px auto;
  max-width: 1000px;
  z-index: 1;
}

.simulador-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.simulador-imagem img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(53, 51, 205, 0.4);
}

.simulador-conteudo {
  text-align: center;
  color: #000000;
}

.simulador-conteudo h2 {
  color: #3533cd;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.simulador-conteudo p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.simulador-conteudo label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.simulador-conteudo input,
.simulador-conteudo select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
}

.btn-calcular {
  background: linear-gradient(90deg, #000000, #3533cd);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(53, 51, 205, 0.6);
  transition: 0.3s;
}

.btn-calcular:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(53, 51, 205, 0.8);
}

#resultadoDesconto {
  margin-top: 25px;
  font-weight: bold;
  color: #3533cd;
  font-size: 1.2rem;
}

/* Responsividade */
@media (min-width: 768px) {
  .simulador-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .simulador-imagem,
  .simulador-conteudo {
    flex: 1;
  }

  .simulador-conteudo {
    padding: 0 20px;
    text-align: left;
  }
}


/* ALTERA AS CORES DO TITULO NOS BLOCOS GANHOS */

.bloco-ganhos h2 {
  color: #3533cd;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}



/* Cor padrão azul Lex para todos os h2 dentro da seção Alexandria */
.section-alexandria h2,
.afiliado-titulo,
#app-lex h2 {
  color: #3533cd;
  text-align: center;
  font-weight: 700;
}

/* Se quiser ajustar tamanho e espaçamento também */
.section-alexandria h2,
.afiliado-titulo,
#app-lex h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

