/* CUSTOM CSS MATH DS
/* DESIGNMP.NET */
/* Cards */
/* Fundo das seções

CORES PADRÃO DO SISTEMA:

var(--fundo) = A cor que definiu como background
var(--cor-h1) = A cor que definiu como h1
var(--texto) = A cor que definiu como texto

*/
/* Estilos para o modelo com 7 colunas */

/* ÍNDICE  
- TABULEIRO 2X4 
- TABULEIRO 2X2 
- BOTÃO 
- BORDA E ITENS 
- DROP IMAGE 
- PRODUTOS E PLANOS 
- MODAL DOAÇÃO 
*/

.grid-container-3 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    width: 100%;
    background: transparent;
}

.grid-item-55 {
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    background: transparent;
}


.nome {
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
}


/* Estilos para dispositivos móveis */
@media (max-width: 1250px) {
    .scroll-container {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .aviso {
        background: transparent;
        box-shadow: 0 0 10px var(--cor-h1);
        display: block;
        font-family: cursive;
        font-size: 24px;
        color: var(--cor-h1);
    }

    .grid-container-3 {
        display: inline-flex;
        gap: 10px;
        width: auto;
    }

    .grid-item-55 {
        flex: 0 0 auto;
        width: calc(100% / 3);
        padding: 10px;
    }

    .nome {
        padding: 10px 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 500;
        color: #333;
    }

}

/* Botão rede */
.botao_red {
    padding: 5px 10px;
    background-color: #b90101;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    margin: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.botao_red:hover {
    background-color: #fc1100e8;
    color: #FFFF;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.botao_red:active {
    background-color: #a81e0c;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

/* Botão verde */
.botao_verde {
    padding: 5px 10px;
    background-color: #0ba26b;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    margin: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.botao_verde:hover {
    background-color: #3faa48e8;
    color: #FFFF;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.botao_verde:active {
    background-color: #0ca840;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

.botao {
    /* Estilo Base */
    background-color: var(--botao) !important;
    color: rgb(255, 255, 255);
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Efeitos Visuais */
    box-shadow: 0 4px 15px rgba(0, 100, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito de Brilho no Hover */
.botao:hover {
    background: linear-gradient(135deg, rgb(0, 92, 230) 0%, rgb(0, 180, 255) 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.6);
    transform: translateY(-2px);
}

/* Efeito de "Pressionado" */
.botao:active {
    background-color: var(--botao);
    box-shadow: 0 2px 10px rgba(0, 80, 220, 0.5);
    transform: translateY(1px);
}

/* Efeito de Luz Interna (Opcional) */
.botao::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.botao:hover::before {
    left: 100%;
}

/* Botão responsivo */
.botao_responsivo {
    background-color: var(--cor-h1);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    min-width: 100%;
    cursor: pointer;
    color: var(--texto) !important;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.botao_responsivo:hover {
    background-color: #0ca876;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.botao_responsivo:active {
    background-color: #0ba26b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}



/* Tabuleiro 2x2 */
.centro,
.doadores {
    background-color: transparent;
    margin-bottom: 10px;
}

.image-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.image-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

.overlay-title {
    position: absolute;
    top: 90%;
    left: 50%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    color: var(--texto) !important;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background: #e0ba65;
}

.overlay-title a {
    color: var(--texto) !important;
}

.inativo {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background: #f30b0b;
}

.inativo a {
    color: #fff !important;
}

.livre {
    position: absolute;
    top: 90%;
    left: 50%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.livre a {
    color: #fff !important;
}

.ativo {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    color: #FFFF !important;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background: #1db2b8;
}

.ativo a {
    color: #FFFF !important;
}

.cor1 img {
    border: none;
    filter: none;
}

.cor2 img {
    border: none;
    filter: none;
}

.doadores img {
    background-color: var(--fundo);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: start;
}

.grid-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    text-align: center;
}

.col2,
.col4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.col1 img,
.col2 img,
.col4 img,
.col5 img {
    max-width: 100px;
}

.col1,
.col5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -35%;
}

.col3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media (max-width: 575.98px) {
    .grid-container {
        grid-template-columns: repeat(5, 1fr);
    }

    .overlay-title {
        font-size: 9px;
    }

    .centro,
    .doadores {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }

    .centro img,
    .doadores img {
        max-width: 75px;
        height: auto;
    }

    h2 {
        font-size: 1rem;
    }
}

/* Estilos para o modelo com 3 colunas */
.grid-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item-3 {
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}


.bot {
    font-size: 50px;
    color: #d81a1a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.painel {
    background-image: url('/assets/images/fundo1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}


.deposite-table,
.input-group,
.contact-form-group,
.form-control {
    background: transparent !important;
    color: var(--texto);
}


/* Planos */
.planos {
    margin-top: -10px;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 110px;
    background-attachment: fixed;
    min-height: 460px !important;
    display: block;
}

.fundao {
    position: absolute;
    fill: var(--fundo);
    margin-top: -100px;
    z-index: 9;
}

/* Demais itens */
.border5 {
    border: 2px outset #260329;
    border-radius: 5px;
    padding: 10px;
    margin: 2px;
    transition: all 0.1s ease-in-out;
    min-width: 90%;
}


.border5:hover {
    box-shadow: 0px 0px 10px #f3f3f3;
    transform: scale(1.02);
}

.ok {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    font-size: 45px;
    color: #16691d;
    border: 4px solid #73f0a3;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.okay {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    font-size: 45px;
    color: #16691d;
    border: 4px solid #10b14e;
    padding: 5px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.bg_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    max-width: 100%;
    max-height: 300px;
}

/* BG_img mobile */
@media screen and (max-width: 768px) {
    .bg_img {
        margin-top: 40px;
        max-height: 200px;
        padding-bottom: 20px;
    }
}

.okay .img {
    width: 100%;
    height: auto;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
}

.okay span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: linear-gradient(to right, #1ac072 0%, #19b819 51%, #0a4205 100%);
    line-height: 35px;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}

.nao {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    font-size: 45px;
    color: #ffffff;
    border: 4px solid #ca130d;
    padding: 5px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.nao img {
    width: 100%;
    height: auto;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
}

.nao span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: linear-gradient(to right, #ce6611 0%, #dd1010 51%, #4b1203 100%);
    line-height: 35px;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}

.doar {
    position: relative;
    border: #646464 2px solid;
    visibility: unset;
}

.ok span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: linear-gradient(to right, #1ac072 0%, #19b819 51%, #0a4205 100%);
    line-height: 35px;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}

.no {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    font-size: 45px;
    color: #ca130d;
    border: 4px solid #db3019;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.no span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: linear-gradient(to right, #c7360a 0%, #aa1616 51%, #d80303 100%);
    line-height: 35px;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}


.border1 {
    border: 1px outset #260329;
    border-radius: 5px;
    margin: 10px;
    transition: all 0.1s ease-in-out;
    padding: 5px;
}

.border1:hover {
    box-shadow: 0px 0px 10px #f3f3f3;
    transform: scale(1.02);
}

.border2 {
    border: 2px outset #260329;
    border-radius: 2px;
    margin: 10px;
    transition: all 0.1s ease-in-out;
    padding: 5px;
}

.border2:hover {
    box-shadow: 0px 0px 10px #f3f3f3;
    transform: scale(1.02);
}

.border3 {
    border: 3px outset #260329;
    border-radius: 3px;
    margin: 10px;
    transition: all 0.1s ease-in-out;
    padding: 5px;
}

.border2:hover {
    box-shadow: 0px 0px 10px #f3f3f3;
    transform: scale(1.02);
}

.user-link {
    font-size: 16px;
    color: #FFA500;
    text-decoration: underline;
    overflow: hidden;
}

.border55 {
    border-radius: 10px;
    margin: 10px;
    background-color: var(--cor-h1);
    box-shadow: 3px 3px 5px var(--texto);
    padding: 25px;
}

@media (max-width: 768px) {

    .text-warning {
        font-size: 0.8em;
        padding: 0.25em 0.5em;
    }

    .ok {
        height: 50px;
        width: 50px;
    }

    .okay {
        height: 100px;
        width: 100px;
    }

    .nao span {
        position: absolute;
        height: 20px;
        width: 20px;
        font-size: 10px;
        background: linear-gradient(to right, #ce6611 0%, #dd1010 51%, #4b1203 100%);
        line-height: 20px;
        color: #ffffff;
        left: -3px;
        top: -13px;
        font-weight: 600;
        border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
    }

    .no {
        height: 50px;
        width: 50px;
    }
}

@keyframes colorChange {

    0%,
    100% {
        background-image: url(/img/fundo.jpg);
    }
}

@keyframes scaleUp {

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

    50% {
        transform: scale(1.01);
    }
}

.border4:hover {
    box-shadow: 0px 0px 10px #020e05;
    transform: scale(1.05);
}


.center-column {
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
}

@media (max-width: 767px) {
    .flex-row {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rounded {
        max-height: 100%;
        max-width: 100%;
    }

    .no-gutters {
        margin-left: 0;
        margin-right: 0;
    }

    .col-lg-2 {
        text-align: center;
        width: 100px;
        margin: 5px;
    }

    .col-lg-1 {
        text-align: center;
        width: 100px;
        margin: 5px;
    }

    .dashboard-profile {
        text-align: center;
        width: 95px;
    }

    .image-container {
        max-width: 100%;
    }
}

.bor {

    border: var(--cor-h1);
    box-shadow: black 2px 5px 10px 0px;

}

/* Downloads */
.profile-icon {
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 5px #000000;
    margin-bottom: 20px;
    border-radius: 5px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #0f9db6;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;

    display: block;
    margin: 0 auto;
}

.profile-icon:hover .profile-image {
    transform: scale(1.02);
}

.profile-icon {
    color: #333;
    font-wergb(19, 19, 19): bold;
    margin-top: 10px;
}

.profile-name {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

/* Custom Drop imagens math */

.file-drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ccc;
    cursor: pointer;
}

.file-drop-area:hover {
    background-color: #f5f5f5;
}

.file-drop-area.drag-over {
    background-color: #f5f5f5;
    border-color: #333;
}

.file-message {
    display: block;
    margin-top: 10px;
}

.file-input {
    display: none;
}

.btn-upload {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.btn-upload:hover {
    background-color: #0056b3;
}

#fileToUploadUp {
    display: none;
}

.etapa1 {
    background-color: #fa0626;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.etapa2 {
    background-color: #fa0626;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.concluido {
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.sucesso {
    font-size: 16px;
    color: #fff;
    padding: 10px 28px;
    font-weight: 500;
    border-radius: 50px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    border: none;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #23c223 0%, #5f7e09 51%, #085020 100%);
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}


/* Produto */
.produto {
    position: relative;
    color: var(--texto);
    background: var(--fundo);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), inset 0px 1px 3px rgba(255, 255, 255, 0.2);
    z-index: 1;
    margin-bottom: 20px !important;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}


.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 5px rgba(255, 255, 255, 0.3);
}


.produto h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: oblique !important;
    border: 0px 0px 1px 1px var(--cor-h1);
    color: var(--cor-h1);
}

.figure {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    min-height: 250px;
    border-radius: 8px;
    /*box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);*/
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figure img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 8px;
    display: block;
}


.figure img:hover {
    /*box-shadow: 0px 0px 12px rgba(34, 34, 34, 0.7);*/
    transform: scale(1.05);
}

.preco {
    color: var(--texto);
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 22%;
    transform: translateX(-50%);
    background-color: var(--cor-h1);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: #000000 0px 0px 5px;
    z-index: 1;
}

/* Mobile Styles */
@media only screen and (max-width: 600px) {
    .produto {
        padding: 5px;
        margin-top: 10px;
    }

    .produto figure img {
        min-height: 150px;
    }

    .preco {
        font-size: 1.2em;
    }

    .carousel-inner img {
        min-height: 150px;
    }
}

/*Button designmp.net */
.btn {
    top: 0;
    left: 0;
    transition: all .15s linear 0s;
    position: relative;
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--botao);

    text-transform: uppercase;
    color: #FFFF;
    font-family: arial;
    letter-spacing: 1px;

    /* box-shadow: -4px 4px 0 var(--texto); */
    text-decoration: none;

}

.btn:hover {
    background-color: var(--box);
}

a.btn {
    position: relative;
}

a:active.btn {
    top: 6px;
    left: -6px;
    box-shadow: none;

    &:before {
        bottom: 1px;
        right: 1px;
    }

    &:after {
        top: 1px;
        left: 1px;
    }
}

/* Select custom */
.custom-select {
    margin: 10px;
    padding: 10px 10px !important;
    background-color: var(--fundo);
    border: 1px solid #308bec;
}

.custom-select option {
    background-color: var(--fundo);
}

.custom-select option:hover {
    background-color: var(--fundo);
}

/* Produto sozinho */
.custom-product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px var(--cor-h1);
    overflow: hidden;
}

.custom-product h3 {
    font-style: oblique !important;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px 20px;
    margin: 20px 0;
    text-align: center;
    color: var(--texto);
    text-transform: uppercase;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-product h3:hover {
    transform: scale(1.05);
}

.custom-price {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    box-shadow: 0px 0px 5px 0px var(--cor-h1);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.valor {
    color: var(--texto);
    font-size: 40px;
    padding: 10px 20px;
    border-radius: 5px;
    font-style: unset;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    border-radius: 50%;
    border-color: var(--cor-h1);
    border-style: none;
    display: inline-block;
    line-height: 1;
    margin: 0px;
}


.custom-price small {
    font-size: 14px;
    color: #fff;
}

.custom-figure {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.custom-figure img {
    max-width: 100%;
    border-radius: 8px;
}

.custom-detalhes {
    flex: 2;
    padding: 20px;
}

.custom-product-action {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .custom-product {
        flex-direction: column;
    }

    .custom-detalhes {
        order: 1;
    }
}

/* Menu mobile */
.menu-mobile {
    display: none;
}

@media (max-width: 768px) {
    .menu-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        color: aliceblue !important;
        width: 100%;
        background-color: var(--cor-h1);
        z-index: 9999;
        padding: 0px;
        height: 50px;
    }

    .menu-mobile a {
        color: aliceblue !important;
    }

    .menu-mobile ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-around;
    }

    .menu-mobile li {
        flex: 1;
        text-align: center;
        padding: 0;
    }

    .menu-mobile li i {
        display: block;
        font-size: 14px;
    }

    .menu-mobile li br {
        display: none;
    }


    .menu-mobile li p.texto {
        margin: 0;
        font-size: 14px;
    }
}


/* Select idioma */
.langSel {
    padding: 5px;

}

.titulo {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--cor-h1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.titulo2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--primeira);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Start e Assinatura */
.erro {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #dd0505;
    text-align: center;
    margin-bottom: 50px;
}

.erro h2 {
    font-style: oblique;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--cor-h1);
}

.iniciado {
    background-color: var(--fundo);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #1d1d1d;
    color: var(--texto);
    text-align: center;
    margin-bottom: 50px;
}

.iniciado h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--texto);
}

.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--texto);
    border: 2px solid var(--primary);
    line-height: 50px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    color: #2b2b2b !important;
}

.step-circle.active {
    background-color: var(--cor-h1);
    color: #FFF !important;
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    padding: 50px;
    background-color: var(--primary);
    z-index: -1;
}


.cor1 {
    color: #c4c744 !important;
}

.cor2 {
    color: #fff !important;
}

.grid-container-3 {
    margin-top: 30px !important;
}


.nome {
    color: #333;
    text-align: center;
}



.pb-5 {
    padding-bottom: 0px !important;
}


@media (max-width: 768px) {
    .grid-item {
        max-width: 1000px;
        margin: -22px !important;
    }

    .card-body {
        margin-top: 20px;
    }

}

/* MODAL DOAÇÃO */
.donation-step {
    display: none;
}

.donation-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-indicator .step {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2), 0px 1px 3px rgba(0, 0, 0, 0.1);
    /* Sombra adicionada */
}


.step-indicator .step.active {
    background-color: var(--cor-h1);
    color: #FFF;
}

.step-indicator .step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--primary);
    align-self: center;
    margin: 0 10px;
}

.step-indicator .step::before {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

.step-indicator .step span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 576px) {
    .step-indicator {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 10px;
    }

    .step-indicator .step {
        width: 100%;
        height: 50px;
        margin-bottom: 10px;
    }

    .step-indicator .step-line {
        width: 80%;
        margin: 10px 0;
    }
}


.alerta {
    background-color: rgb(238, 4, 4);
    color: #FFF;
    max-width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
}

.modal-content {
    border: 2px solid var(--titulo);
    background-color: var(--box);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 2px solid var(--box);
}

.modal-title {
    font-size: 1.5rem;
}

.modal-body {
    color: var(--texto);
    padding: 20px;
}

.modal-footer {
    border-top: 2px solid var(--box);
}


.sponsor-section {
    margin-top: 15px;
}

.sponsor-toggle {
    cursor: pointer;
}

.sponsor-info {
    margin-top: 10px;
    display: none;
}

.modal-content {
    width: 100%;
}

/** Rodapé **/
.footer-menu a {
    color: var(--fundo);
}

/** Padding **/
.padding-top {
    margin-top: 0px !important;
}

/** Nome e itens **/
.nome_padrao {
    font-size: 13px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 7px;
    border-radius: 8px;
    display: inline-block;
    margin-left: 40px;
}

.nome_plano {
    font-size: 15px;
    color: #f8f9fa;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.8);
    padding: 1px 4px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1px;
    margin-left: 40px;
}

/** Modal **/
.modal-content {
    background-color: var(--box);
    border-radius: 12px;
    border: none;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Cabeçalho da Modal */
.modal-header {
    border-radius: 2px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1), 0px 4px 20px rgba(0, 0, 0, 0.05);
}

/* Título da Modal */
.modal-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Botão de Fechar */
.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: 0.3s;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

/* Corpo da Modal */
.modal-body {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--texto) !important;
    padding: 15px;
}

/* Personalizando o Fundo da Modal */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.6);
}

/* Efeito no botão de fechar */
.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

.margin-top {
    margin-top: 50px;
}

.item_download {
    margin-top: 20px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1), 0px 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.item_download:hover {
    transform: translateY(-5px);
    box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.2), 0px 8px 40px rgba(0, 0, 0, 0.1);
}

/* Sombra interna suave */
.item_download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 12px;
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.item-titulo {
    font-size: 25px;
    font-weight: bold;
    color: var(--texto);
    padding: 15px;
    text-transform: uppercase;
}

.item-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.botao {
    display: inline-block;
    margin: 15px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #0cbc87;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.botao:hover {
    background: #0a9b6f;
    transform: scale(1.05);
}

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

    .item {
        max-width: 90%;
    }

    .item-titulo {
        font-size: 16px;
    }

    .botao {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.certificado {
    padding: 5px;
    border-radius: 10%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    color: var(--botao);
}

.certificado:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Estilos Gerais da Modal */
.donation-modal {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.donation-modal-header {
    background-color: var(--botao);
    color: #FFF;
    border-bottom: none;
    padding: 20px 30px;
    position: relative;
}

.modal-header-content {
    flex: 1;
}

.donation-modal-header .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.donation-modal-header .modal-title i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    position: absolute;
    right: 20px;
    top: 20px;
}

.btn-close:hover {
    opacity: 1;
}

.donation-modal-body {
    padding: 30px;
    background-color: var(--box);
}

.donation-modal-footer {
    border-top: 1px solid #e9ecef;
    background-color: var(--box);
    padding: 15px 30px;
}

.btn-modal-close {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-modal-close:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Progresso das Etapas */
.donation-progress-container {
    margin-bottom: 30px;
}

.donation-progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.donation-progress-track::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--titulo);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step::before {
    content: '';
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: transparent;
    z-index: 2;
}

.step.active::before {
    background-color: var(--botao);
}

.step:first-child::before {
    left: 50%;
}

.step:last-child::before {
    right: 50%;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    border: 3px solid white;
}

.step.active .step-number {
    background-color: var(--botao);
    color: white;
    box-shadow: 0 4px 10px rgba(37, 117, 252, 0.3);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 0 5px;
}


/* Conteúdo das Etapas */
.donation-steps-container {
    position: relative;
    min-height: 300px;
}

.donation-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.donation-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.step-header h4 {
    font-weight: 600;
    color: var(--titulo) !important;
    margin: 0;
    display: flex;
    align-items: center;
}

.step-header h4 i {
    margin-right: 10px;
    color: #2575fc;
}

.step-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    background-color: #e8f5e9;
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 40%;
}


/* Cards de Destinatário */
.recipient-card {
    background-color: var(--box);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--botao);
}

.admin-card {
    border-top: 4px solid var(--botao);
}

.sponsor-card {
    border-top: 4px solid #fd7e14;
}

.master-card {
    border-top: 4px solid #ffc107;
}

.recipient-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recipient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.recipient-avatar i {
    font-size: 1.5rem;
}

.recipient-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipient-details {
    flex: 1;
}

.recipient-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.recipient-username {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.recipient-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #495057;
    font-size: 0.85rem;
    text-decoration: none;
    background-color: #f1f3f5;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-link i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.contact-link:hover {
    background-color: #e9ecef;
    color: #212529;
    text-decoration: none;
}

/* Detalhes de Pagamento */
.payment-details {
    border-top: 1px dashed #e9ecef;
    padding-top: 15px;
}

.payment-method {
    margin-bottom: 15px;
}

.payment-method label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.wallet-input-group {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.wallet-input-group input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-right: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    background-color: #f8f9fa;
}

.copy-btn {
    background-color: var(--botao);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    background-color: #343a40;
}

/* Instruções e Botão */
.step-instructions {
    display: flex;
    align-items: center;
    background-color: #e7f5ff;
    color: #1864ab;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.step-instructions i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.step-instructions p {
    margin: 0;
}

.submit-step-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2b8a3e 0%, #37b24d 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(43, 138, 62, 0.2);
}

.submit-step-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.submit-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 138, 62, 0.3);
}

.final-step-btn {
    background: linear-gradient(135deg, #e67700 0%, #f08c00 100%);
    box-shadow: 0 4px 15px rgba(230, 119, 0, 0.2);
}

.final-step-btn:hover {
    box-shadow: 0 6px 20px rgba(230, 119, 0, 0.3);
}

/* Feedback */
.donation-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .donation-modal-header {
        padding: 15px 20px;
    }

    .donation-modal-body {
        padding: 20px;
    }

    .donation-progress-track {
        flex-wrap: wrap;
    }

    .step {
        margin-bottom: 25px;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .recipient-info {
        flex-direction: column;
        text-align: center;
    }

    .recipient-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .step-value {
        margin-left: 0%;
    }
}

.plan-card {
    position: relative;
    background: var(--box);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(180deg var(--botao), var(--box));
    animation: rotate 6s linear infinite;
    z-index: 0;
    opacity: 0.15;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.plan-card>* {
    position: relative;
    z-index: 1;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px #00ffe0);
    transition: transform 0.3s ease;
}

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

.plan-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--titulo) !important;
    letter-spacing: 1.5px;
}

.plan-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--botao);
    margin: 2rem 0;
}

.plan-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .plan-card {
        margin-top: 25px;
    }
}

.news {
    padding: 10px;
    border-radius: 5%;
    background-color: var(--box);
}

/** Whats */
.whats {
    position: fixed;
    right: 20px;
    bottom: 20%;
    transform: translateY(50%);
    z-index: 1000;
    padding: 10px;
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats:hover {
    transform: translateY(50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.metamask-alert {
    background: linear-gradient(135deg, rgba(246, 133, 27, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(246, 133, 27, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(246, 133, 27, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.metamask-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.metamask-alert-icon {
    color: #f6851b;
    background: rgba(246, 133, 27, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metamask-alert-icon svg {
    width: 20px;
    height: 20px;
}

.metamask-alert-message h4 {
    color: #f6851b;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.metamask-alert-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.form-control:focus {
    border-color: var(--botao);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
    color: var(--texto);
}

.form-control::placeholder {
    color: var(--texto);
}

/** Botão Mercado Pago */
.mercadopago {
    background-color: #14e0e0;
    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;
}

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

/** Botão Mercado Pago */
.manual_botao {
    background-color: #1cd497;
    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;
}

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

/* 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);
}

.metamask-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.metamask-logo {
    width: 24px;
    height: 24px;
}

.btn-text {
    transition: opacity 0.3s;
}

.metamask-btn.loading .btn-text {
    opacity: 0;
}

/* Spinner CSS puro */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    position: absolute;
    left: calc(50% - 10px);
    opacity: 0;
    animation: spin 1s ease-in-out infinite;
    transition: opacity 0.3s;
}

.metamask-btn.loading .spinner {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Container de alertas */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Estilo base do alerta */
.alert {
    position: relative;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Animações */
.alert.show {
    animation: slideIn 0.3s ease forwards;
}

.alert.hide {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Tipos de alertas */
.alert-success {
    background-color: #28a745;
    border-left: 5px solid #218838;
}

.alert-error {
    background-color: #dc3545;
    border-left: 5px solid #c82333;
}

.alert-warning {
    background-color: #ffc107;
    border-left: 5px solid #e0a800;
    color: #212529;
}

.alert-info {
    background-color: #17a2b8;
    border-left: 5px solid #138496;
}

/* Botão de fechar */
.close-alert {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.close-alert:hover {
    opacity: 1;
}

/* Efeito de hover */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Barra de progresso (opcional) */
.alert::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    to {
        transform: scaleX(0);
    }
}

.botao_flutuante {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: inline-block !important;
    /* Evita que o botão ocupe 100% da largura */
    width: auto !important;
    /* Garante que o tamanho se ajuste ao conteúdo */
    white-space: nowrap;
    /* Evita que o texto quebre */
}


/** 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: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--texto);
}

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

/* Personalização da barra de rolagem vertical */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #3a7bd5;
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #2c65b3;
}

/* Para Firefox */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--botao) rgba(0, 0, 0, 0.1);
}

/* Estilo da Sidebar */
.sidebar {
    width: 270px;
    background: var(--menu) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar,
.sidebar__inner {
    overflow-x: hidden;
    box-sizing: border-box;
}

.sidebar__menu,
.sidebar__submenu ul {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    padding: 0 15px;
    margin: 0;
    box-sizing: border-box;
}


.body-wrapper {
    margin-left: 270px;
}


@media (max-width: 991px) {
    .sidebar {
        left: -285px;
    }

    .body-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 270px;
        background: var(--menu);
        overflow: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1050;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar__inner {
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

}

.icon_fechar {
    position: absolute;
    top: 20px !important;
    left: 230px !important;
    width: 35px;
    height: 35px;
    background-color: var(--botao) !important;
    color: var(--texto);
    border-radius: 50%;
    z-index: 1001;
}


.sidebar.open {
    left: 0;
}

/* Botão para abrir a sidebar */
.res-sidebar-open-btn {
    width: 35px;
    padding: 0;
    color: #ffffff;
    font-size: 24px;
    background-color: transparent;
    border: none;
    display: none;
    z-index: 1000;
}

@media (max-width: 991px) {
    .res-sidebar-open-btn {
        display: inline-block;
    }
}

/* Botão para fechar a sidebar */
.sidebar .res-sidebar-close-btn {
    position: absolute;
    top: 20px;
    right: -35px;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    color: #4634ff;
    border-radius: 50%;
    display: none;
    z-index: 1001;
}

@media (max-width: 991px) {
    .sidebar .res-sidebar-close-btn {
        display: grid;
        place-content: center;
    }
}

/* Ícone do botão de fechar */
.sidebar .res-sidebar-close-btn i {
    font-size: 24px;
}

/* Logo da Sidebar */
.sidebar .sidebar__logo-shape {
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin-bottom: 20px;
}

.sidebar .sidebar__logo-shape img {
    height: 40px;
    /* Ajuste no tamanho do logo */
}

/* Estilos de menu */
.sidebar .slimScrollDiv .slimScrollBar {
    background-color: #ffffff !important;
    width: 5px !important;
    opacity: 0.7 !important;
    /* Opacidade reduzida para um visual mais suave */
}

/* Menu ativo e hover */
.capsule--block .sidebar-menu-item.active a,
.capsule--block .sidebar-menu-item.sidebar-dropdown .side-menu--open {
    border-left: 4px solid #ffffff;
    background-color: var(--menu);
    color: #FFF !important;
    font-weight: bold;
}

.capsule--block .sidebar-submenu .sidebar-menu-item.active a {
    border-left: none;
    background-color: transparent;
    color: #FFF;
}

.capsule--block .sidebar-menu-item a {
    color: var(--texto) !important;
    /* Cor do texto no menu */
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* Efeito suave ao passar o mouse */
}

.capsule--block .sidebar-menu-item a:hover {
    background-color: var(--fundo);
    color: var(--texto);
}


.sidebar.capsule--rounded .sidebar__menu {
    padding-left: 0;
}

.sidebar.capsule--rounded .sidebar__menu .sidebar-menu-item a {
    text-decoration: none;
}

.sidebar.capsule--rounded .sidebar__menu>.sidebar-menu-item>a {
    margin-right: 5px;
    border-radius: 0 999px 999px 0;
    -webkit-border-radius: 0 999px 999px 0;
    -moz-border-radius: 0 999px 999px 0;
    -ms-border-radius: 0 999px 999px 0;
    -o-border-radius: 0 999px 999px 0;
}

.sidebar.capsule--rounded .sidebar__menu>.sidebar-menu-item .sidebar-submenu .sidebar-menu-item {
    margin-right: 0;
}

.sidebar.capsule--rounded .sidebar__menu>.sidebar-menu-item .sidebar-submenu .sidebar-menu-item>a {
    margin-right: 15px;
    margin-top: 2px;
    border-radius: 0 999px 999px 0;
    -webkit-border-radius: 0 999px 999px 0;
    -moz-border-radius: 0 999px 999px 0;
    -ms-border-radius: 0 999px 999px 0;
    -o-border-radius: 0 999px 999px 0;
}

.sidebar.capsule--rounded2 .sidebar__menu>.sidebar-menu-item>a {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.sidebar.capsule--rounded2 .sidebar__menu>.sidebar-menu-item .sidebar-submenu .sidebar-menu-item {
    margin-right: 0;
}

.sidebar.capsule--rounded2 .sidebar__menu>.sidebar-menu-item .sidebar-submenu .sidebar-menu-item>a {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.sidebar__logo {
    padding: 20px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.sidebar__logo .sidebar__main-logo {
    width: 90%;
}

.sidebar__logo .sidebar__main-logo img {
    max-height: 75px;
}

@media (max-width: 991px) {
    .sidebar__logo .sidebar__main-logo {
        width: 100%;
    }
}

.navbar__expand {
    margin-left: auto;
    background-color: transparent;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .navbar__expand {
        display: none;
    }
}

.navbar__expand.active::before {
    opacity: 0;
}

.navbar__expand::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #5b6e88;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    opacity: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar__expand::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.sidebar-submenu {
    display: none;
}

.sidebar__menu {
    padding: 0 0px;
}

.sidebar-menu-item a {
    color: var(--texto) !important;
    text-decoration: dashed;
}

.sidebar__menu .sidebar-menu-item {
    margin-top: 5px;
    color: var(--texto);
}

.sidebar__menu .sidebar-menu-item>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 7px 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    color: #FFF !important;
}



.sidebar__menu .sidebar-menu-item .side-menu--open,
.sidebar__menu .sidebar-menu-item.active>a {
    background-color: var(--titulo) !important;
    color: #ffffff !important;
}

.sidebar__menu .menu-icon {
    color: #FFF !important;
    font-size: 1.125rem;
    margin-right: 15px;
    transition: all 0.5s;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
}

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

.las {
    color: #FFF !important;
}

.sidebar__menu .menu-title {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.sidebar__menu .menu-badge {
    padding: 1px 6px;
    font-size: 0.625rem;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
}

.logo {
    max-height: 70px !important;
}

.sidebar__menu .sidebar-dropdown>a {
    padding-right: 40px;
    position: relative;
}

.sidebar__menu .sidebar-dropdown>a::before {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f107";
    font-size: 16px !important;
    color: #FFF !important;
    transition: all 0.3s;
}

.sidebar__menu .sidebar-dropdown>a.side-menu--open::before {
    transform: rotate(180deg);
    top: 13px;
}

.sidebar__menu .sidebar-submenu {
    position: relative;
    background-color: #ffffff0f;
}

.sidebar__menu .sidebar-submenu__open {
    display: block;
}

.sidebar__menu .sidebar-submenu .sidebar-menu-item {
    margin-top: 0;
}



.sidebar[class*="bg--"] .sidebar__menu .sidebar-menu-item>a:hover {
    background-color: var(--titulo);
    color: #FFFF;
}

.sidebar[class*="bg--"] .sidebar__menu .sidebar-menu-item .menu-icon,
.sidebar[class*="bg--"] .sidebar__menu .sidebar-menu-item .menu-title {
    color: #FFF;
}

.sidebar[class*="bg--"] .sidebar__menu .sidebar-menu-item .side-menu--open {
    background-color: var(--titulo) !important;
}

.sidebar[class*="bg--"] .sidebar__menu .sidebar-dropdown>a::before {
    color: var(--texto);
}

.sidebar[class*="bg--"] .sidebar__menu .sidebar-submenu::before {
    border-left-color: #ffffff33;
}


.sidebar .version-info {
    width: 260px;
    padding-block: 10px;
    background-color: var(--menu);
    transition: 0.27s;
    flex-shrink: 0;
}

.sidebar__menu-wrapper {
    flex: 1;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .sidebar:not(.open) .version-info {
        left: -100%;
    }
}

/* sidebar css end */
/* navbar-wrapper css start */
.navbar-wrapper {
    position: relative;
    background: var(--menu);
    padding: 15px 30px;
    margin-left: 250px;
    transition: all 0.5s cubic-bezier(0.4, -0.25, 0.25, 1.1);
    color: #FFF;
}

@media (max-width: 991px) {
    .navbar-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .navbar-wrapper {
        padding: 10px 10px;
    }
}

*[class*="bg--"]:not(.bg--white) .fullscreen-btn,
*[class*="bg--"]:not(.bg--white) .navbar__right button i,
*[class*="bg--"]:not(.bg--white) .navbar-user__name {
    color: #ffffff;
}

.navbar__left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navbar-search {
    position: relative;
    width: 300px;
}

.navbar-search .navbar-search-field {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding-left: 40px;
    width: 100%;
}

.navbar-search .navbar-search-field::placeholder,
.navbar-search .navbar-search-field::-moz-placeholder,
.navbar-search .navbar-search-field::-webkit-input-placeholder {
    color: #f1f1f1;
}

.navbar-search .navbar-search-field::-webkit-search-decoration,
.navbar-search .navbar-search-field::-webkit-search-cancel-button,
.navbar-search .navbar-search-field::-webkit-search-results-button,
.navbar-search .navbar-search-field::-webkit-search-results-decoration {
    display: none;
}

.navbar-search .navbar-search-field:focus {
    border-color: #4634ff;
    box-shadow: 0 0 5px #4634ff80;
}

.navbar-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-search .autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: #fff;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #fff;
}

.navbar-search .autocomplete-items::-webkit-scrollbar {
    width: 10px;
}

.navbar-search .autocomplete-items::-webkit-scrollbar-track {
    background: #fff;
}

.navbar-search .autocomplete-items::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 20px;
    border: 2px solid #fff;
}

.navbar-search .autocomplete-items>div {
    border-bottom: 1px dashed #e5e5e5;
}

.navbar-search .autocomplete-items>div:last-child {
    border-bottom: none;
}

.navbar-search .autocomplete-items>div a {
    color: #777;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s;
}

.navbar-search .autocomplete-items>div:hover a,
.navbar-search .autocomplete-items>div.autocomplete-active a {
    background-color: #f3f3f3;
}

.navbar__right {
    margin-left: auto;
}

@media (max-width: 767px) {
    .profile-dropdown {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .navbar__left,
    .navbar__right {
        width: 100%;
    }

    .navbar__right {
        margin-top: 15px;
    }

    .navbar-search {
        flex: 1;
    }
}

.navbar__right button {
    background-color: transparent;
    position: relative;
}

.navbar__right button i {
    color: #5b6e88;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
}

@media (max-width: 420px) {
    .navbar__right .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 15px;
        right: 15px;
        width: 91% !important;
        /* min-width: 91% !important; */
    }
}

.navbar-user {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-user__thumb {
    width: 35px;
}

.navbar-user__thumb img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.navbar-user__info {
    text-align: left;
    padding-left: 10px;
}

.navbar-user__name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #34495e;
}

.navbar-user__desig {
    font-size: 0.75rem;
}

.navbar-user .icon {
    padding-left: 10px;
}

.navbar-user .icon i {
    font-size: 0.875rem;
}

.navbar__action-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.navbar__action-list li {
    margin-right: 10px;
}

@media (max-width: 575px) {
    .navbar__action-list li {
        margin-right: 5px;
    }
}

.navbar__action-list li:last-child {
    margin-right: 0;
}

.navbar__action-list .nice-select {
    padding: 0 12px 0 0 !important;
    border: none;
    height: 30px !important;
    min-height: 30px !important;
    line-height: 30px !important;
}

.navbar__action-list .nice-select::after {
    right: 0;
    margin-top: -3px;
}

.dropdown-menu.dropdown-menu--md {
    min-width: 18rem;
}

.dropdown-menu.dropdown-menu--sm {
    min-width: 12rem;
}

.dropdown-menu__header {
    padding: 15px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-menu__header .caption {
    font-size: 0.75rem;
    font-weight: 700;
}

.dropdown-menu__header p {
    font-size: 0.75rem;
}

.dropdown-menu__item {
    display: block;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-menu__item:hover {
    background-color: #f7f7f7;
}

.dropdown-menu__item .dropdown-menu__icon {
    font-size: 1.25rem;
    color: #34495e;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
}

.dropdown-menu__item .dropdown-menu__caption {
    color: #34495e;
    font-size: 0.875rem;
    font-weight: 500;
}

.dropdown-menu__item .dropdown-menu__icon~.dropdown-menu__caption {
    padding-left: 8px;
}

.dropdown-menu .slimScrollDiv .slimScrollBar {
    background-color: #000000 !important;
    width: 3px !important;
    opacity: 0.15 !important;
}

.dropdown-menu__footer {
    border-top: 1px solid #e5e5e5;
}

.dropdown-menu__footer .view-all-message {
    font-size: 0.75rem;
    display: block;
    padding: 15px 15px;
    text-align: center;
    color: #34495e;
    font-weight: 600;
}

.dropdown-menu__footer .view-all-message:hover {
    color: #4634ff;
}

.message-notifi {
    padding: 15px 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.message-notifi__left {
    width: 45px;
}

.message-notifi__left img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.message-notifi__right {
    width: calc(100% - 45px);
    padding-left: 10px;
}

.message-notifi__right .name {
    font-weight: 500;
    font-size: 0.875rem;
    color: #34495e;
}

.message-notifi__right p {
    color: #5b6e88;
    font-size: 0.8125rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-notifi__right .time {
    font-size: 0.6875rem;
    font-weight: 600;
}

.navbar-notifi {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 15px;
}

.navbar-notifi__left {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.navbar-notifi__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-notifi__left i {
    font-size: 1.35rem;
}

.navbar-notifi__right .notifi__title {
    font-weight: 600;
    font-size: 0.875rem;
}

.navbar-notifi__right .time {
    font-size: 0.75rem;
    margin-top: 5px;
}

/* 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: var(--botao);
    transform: translateY(-20px);
}

.menu-item.active i {
    background: var(--botao);
    color: #FFF !important;
    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;
}

.sidebar-dropdown.active>a .submenu-toggle-icon i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.submenu-toggle-icon i {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.sidebar-dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bullet-icon {
    font-size: 8px;
    margin-right: 8px;
    color: var(--botao);
    vertical-align: middle;
}

.menu-arrow {
    margin-left: auto;
    font-size: 14px;
    color: #FFF !important;
}


/* Girar seta quando ativo */
.sidebar-dropdown.active>a .menu-arrow i {
    transform: rotate(180deg);
}


.las {
    color: #FFF !important;
}

.hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1,
.hero-section p,
.hero-section .description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-btn-only {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.video-btn-only:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Pulse effect (opcional) */
.video-btn-only::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
    opacity: 0.4;
}

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

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

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .video-btn-only {
        width: 60px;
        height: 60px;
    }
}


.download-card {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease-in-out;
}

.download-card:hover {

    border-color: #007bff;
    transform: translateY(-2px);
}

.download-icon {
    font-size: 1.8rem;
    color: #007bff;
    margin-right: 12px;
}

.download-info {
    flex: 1;
    min-width: 0;
}

.download-name {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-container {
    background: #000;
    overflow: hidden;
}

iframe {
    border-radius: 10px;
}

.list-group-item.active {
    background-color: var(--botao);
    border-color: var(--titulo);
}

/* Tipografia principal */
.descricao {
    margin-top: 20px !important;
    max-width: 75ch;
    margin: 0 auto 2rem;
    font-size: 1.075rem;
    line-height: 1.9;
    letter-spacing: .2px;
    text-wrap: pretty;
    hanging-punctuation: first;
    hyphens: auto;
    word-break: normal;
    border: 1px dashed var(--botao);
    padding: 5px;
}

/* Parágrafos e títulos internos */
.descricao p {
    margin: 0 0 1.1rem;
}

.descricao h1,
.descricao h2,
.descricao h3,
.descricao h4 {
    font-weight: 800;
    line-height: 1.25;
    margin: 1.6rem 0 .6rem;
    letter-spacing: .3px;
}

.descricao h1 {
    font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem);
}

.descricao h2 {
    font-size: clamp(1.4rem, 1.8vw + 1rem, 1.9rem);
}

.descricao h3 {
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
}

/* Drop cap no primeiro parágrafo (remova .no-dropcap se não quiser) */
.descricao:not(.no-dropcap) p:first-of-type::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 1;
    padding: .1rem .5rem 0 0;
    margin-right: .15rem;
    font-weight: 800;
    color: var(--primary-color, #0d6efd);
}

/* Links */
.descricao a {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity .2s, color .2s, border-color .2s;
}

.descricao a:hover {
    opacity: .85;
}

/* Listas com marcador personalizado */
.descricao ul,
.descricao ol {
    margin: 0 0 1.2rem 1.3rem;
}

.descricao ul li {
    margin: .4rem 0;
}

.descricao ul li::marker {
    color: var(--primary-color, #0d6efd);
}

/* Citações */
.descricao blockquote {
    margin: 1.4rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary-color, #0d6efd);
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.06), transparent 60%);
    border-radius: .75rem;
    color: var(--bs-gray-700, #3d3d3d);
    font-style: italic;
}

/* Imagens responsivas com leve moldura */
.descricao img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 1rem auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

/* Código inline e blocos de código */
.descricao code {
    background: rgba(0, 0, 0, .05);
    padding: .15rem .35rem;
    border-radius: .5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .95em;
}

.descricao pre {
    background: rgba(0, 0, 0, .05);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    overflow: auto;
    margin: 1rem 0;
}

.descricao pre code {
    background: transparent;
    padding: 0;
}

/* Tabelas */
.descricao table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.descricao th,
.descricao td {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.descricao thead th {
    background: rgba(13, 110, 253, .08);
    font-weight: 700;
}

/* Avisos/caixas de destaque */
.descricao .note {
    position: relative;
    padding: .9rem 1rem;
    background: rgba(13, 110, 253, .07);
    border: 1px solid rgba(13, 110, 253, .18);
    border-radius: 12px;
    margin: 1rem 0;
}

.descricao .note::before {
    content: "ℹ️";
    margin-right: .4rem;
}

/* Seleção de texto */
.descricao ::selection {
    background: rgba(13, 110, 253, .25);
}

/* Modo escuro (se você tiver um data-theme) */
[data-theme="dark"] .descricao {
    color: #e9ecef;
}

[data-theme="dark"] .descricao blockquote {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.18), transparent 60%);
    color: #cfd4da;
}

[data-theme="dark"] .descricao table {
    box-shadow: none;
}

.card {
    background-color: var(--box);
    color: var(--texto);
}

.purchase-header {
    margin-bottom: 30px;
}

.price-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px 30px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    color: #666;
    font-weight: 600;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin: 0 5px;
}

.per-cota {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.header-subtitle {
    color: white;
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.purchase-card,
.commission-card,
.benefits-card {
    background: var(--box);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.card-title {
    color: var(--titulo);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #667eea;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
}

.qty-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #5a6fd8;
    transform: scale(1.05);
}

.quantity-input {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    padding: 10px;
    color: #000;
}

.quantity-input:focus {
    outline: none;
    box-shadow: none;
    color: #000;
}

.form-hint {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.calculation-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calc-row:last-child {
    margin-bottom: 0;
}

.calc-label {
    font-weight: 500;
    color: #666;
}

.calc-value {
    font-weight: 600;
    color: #333;
}

.calc-unit {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.total-row {
    border-top: 2px solid #dee2e6;
    padding-top: 15px;
    margin-top: 15px;
}

.total-row .calc-label,
.total-row .calc-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.total-amount {
    color: #667eea !important;
}

.expiration-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #856404;
}

.purchase-btn {
    background: var(--botao);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-total {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 6px;
    margin-left: 10px;
}

.commission-card {
    background: var(--botao);
    color: #FFF;
}

.commission-title {
    color: var(--titulo);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.commission-rate {
    text-align: center;
    margin-bottom: 20px;
}

.rate-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
}

.rate-label {
    font-size: 14px;
    opacity: 0.9;
}

.commission-calculation {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.commission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.commission-row:last-child {
    margin-bottom: 0;
}

.commission-row.highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px;
    font-weight: 600;
}

.comm-label {
    font-size: 14px;
    opacity: 0.9;
}

.comm-value {
    font-weight: 600;
}

.comissao-ganho {
    color: #fff !important;
    font-size: 16px;
}

.commission-explanation {
    text-align: center;
    opacity: 0.9;
}

.commission-explanation i {
    margin-right: 5px;
}

.benefits-card {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
}

.benefits-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .cotas-purchase-wrapper {
        padding: 5px;
    }

    .price {
        font-size: 32px;
    }

    .currency,
    .per-cota {
        font-size: 16px;
    }

    .purchase-card,
    .commission-card,
    .benefits-card {
        padding: 5px;
    }
}

.ranking-section {
    margin-top: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4e54c8;
    margin-bottom: 0.5rem;
}

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

.ranking-tabs .nav-pills .nav-link {
    border-radius: 30px;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ranking-tabs .nav-pills .nav-link.active {
    background: linear-gradient(45deg, var(--botao), var(--botao));
    color: white;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.ranking-card {
    background: var(--box);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ranking-header {
    background: linear-gradient(45deg, var(--botao), var(--botao));
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ranking-date {
    font-weight: 500;
}

.ranking-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.ranking-list {
    padding: 0.5rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

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

.ranking-item:hover {
    background-color: var(--box);
}

.ranking-item.top-three {
    background-color: var(--box);
}

.ranking-position {
    width: 50px;
    text-align: center;
    margin-right: 1rem;
}

.position-number {
    font-weight: 600;
    color: #6c757d;
}

.fa-crown.champion {
    color: #ffc107;
    font-size: 1.5rem;
}

.fa-medal.second {
    color: #6c757d;
    font-size: 1.5rem;
}

.fa-medal.third {
    color: #cd7f32;
    font-size: 1.5rem;
}

.ranking-user {
    display: flex;
    align-items: center;
    flex: 1;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #e9ecef;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.user-level {
    font-size: 0.8rem;
    color: #6c757d;
}

.ranking-cotas {
    text-align: center;
    margin: 0 1.5rem;
}

.cotas-count {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #4e54c8;
}

.cotas-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.ranking-value {
    font-weight: 700;
    color: #28a745;
}

.empty-ranking {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-ranking i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .ranking-item {
        flex-wrap: wrap;
    }

    .ranking-cotas,
    .ranking-value {
        margin-top: 0.5rem;
        width: 100%;
        text-align: left;
        padding-left: 60px;
    }

    .ranking-tabs .nav-pills .nav-link {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}


: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: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--success-gradient), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: '';
    width: 90px;
    height: 90px;
    background: white;
    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);
    }
}

