/*
*  Template Name: CUSTOM FAUCET - MATH FAUCET
*  Template URI: https://designmp.net
*  Description: Custom Faucet Template
*/
.hidden {
    display: none;
}

.testimonials .single-testimonial .author {
    padding-left: 0px !important;
}

.text-black {
    color: #000 !important;
}

.articleImg {
    width: 50% !important;
}

.border {
    box-shadow: #bd1c1c 1px 5px 0px 0px;
    min-height: 250px;
    max-height: 250px;
    margin-bottom: 20px;
}

.destaque {
    background-color: #af0505;
    color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    position: absolute;
    top: -15px;
    right: -30px;
    transform: rotate(45deg);
    z-index: 999;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.destaque i {
    margin-right: 5px;
}

.borda {
    border-width: 0px 5px 5px 0px;
    border-style: solid;
    border-color: var(--titulo);
    border-radius: 5px;
    min-height: 270px;
    max-height: 270px;
    margin-bottom: 20px;
}

.alert {
    min-height: 50px;
    padding: 10px 5px;
}

.borda1 {
    box-shadow: 0 0 0 0.25rem var(--botao) !important;
    border-radius: 5px;
    min-height: 270px;
    max-height: 270px;
    margin-bottom: 20px;
}

.borda_padrao {
    border: 1px 0px 0px 1px #1c4fbd;
    border-radius: 5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price,
.bt {
    border-radius: 5px;
    padding: 10px;
    box-shadow: 1px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.ca {
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(24, 24, 24);
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: rgb(226, 159, 13);
    border-radius: 10px;
    height: 100px;
}

#counter {
    font-weight: bold;
    font-size: 22px;
    color: #0cbc87;
    text-shadow: 0 0 10px rgba(12, 188, 135, 0.8);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.botao {
    display: inline-block;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: var(--botao);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.botao::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.botao:hover::before {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    border-radius: 10px;
}

.botao:hover {
    background: linear-gradient(135deg, #10d4a7, #008c64);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.botao:active {
    background: linear-gradient(135deg, #008c64, #0a7052);
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/**
Sessão título 
*/
/* Contêiner principal */
.titulos {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
}

.titulo {
    color: var(--bs-green);
}

/* Responsividade */
@media (max-width: 768px) {
    .titulos .titulo {
        font-size: 1.5rem;
    }

    .titulos .subtitulo {
        font-size: 1.8rem;
    }
}

/** Custom tabela */
.table-container {
    padding: 10px;
}

/* Tabela personalizada */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
}

/* Cabeçalho da tabela */
.custom-table thead {
    background-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color, #4caf50);
}

.custom-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--bs-greem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Corpo da tabela */
.custom-table td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Linhas alternadas */
.custom-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.custom-table tr:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Ajustes para temas light e dark */
body.light-theme .custom-table td {
    color: #333;
}

body.dark-theme .custom-table td {
    color: #ddd;
}

/* Responsividade */
.table-container .table-responsive {
    overflow-x: auto;
}

.custom-table th,
.custom-table td {
    white-space: nowrap;
}

@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/**
Blog */
/* Estilo para o artigo */
.article-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

/* Imagem */
.article-image-container {
    position: relative;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.article-card:hover .article-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Badge */
.article-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.article-badge {
    background-color: #dc3545;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    text-decoration: none;
}

.article-badge:hover {
    background-color: #b12e3a;
}

/* Título */
.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Conteúdo */
.article-content {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Categoria e Data */
.article-category {
    font-size: 14px;
    text-transform: capitalize;
}

.article-category a {
    color: inherit;
    text-decoration: none;
}

.article-category a:hover {
    text-decoration: underline;
}

.article-date {
    font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .article-image {
        height: 150px;
    }

    .article-title {
        font-size: 16px;
    }

    .article-content {
        font-size: 13px;
    }
}

.banner {
    margin-top: -40px;
}

@media (max-width: 768px) {
    .banner {
        margin-top: -70px;
    }

    .mobile_menu {
        margin-top: -20px;
    }
}

.header_top {
    max-height: 70px !important;
    margin-top: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}


/**
Como ganhar */
/* Slider Container */
.elegant-slider {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Estilo do card */
.elegant-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.elegant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo do título do card */
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Descrição do card */
.card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}


.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.card .bg-light {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.card h2 {
    font-size: 1.8rem;
    color: #0d6efd;
}


.btn-outline-primary {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Quando o anúncio for destacado (Featured) */
.card-featured {
    background: none !important;
    background-color: transparent !important;
    border: 2px solid #06b850;
    box-shadow: 0 4px 10px rgba(179, 0, 0, 0.15);
}

/* Quando o anúncio for normal */
.card-normal {
    border: 1px solid #f1f1f1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho do card */
.card-header-custom {
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Corpo do card */
.card-body-custom {
    padding: 1.5rem;
    background-color: #fff;
}

/* Rodapé do card */
.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.btn-view {
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-view:hover {
    border: 1px #1ca551 solid;
}

.btn-view a :hover {
    color: #FFF !important;
}

.currency {
    font-size: 1rem;
    color: #6c757d;
}

.amount {
    font-size: 14px !important;
    font-weight: bold;
}

/* Ribbon (faixa de destaque) */
.destaque {
    background-color: #af0505;
    color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    position: absolute;
    top: -10px;
    right: -30px;
    transform: rotate(45deg);
    z-index: 999;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.destaque i {
    margin-right: 5px;
}

/* Linha divisória */
.card-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}

.offer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-card {
    flex: 1 1 calc(25% - 20px);
    max-width: 300px;
    min-width: 200px;
    min-height: 250px;
    border-radius: 15px;
    border: none;
    margin: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 100%);
    opacity: 0.5;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.offer-header {
    padding: 1.25rem 1.25rem 0.5rem;
    position: relative;
}

.offer-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-reward-section {
    text-align: center;
}

.offer-reward {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
}

.currency {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.earn-button {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border: none;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.earn-button:hover {
    background: linear-gradient(to right, #b91c1c, #991b1b);
    transform: translateY(-2px);
}

.earn-button:active {
    transform: scale(0.95);
}

/* Responsividade */
@media (max-width: 768px) {
    .offer-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .offer-card {
        flex: 1 1 100%;
        margin-right: 0;
    }
}

/** Destacar títulos */
.destaque {
    position: relative;
    font-weight: bold;
    background: #08ac6d;
    padding: 2px 5px;
    color: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.destaque::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 5px;
    background: #08ac6d;
    border-radius: 5px;
}

.destaque+.d-block {
    margin-top: 10px;
}

/* Ajustes para telas pequenas (celulares) */
@media (max-width: 768px) {
    .destaque+.d-block {
        margin-top: 5px;
    }

    .destaque {
        font-size: 18px !important;
        margin-top: 5px;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}



/* Estilos do Banner */
.banner {
    padding: 10px 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Estilo para o subtítulo */
.banner .text-center p {
    font-size: 18px;
    margin-bottom: 30px;
}



/* Estilo para a contagem de usuários */
.banner .purecounter {
    color: var(--titulo) !important;
    font-size: 50px;
    font-weight: bold;
}

/* Centralização de conteúdo */
.banner .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.circulo {
    padding: 5px 10px;
    background: linear-gradient(135deg, #e9bf05, #d9a404);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}


.custom-list {
    list-style-type: none;
    /* Remove os pontos padrão da lista */
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
}

.custom-list li::before {
    content: "\f058";
    /* Código Unicode do ícone 'fa-circle-check' */
    font-family: "Font Awesome 6 Free";
    /* Fonte do Font Awesome */
    font-weight: 900;
    /* Estilo do ícone */
    position: absolute;
    /* Posiciona o ícone */
    left: 0;
    /* Alinha o ícone à esquerda */
    top: 50%;
    /* Centraliza verticalmente */
    transform: translateY(-50%);
    color: #0cbc87;
    font-size: 20px;
}



/** Tabela */
.tabela {
    width: 100%;
    text-align: center;
}

.tabela thead tr {
    background: var(--cor-h1) !important;
    color: #05b9c8;
}

.tabela thead tr th {
    font-weight: 500;
    padding: 15px 8px;

}

.tabela tbody tr {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.tabela tbody tr td {
    font-weight: 500;
    padding: 8px;
}

@media screen and (max-width: 499px) {
    .tabela thead {
        display: none;
    }

    .tabela tbody tr {
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: none;
        margin-bottom: 15px;
    }

    .tabela tbody tr:last-child {
        border-bottom: 1px dashed #04e47b;
    }

    .tabela tbody tr td {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2px 0;
    }

    .tabela tbody tr td::before {
        content: attr(data-label);
    }
}

/* Upload imagens */
.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: 2px dashed #0cbc87;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
    background-color: #eaf8f3;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-file-upload label {
    font-size: 1rem;
    font-weight: bold;
    color: #0cbc87;
    cursor: pointer;
    display: block;
    margin: 0;
}

.custom-file-upload input[type="file"]:focus+label {
    outline: none;
    background-color: #eaf8f3;
    border-color: #0cbc87;
}

.modal-backdrop {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)) !important;
    transition: background 0.3s ease;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.dividir {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 2rem 0;
    /* Espaçamento vertical */
    height: 1px;
    /* Linha fina */
    background-color: rgba(0, 0, 0, 0.1);
    /* Cor suave */
}

.dividir::before,
.dividir::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    /* Linhas mais destacadas nas pontas */
    top: 0;
}

.dividir::before {
    left: 0;
}

.dividir::after {
    right: 0;
}

.dividir span {
    position: absolute;
    background-color: #fff;
    /* Cor do fundo para destacar o texto */
    padding: 0 1rem;
    /* Espaçamento ao redor do texto */
    font-size: 1rem;
    font-weight: bold;
    color: #0cbc87;
    /* Cor primária destacada */
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/** UL e Li */
.ul_p {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.li_p {
    background-color: var(--botao);
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.li_p:hover {
    transform: translateX(5px);
}

.alert-warning {
    color: var(--texto);
    background-color: #ff7d31;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bs-body-bg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 250px;
    /* Ajuste conforme necessário */
    padding: 10px;
    border-radius: 5px;
}

/* Exibir o menu ao passar o mouse (desktop) */
@media (min-width: 992px) {
    .custom-dropdown:hover .custom-dropdown-menu {
        display: block;
    }
}

/* Exibir o menu ao tocar (mobile) */
@media (max-width: 991.98px) {
    .custom-dropdown.active .custom-dropdown-menu {
        display: block;
    }
}

/* Estilo para os botões de seleção */
.form-check-label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.form-check-label:hover {
    background-color: #f8f9fa;
    border-color: #007bff;
}

.form-check-input:checked+.form-check-label {
    background-color: #0aa055;
    color: #fff;
    border-color: #09a093;
}

.form-check-input {
    display: none;
}

/* Estilo do input de valor personalizado */
#customAmountInput {
    border: 2px solid #07b371;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    margin-top: 10px;
    transition: border-color 0.3s ease;
}

#customAmountInput:focus {
    border-color: #0dc28b;
    outline: none;
}

/* Layout responsivo para as opções */
.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Estilo para os botões do gateway */
.gateway-radio {
    display: none;
    /* Esconde o input de rádio padrão */
}

.gateway-label {
    display: inline-block;
    padding: 20px 30px;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gateway-label:hover {
    background-color: #e9ecef;
    border-color: #0d8f3e;
}

.gateway-radio:checked+.gateway-label {
    background-color: #0acea3;
    color: #fff;
    border-color: #0aac91;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/** Card user */
.icon-lg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card:hover .icon-lg {
    transform: scale(1.1);
}

.sub-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--texto);
}

.stat-item:hover {
    transform: translateX(5px);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.twofa-box {
    width: 40px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 50px;
    border: 2px solid #0cbc87;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.twofa-box:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    outline: none;
}

.cursor-pointer {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #0cbc87;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    margin-bottom: 10px;
}

.cursor-pointer:hover {
    background-color: #0cbc87;
    color: white;
}

/** pricing-two **/

.pricing-two {
    position: relative;
    padding-bottom: 10px;
}

.pricing-two .section-title {
    margin-bottom: 80px;
}

.pricing-block-two {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 199, 144, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-block-two {
        margin-bottom: 10px;
    }


}

.pricing-block-two .upper-box {
    position: relative;
    display: block;
    background: linear-gradient(45deg, #18bb92, #057055);
    padding: 42px 20px 45px 140px;
}

.pricing-block-two .upper-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 50px;
    top: 40px;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    background: #181818;
    border-radius: 12px;
}

.pricing-block-two .upper-box p {
    font-size: 20px;
    line-height: 30px;

    font-weight: 500;
    margin-bottom: 5px;
}

.pricing-block-two .upper-box h3 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.pricing-block-two .content-box {
    position: relative;
    display: block;
    padding: 50px;
    padding-right: 40px;
    padding-top: 25px;
}

.pricing-block-two .content-box h2 {
    position: relative;
    display: block;
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-block-two .content-box h2 span {
    font-size: 20px;
    font-weight: 500;
}

.pricing-block-two .content-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-block-two .content-box .feature-list {
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    padding-left: 5px;
}

.pricing-block-two li {
    list-style-type: none;
}

.pricing-block-two .content-box .feature-list li:last-child {
    margin-bottom: 0px;
}



.pricing-block-two.active-block {
    background: var(--theme-color);
    transform: translateY(-40px);
    border: none;
}

.pricing-block-two.active-block .upper-box {
    background: #242424;
}

.pricing-block-two.active-block .upper-box .icon-box {
    background: var(--theme-color);
}

.pricing-block-two.active-block .upper-box p,
.pricing-block-two.active-block .upper-box h3 {
    color: #fff;
}

.pricing-block-two.active-block .content-box h2,
.pricing-block-two.active-block .content-box h3,
.pricing-block-two.active-block .content-box .feature-list li {
    color: #111;
}

.pricing-block-two.active-block .content-box a {
    background: #181818;
    border-color: #181818;
    color: var(--theme-color);
}

.pricing-two .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    bottom: -100px;
    width: 792px;
    height: 792px;
    background-repeat: no-repeat;
}

.pricing-two .pattern-layer .pattern-2 {
    position: absolute;
    right: 0px;
    top: -150px;
    width: 792px;
    height: 792px;
    background-repeat: no-repeat;
}

.section {
    margin-top: -100px;
    margin-bottom: 10px;
}


.list-group-flush {
    background-color: var(--titulo) !important;
}

/* Estilos base */
.game-dice-container {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.game-dice-card {
    background-color: var(--menu);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-dice-body {
    padding: 2rem;
}

.game-dice-main-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.game-dice-message-container {
    padding: 1rem 0;
    min-height: 60px;
}

.game-dice-message {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
}

.game-dice-roll-container {
    margin: 1rem 0;
}

.game-dice-roll-number {
    color: #4cc9f0;
    font-size: 5rem;
    font-weight: 700;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.animate-roll {
    animation: diceRoll 0.8s ease-out;
}

@keyframes diceRoll {
    0% {
        transform: scale(0.8) rotate(-20deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.game-dice-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.game-dice-button-col {
    flex: 1;
    max-width: 200px;
}

.game-dice-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-dice-btn-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
}

.game-dice-btn-primary:hover {
    background: linear-gradient(135deg, #3a56d4 0%, #2f0a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.game-dice-btn-secondary {
    background: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%);
    color: white;
}

.game-dice-btn-secondary:hover {
    background: linear-gradient(135deg, #3ab7dd 0%, #3784d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.game-dice-controls {
    margin-top: 2rem;
}

.game-dice-control-group {
    margin-bottom: 1.5rem;
}

.game-dice-label {
    display: block;
    color: #f8f9fa;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-dice-input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-dice-currency-prepend,
.game-dice-percent-prepend,
.game-dice-profit-prepend {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
}

.game-dice-profit-icon {
    width: 20px;
    height: 20px;
    background-color: #4cc9f0;
    border-radius: 50%;
}

.game-dice-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.game-dice-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.3);
}

.game-dice-profit-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(76, 201, 240, 0.1);
    color: #4cc9f0;
    font-size: 1rem;
    font-weight: 600;
}

.game-dice-amount-btn,
.game-dice-win-btn {
    padding: 0 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-dice-amount-btn:hover,
.game-dice-win-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.game-dice-half-btn {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.game-dice-half-btn:hover {
    background: rgba(40, 167, 69, 0.3);
}

.game-dice-double-btn {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.game-dice-double-btn:hover {
    background: rgba(220, 53, 69, 0.3);
}

.game-dice-min-btn,
.game-dice-max-btn {
    background: rgba(108, 117, 125, 0.2);
    color: var(--texto);
}

.game-dice-minus-btn {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.game-dice-plus-btn {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.game-dice-hash-container {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.game-dice-hash-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.game-dice-hash-value {
    color: #4cc9f0;
    font-family: monospace;
    word-break: break-all;
}

/* Responsividade */
@media (max-width: 768px) {
    .game-dice-body {
        padding: 1rem;
    }

    .game-dice-main-area {
        padding: 1rem;
    }

    .game-dice-roll-number {
        font-size: 3.5rem;
    }

    .game-dice-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .game-dice-button-col {
        max-width: 100%;
        width: 100%;
    }

    .game-dice-input-group {
        flex-wrap: wrap;
    }

    .game-dice-amount-btn,
    .game-dice-win-btn {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-dice-roll-number {
        font-size: 2.5rem;
    }

    .game-dice-btn {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .game-dice-input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .game-dice-hash-label {
        font-size: 0.8rem;
    }
}

/* Adicione isso ao seu CSS existente */
@media (min-width: 768px) {
    .mobile-footer-menu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-footer-menu {
        display: flex !important;
    }
}


.mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--menu);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    padding: 0 10px;
    border-radius: 5px 5px 0 0;
    color: var(--texto);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    text-decoration: none;
    font-size: 10px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item i {
    font-size: 22px;
    margin-bottom: 3px;
}

.menu-item abbr {
    color: #FFF !important;
}

.menu-item.active {
    color: white;
    transform: translateY(-20px);
}

.menu-item.active i {
    background: white;
    color: #764ba2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-text {
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}

.menu-item.active .menu-text {
    position: absolute;
    bottom: 10px;
    font-weight: 600;
    color: white;
}



/* Cards (substitui .card e .card-body) */
.upgrade-plan-card {
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.upgrade-plan-card:hover {
    transform: translateY(-5px);
}

.upgrade-plan-card-body {
    padding: 25px;
}

/* Cabeçalho do Plano */
.upgrade-plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.upgrade-plan-title {
    color: #3498db;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.upgrade-plan-name {
    color: #3498db;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Subtítulo (My Upgrade) */
.upgrade-plan-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Lista de Benefícios (substitui <li> padrão) */
.upgrade-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upgrade-plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #34495e;
}

.feature-icon {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Estilos personalizados */
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stats-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.stats-card-body {
    padding: 15px;
}

.stats-title {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
}

.stats-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
}

.stats-col {
    flex: 1;
    text-align: center;
}

.stats-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 5px;
}

.stats-controls {
    display: flex;
    justify-content: space-between;
}

.stats-control-col {
    flex: 1;
    text-align: center;
}

.stats-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 80%;
}

.stats-btn-success {
    background-color: #28a745;
    color: white;
}

.stats-btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.stats-btn-danger {
    background-color: #dc3545;
    color: white;
}

.stats-btn-primary {
    background-color: #007bff;
    color: white;
    width: 100%;
}

.stats-form {
    max-width: 600px;
    margin: 0 auto;
}

.stats-form-group {
    margin-bottom: 15px;
}

.stats-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.stats-form-select,
.stats-form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.stats-hidden {
    display: none;
}

.stats-chart-container {
    margin: 20px auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
    }

    .stats-col {
        margin-bottom: 15px;
    }

    .stats-controls {
        flex-direction: column;
    }

    .stats-control-col {
        margin-bottom: 10px;
    }

    .stats-btn {
        width: 100%;
    }
}

.timer {
    color: rgb(32, 185, 121);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profit-item {
    transition: all 0.3s ease;
    border-left: 4px solid var(--botao);
    min-height: 150px;
}

.profit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #1abc9c 100%);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #6f42c1 0%, #9b59b6 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
}

.form-range {
    background-color: var(--botao) !important;
    padding: 10px 5px;
    border-radius: 20%;
    margin: 10px;
}

.form-range::-webkit-slider-thumb {
    background: var(--botao);
}

.form-range::-moz-range-thumb {
    background: var(--botao);
}

.form-range::-ms-thumb {
    background: var(--botao);
}

.espacinho {
    margin-left: 3px;
    margin-right: 3px;
}

.lang {
    border: 1px solid var(--botao);
    padding: 5px 5px;
    border-radius: 10%;
    font-size: 20px;
    color: var(--titulo) !important;
}

/* Botão MetaMask */
.metamask-btn {
    background-color: #f6851b;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
}

.metamask-btn:hover {
    background-color: #e2761b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 133, 27, 0.2);
}

/* Container centralizado */
.ad-card-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

/* Card */
.ad-card {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    background: var(--menu);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

/* Header */
.ad-card-header {
    background: linear-gradient(135deg, var(--botao) 0%, var(--titulo) 100%);
    padding: 1rem;
    text-align: center;
}

.ad-card-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Body */
.ad-card-body {
    padding: 1rem;
    flex-grow: 1;
}

.ad-card-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.ad-card-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
}

.ad-card-info i {
    margin-right: 0.25rem;
}

/* Footer / botão */
.ad-card-footer {
    padding: 1rem;
    background: var(--menu);
    text-align: center;
}

/* Mobile */
@media (max-width: 576px) {
    .ad-card {
        max-width: 100%;
    }

    .ad-card-title {
        font-size: 1.1rem;
    }

    .ad-card-description {
        font-size: 0.95rem;
    }

    .ad-card-info {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .btn-ad-view {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

.menu_link {
    margin-top: -40px !important;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --danger-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

.dashboard-card {
    background: var(--box);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: var(--texto) !important;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 1s ease-out;

}

.points-value {
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-container {
    background: var(--success-gradient);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
    animation: float 3s ease-in-out infinite;
}

.icon-danger {
    background: var(--danger-gradient);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.stat-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding-left: 1rem;
}

.referral-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.referral-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 15px;
    padding: 1rem;
    font-weight: 500;
}

.btn-copy {
    background: var(--primary-gradient);
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.progress-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--botao);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: '';
    width: 90px;
    height: 90px;
    background: var(--botao);
    border-radius: 50%;
    position: absolute;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.metric-badge {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(-45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(-45deg);
    }
}