.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-190 .elementor-element.elementor-element-5f1be2b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-190 .elementor-element.elementor-element-5f1be2b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-190 .elementor-element.elementor-element-0a051b9 img{width:38%;box-shadow:0px 0px 12px 1px #F707BF;}.elementor-190 .elementor-element.elementor-element-49ab2ce:not(.elementor-motion-effects-element-type-background), .elementor-190 .elementor-element.elementor-element-49ab2ce > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-190 .elementor-element.elementor-element-49ab2ce{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-190 .elementor-element.elementor-element-49ab2ce > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-190 .elementor-element.elementor-element-31a071b img{width:38%;box-shadow:0px 0px 12px 1px #000000;}.elementor-190 .elementor-element.elementor-element-2bd4515 img{width:38%;box-shadow:0px 0px 12px 1px #000000;}.elementor-190 .elementor-element.elementor-element-1d04654{--spacer-size:202px;}.elementor-190 .elementor-element.elementor-element-f19fdbf{--spacer-size:202px;}body.elementor-page-190:not(.elementor-motion-effects-element-type-background), body.elementor-page-190 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}@media(max-width:1024px){.elementor-190 .elementor-element.elementor-element-0a051b9{text-align:center;}.elementor-190 .elementor-element.elementor-element-31a071b{text-align:center;}.elementor-190 .elementor-element.elementor-element-2bd4515{text-align:center;}}@media(max-width:767px){.elementor-190 .elementor-element.elementor-element-0a051b9 img{width:73%;}.elementor-190 .elementor-element.elementor-element-31a071b img{width:73%;}.elementor-190 .elementor-element.elementor-element-2bd4515 img{width:73%;}}/* Start custom CSS for image, class: .elementor-element-0a051b9 *//* Aplica efeito de brilho periódico */
.seu-brilho {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.seu-brilho::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: brilho 5s infinite;
}

@keyframes brilho {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  20% {
    transform: translateX(100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-99389f8 *//* Cores e Fontes - Mantidas, mas otimizadas */
:root {
    --fundo-geral: #f9f9fb; /* Fundo mais claro */
    --fundo-cartao: #ffffff;
    --bola-fundo: #eef1f4; /* Fundo das bolinhas mais cinza/neutro */
    --bola-texto: #34495e; /* Texto mais escuro */
    --porcentagem-verde: #27ae60; /* Verde mais vibrante */
    --texto-principal: #2c3e50;
    --texto-secundario: #95a5a6;
    --cor-borda-cartao: #ecf0f1; /* Borda bem suave */
    --tag-fundo-ativo: #e8ffee;
    --tag-texto-ativo: #2ecc71;
    --tag-fundo-padrao: #eaf2ff;
    --tag-texto-padrao: #3498db;
    --tag-padrao-ouro-fundo: #fff7e6;
    --tag-padrao-ouro-texto: #e67e22; 
    --cor-marli-vip: #8e44ad; /* Cor roxa da marca */
}

/* Estilo Geral do Painel */
.painel-lotofacil {
    font-family: 'Poppins', sans-serif;
    background-color: var(--fundo-geral);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra um pouco mais destacada */
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo do Cabeçalho */
.painel-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cor-borda-cartao);
}

.titulo-principal {
    color: var(--cor-marli-vip);
    font-size: 1.8em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

/* Status Box (Data, Hora e Próxima Atualização) */
.status-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Garante que quebre em mobile */
}

/* Data Principal */
.data-hoje {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--texto-principal);
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--fundo-cartao);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.icone-calendario {
    margin-right: 8px;
}

/* Informação do Topo (Hora Atual e Próxima Atualização) */
.info-topo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85em;
    text-align: right;
}

.horario-atual {
    font-weight: 700;
    color: var(--cor-marli-vip);
    margin-bottom: 3px;
    font-size: 1.3em;
}

.proxima-atualizacao {
    color: var(--texto-secundario);
    font-size: 0.9em;
}

/* Descrição (Blockquote) */
.descricao {
    font-style: italic;
    color: var(--texto-secundario);
    max-width: 80%;
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 10px 0;
    border-left: 3px solid var(--cor-borda-cartao);
}

/* Container de Sequências */
.container-sequencias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Minimo menor para se ajustar melhor */
    gap: 25px;
}

/* Cartão de Sequência */
.cartao-sequencia {
    background-color: var(--fundo-cartao);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--cor-marli-vip); 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cartao-sequencia:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.titulo-e-porcentagem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--cor-borda-cartao);
    padding-bottom: 10px;
}

.titulo {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--texto-principal);
}

.subtitulo {
    display: block;
    font-size: 0.85em;
    color: var(--texto-secundario);
    margin-top: 3px;
}

.porcentagem {
    font-weight: 700;
    color: var(--porcentagem-verde);
    background-color: var(--tag-fundo-ativo);
    padding: 5px 10px;
    border-radius: 20px; 
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.icone-seta {
    margin-left: 5px;
    font-size: 1.2em;
}

/* Bolas de Números */
.numeros-lotofacil {
    padding: 15px 10px;
    background-color: var(--fundo-geral); 
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--cor-borda-cartao);
}

.linha-numeros {
    display: flex;
    justify-content: space-between; 
    margin: 5px 0;
}

.bola {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bola-fundo);
    color: var(--bola-texto);
    font-weight: 600;
    font-size: 1em;
    border: 1px solid var(--cor-borda-cartao);
}

/* Rodapé do Cartão */
.metodo-e-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end; /* Alinha o status e tags na base */
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--cor-borda-cartao);
}

.metodo-aplicado {
    font-size: 0.9em;
    color: var(--texto-secundario);
    margin: 5px 0 10px 0; /* Mais espaço abaixo do título do método */
    flex-basis: 100%;
}

.tags {
    display: flex;
    gap: 8px;
    margin: 5px 0;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75em;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Estilos Específicos das Tags */
.padrao-ouro {
    background-color: var(--tag-padrao-ouro-fundo);
    color: var(--tag-padrao-ouro-texto);
    border: 1px solid var(--tag-padrao-ouro-texto);
}

.alta-precisao, .analise-combinatoria, .metodo-proprietario, .padrao-harmonico, .exclusivo {
    background-color: var(--tag-fundo-padrao);
    color: var(--tag-texto-padrao);
    border: 1px solid var(--tag-texto-padrao);
}

.status-ativo {
    font-size: 0.9em;
    color: var(--tag-texto-ativo);
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.status-ativo::before {
    content: "●"; 
    color: var(--tag-texto-ativo);
    margin-right: 5px;
    font-size: 0.7em;
    animation: blink 1.5s infinite alternate; /* Adiciona um efeito de piscar */
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}

/* Media Query para Mobile (Melhor Responsividade) */
@media (max-width: 768px) {
    .painel-lotofacil {
        padding: 20px;
    }

    .titulo-principal {
        font-size: 1.5em;
    }
    
    .status-box {
        flex-direction: column;
        align-items: center;
    }

    .data-hoje {
        width: 100%;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .info-topo {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .descricao {
        max-width: 100%;
    }

    .linha-numeros {
        justify-content: space-around;
        gap: 5px; /* Adiciona um pequeno gap */
    }
    
    .bola {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.8em;
    }

    .porcentagem {
        font-size: 1em;
    }

    .tags {
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .metodo-aplicado {
        text-align: center;
    }

    .status-ativo {
        margin: 0 auto;
    }

    .metodo-e-status {
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for image, class: .elementor-element-31a071b *//* Container do efeito */
.seu-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Efeito de brilho passando */
.seu-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    animation: shine 3s infinite linear;
}

/* Animação */
@keyframes shine {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        transform: translateX(50%) translateY(50%);
    }
}/* End custom CSS */
/* Start custom CSS for image, class: .elementor-element-2bd4515 *//* Container do efeito */
.seu-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Efeito de brilho passando */
.seu-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    animation: shine 3s infinite linear;
}

/* Animação */
@keyframes shine {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        transform: translateX(50%) translateY(50%);
    }
}/* End custom CSS */