:root {
    /*--getup-purple: #4B458A;*/
   /* --getup-dark-purple: #352F66;*/

    --getup-purple: #a19bec;

}


 /*###################### cabeçalho */
.header-dash {
    background:white; /* Transparência para combinar com o Glassmorphism */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1010;
}

.getup-dashboard-fundo {
    /* 1. Adicionamos um gradiente preto translúcido antes da URL da imagem */
    background-image:
        linear-gradient(rgba(104, 101, 101, 0.563), rgba(0, 0, 0, 0.65)),
        url('../imgs/fundo-dashboard.png') !important;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* 2. Alteramos para MULTIPLY para um escurecimento mais sólido e elegante */
    background-blend-mode: multiply;

    /* Mantém a cor de fundo como fallback */
    background-color: var(--getup-dark-purple);

    color: white;
    padding: 15px;
    min-height: 100vh;
    display: flex; /* Garante alinhamento se necessário */
}



   /* Estilização da sua Minisidebar */
    .minisidebar-container {
        width: 70px; /* Largura estreita */
        min-width: 70px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        position: sticky;
        top: 0;
        height: 100vh;
        z-index: 1000;
    }



/* --- BASE SIDEBAR (PADRÃO MOBILE) --- */
.sidebar-mini {
    display: flex;
    flex-direction: row; /* Horizontal no mobile */
    justify-content: space-around; /* Espaçamento igual entre ícones */
    align-items: center;
    background: rgba(116, 60, 248, 0.9); /* Sua cor roxa */
    backdrop-filter: blur(10px); /* Efeito vidro */
    padding: 12px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1060;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0; /* Arredondado só em cima no mobile */
}

.sidebar-mini a {
    margin-bottom: 0; /* Remove o espaço debaixo no mobile */
    display: flex;
    justify-content: center;
    flex: 1;
}

.sidebar-mini i {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.4rem;
    transition: transform 0.2s;
}

.sidebar-mini i:active {
    transform: scale(0.9); /* Feedback de clique no celular */
}

/* --- ADAPTAÇÃO PARA DESKTOP (Telas Médias/Grandes) --- */
@media (min-width: 768px) {
    .sidebar-mini {
        position: sticky; /* Fica fixa conforme rola, mas dentro do container */
        top: 20px;
        width: 60px;
        height: fit-content;
        flex-direction: column; /* Vertical no desktop */
        border-radius: 15px;
        padding: 20px 0;
        margin-left: 10px;
        border-top: none;
    }

    .sidebar-mini a {
        margin-bottom: 25px;
        flex: none;
    }
}
/*################################## responsavel pela home######################################
/* --- AJUSTE DE CONTEÚDO --- */
/* Adiciona um espaço no final da página mobile para o conteúdo não ficar atrás da barra */
@media (max-width: 767px) {
    .div-options, .getup-dashboard-fundo {
        padding-bottom: 80px !important;
    }
}

.tit-2{
  color:#f1f1f1!important;
  font-size:1.5em;
}

.badge {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.65rem;
    padding: 5px 10px;
}
.bg-success { background-color: rgba(25, 135, 84, 0.8) !important; }
.bg-secondary { background-color: rgba(108, 117, 125, 0.5) !important; }


/* Status Bar Superior */

.course-status {
    background:  rgba(105, 75, 173, 0.87);
    border-radius: 50px;
    padding: 10px 25px;


}

/* Botões de Categoria */
.btn-category {
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    background: rgba(255, 181, 21, 0.932);;
    color: rgb(255, 255, 255);
    margin-right: 10px;
    transition: 0.3s;
    font-weight:600;
}

.btn-category.active {
    background: #ff4727; /* Verde da imagem */
}

/* Cards de Aula */
.class-card {
    width: 280px;         /* Largura fixa para não achatar */
    min-width: 280px;     /* Força a largura mínima */
    flex: 0 0 280px;      /* Não deixa crescer nem encolher */
    background: #fff;     /* Ou a cor do seu design */
    border-radius: 15px;
    overflow: hidden;
}
.class-card img.city-thumb {
    height: 100px;
    object-fit: cover;
    width: 100%;
}

.prof-thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-top: -25px;
    margin-left: 15px;
    position: relative;
}
.text-info{
    color:orange!important;
}

#class-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;

    /* Força o início sempre na esquerda, prevenindo o corte */
    justify-content: flex-start !important;
    align-items: flex-start !important;

    /* Padding nas laterais evita que o primeiro card cole na borda */
    padding: 20px 30px 30px 30px !important;
    gap: 20px;

    /* Garante comportamento de scroll em qualquer hardware */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}


/* Estilização da barra de rolagem para ser VISÍVEL no Desktop */
#class-container::-webkit-scrollbar {
    height: 10px !important; /* Um pouco mais grossa para desktop */
    display: block !important;
}
#class-container::-webkit-scrollbar-thumb {
    background: rgba(116, 60, 248, 0.8) !important;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.1);
}
#class-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 10px;
}
.inner-bg-dashboard {
    overflow-x: hidden; /* Garante que o scroll fique só nos cards e não no site todo */
}

/* Esconde a barra de scroll feia em navegadores modernos (Opcional) */
.class-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.class-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.class-scroll-container::-webkit-scrollbar-thumb {
    background: #0dcaf0; /* Cor do seu tema (info) */
    border-radius: 10px;
}

/* Container que segura os cards */
.class-scroll-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Impede que os cards pulem para a linha de baixo */
    overflow-x: auto !important;   /* Habilita o scroll horizontal */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Scroll suave no iPhone */
    padding-bottom: 15px;
    width: 100%;
}

@media (min-width: 768px) {

    .btn-logout-desk, .student-first-name{
        display: block!important;;
    }

    .class-scroll-container {
        justify-content: center !important; /* No desktop centraliza os cards */

    }
}
@media (max-width: 767px) {
   .logotype_getup{
    width:140px!important;
   }
}


/* O Card em si */
.class-card {
    width: 280px;         /* Largura fixa para não achatar */
    min-width: 280px;     /* Força a largura mínima */
    flex: 0 0 280px;      /* Não deixa crescer nem encolher */
    background: #fff;     /* Ou a cor do seu design */
    border-radius: 15px;
    overflow: hidden;
}
/* Ajuste do Título para não ficar gigante no celular */
.tit-prox-aulas h3 {
    font-size: 1.2rem !important;
}



/* Ajuste de texto para telas muito pequenas */
@media (max-width: 380px) {
    .course-status {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

/* Overlay que bloqueia o fundo */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* O Modal em si */
.modal-glass {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.custom-input {
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px !important;
}

.modal-glass h2 {
    color: #ffb515; /* Amarelo GetUp */
}

/*############################## responsável pela tela livros ########################33*/
/* Esconde a barra de scroll em alguns navegadores mas mantém a funcionalidade */



/* Garante que os cards não quebrem linha */
.class-scroll-container {
    display: flex;
    flex-wrap: nowrap; /* ESSENCIAL para scroll horizontal */
    padding-bottom: 20px; /* Espaço para a barra de scroll não cobrir o texto */
}

/* Ajuste nos cards bloqueados */
.card-locked {
    filter: grayscale(1) opacity(0.7);
    pointer-events: none; /* Opcional: impede cliques */
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    z-index: 5;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Overlay de ações (aparece no hover) */
.div-books:hover .actions-overlay {
    opacity: 1;
}
.actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}
.btn-action {
    background: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #333;
}





.div-books {
    /* Impede que o card seja esmagado ou redimensionado pelo pai */
    flex: 0 0 200px !important;
    width: 200px !important;
    min-width: 200px !important;

    /* Faz o scroll "travar" no card certinho */
    scroll-snap-align: start;

    background: rgba(116, 60, 248, 0.5) !important;
    backdrop-filter: blur(8px);
    border-radius: 15px;
    position: relative;
}
.div-books img{
     height: 320px
}
/* Efeito visual nos cards de livros */
.div-books:hover {
    transform: translateY(-5px);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(116, 60, 248, 0.5)!important;
}




/* Responsividade: em telas pequenas o card pode ser um pouco menor */
@media (max-width: 576px) {
    .div-books {
        width: 170px !important;
    }
    .div-books img{
     height: 200px
}
}


 /*##########################################abaixo estilo da tela options*/

   /* Estilo do Título e Divisor */
    .divider-gradient {
        height: 4px;
        width: 80px;
        background: linear-gradient(90deg, #0d6efd, #ff4d4d);
        border-radius: 2px;
    }

    /* Card com Efeito Vidro (Glassmorphism) */
    .card-selection-glass {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        color: #fff;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
    }

    .card-selection-glass:hover {
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-12px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    /* Ícones Grandes */
    .icon-box-large {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        transition: 0.3s;
    }

    .bg-pdf { background: rgba(255, 77, 77, 0.15); color: #ff4d4d; }
    .bg-media { background: rgba(13, 110, 253, 0.15); color: #0d6efd; }

    .card-selection-glass:hover .icon-box-large {
        transform: scale(1.1) rotate(5deg);
    }

    /* Textos dentro do Card */
    .card-selection-glass h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .card-selection-glass p {
        color: #aaa;
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Botão de Ação Inferior */
    .btn-glass-action {
        padding: 8px 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        transition: 0.3s;
    }

    .card-selection-glass:hover .btn-glass-action {
        background: #fff;
        color: #000;
    }
 /*#######################tela unidades #################################################

/* Container principal com desfoque */
.units-wrapper {
    background: rgba(255, 255, 255, 0.1); /* Fundo branco translúcido */
    backdrop-filter: blur(15px);         /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Item da lista */
.unit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 90px; /* Altura confortável */
}

.unit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Número da Unidade */
.unit-number {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    min-width: 45px;
}

/* Textos */
.unit-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.unit-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Scroll personalizado caso a lista seja longa */
.units-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.units-list::-webkit-scrollbar {
    width: 6px;
}

.units-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/*############# responsável pela listagem de materiais ####################/
/* Estilo da Linha de Material */
.material-row {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    width: 100%;
    padding-top:10px;
}

.material-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.1);
}
 .material-row-inner {

        background: rgba(116, 60, 248, 0.7) !important;
        width: 100%!important;
    }

/* Número da Ordem */
.material-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    min-width: 30px;
    text-align: center;
}

/* Container da Thumbnail */
.material-thumb-container {
    position: relative;

    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    width: 100%; /* No celular ocupa tudo */
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Mantém proporção de vídeo */

}

.material-thumb, .material-thumb-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #222;
}

/* Quando a tela for maior que 768px (Desktop/Tablet) */
@media (min-width: 768px) {
    .material-thumb-container {

        max-width: 150px;
        width: 150px; /* Volta ao tamanho fixo lateral */
        min-width: 150px;
    }
}
@media (min-width: 1200px) {

    .material-row {
        width:80%;
    }
}


/* Garante que o texto não fique "espremido" no mobile */
.material-info {
    width: 100%;
}

/* Overlay de Play */
.thumb-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.material-row:hover .thumb-overlay {
    opacity: 1;
}

.thumb-overlay i {
    color: white;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 50%;
    padding: 10px 12px;
}

/* Textos */
.material-title {
    font-size: 1rem;
    font-weight: 600;
}

.material-description {


    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Corta em 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color:#f1f1f1!important;
}

.material-duration {
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    color: #aaa;
}

/* Botão de Ação Lateral */
.btn-access {
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.btn-access:hover {
    color: #e50914; /* Vermelho Netflix */
}

.audio-player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 15px; /* Menos padding no mobile */
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.player-mini-thumb {
    width: 45px;
    height: 45px;
    min-width: 45px; /* Garante que não encolha */
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: #333;
}

/* Ajustes para telas maiores */
@media (min-width: 768px) {
    .audio-player-fixed {
        padding: 15px 30px;
    }
    .player-mini-thumb {
        width: 55px;
        height: 55px;
    }
    .fs-7 { font-size: 1rem; }
}

/* Ajustes específicos para Mobile */
@media (max-width: 767px) {
    .fs-7 { font-size: 0.85rem; }
    #player-desc { font-size: 0.7rem; }

    #main-audio-element {
        margin-top: 5px;
        height: 30px; /* Player mais fino no mobile */
    }
}

#main-audio-element {
    filter: invert(100%) hue-rotate(180deg) brightness(1.5);
    outline: none;
}

/* Estilo para evitar que o conteúdo do site fique escondido atrás do player */
body {
    padding-bottom: 80px; /* Ajuste conforme a altura do seu player */
}


/* Garante que o conteúdo do dashboard não fique escondido atrás do player */
.getup-dashboard-fundo {
    padding-bottom: 100px;
}

/*################### responsável pela tela materiais-download###########################*/

    /* Fundo principal da página */
    .bg-dark-custom {
        /*background-color: #47456f; /* Azul quase preto
       background-image: radial-gradient(circle at 10% 20%, rgba(13, 110 , 253, 0.05) 0%, transparent 40%);*/
    }





    /* Botões Customizados */
    .btn-action-glass {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 8px 12px;
        border-radius: 10px;
        transition: 0.2s;
    }

    .btn-action-glass:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    .btn-action-glass.primary {
        background: #0d6efd;
        border-color: #0d6efd;
    }

    .btn-action-glass.primary:hover {
        background: #0b5ed7;
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
    }

    /* Limitador de texto para 2 linhas */
    .text-truncate-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .divider-gradient {
        height: 4px;
        width: 60px;
        background: linear-gradient(90deg, #0d6efd, #ff4d4d);
        border-radius: 2px;
    }

    /* Ajustes Mobile */
    @media (max-width: 576px) {
        .card-body { padding: 1.5rem !important; }
        .display-6 { font-size: 1.8rem; }
    }


        /* Estrutura Principal */
    .getup-main-wrapper {
        display: flex;

        /*background-color: #30268c; /* Cor de fundo dark */
    }



    /* Conteúdo da Página */
    .getup-content-area {
        flex-grow: 1;
        overflow-x: hidden;
    }

    /* Card Glassmorphism */
    .card-glass {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    .card-glass:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.06);
    }

    .icon-box {
        width: 45px; height: 45px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 10px; font-size: 1.4rem;
    }

    .counter-glass {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 15px;
        border-radius: 10px;
        text-align: center;
    }

    /*######################### responsavel pela tela aulas ######################################

    /* Card em formato de linha */
    .glass-card {
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        transition: all 0.3s ease;
    }

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }

    /* Imagens */
    .img-sala {
        width: 120px;
        height: 80px;
        object-fit: cover;
    }

    .img-prof-mini {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 5%;
        right: 5%;
        object-fit: cover;
    }

    /* Badge abaixo da imagem */
    .badge-status {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        padding: 3px 0;
        border-radius: 4px;
        margin-top: 8px;
        letter-spacing: 0.5px;
    }

    /* Botão customizado */
    .btn-acesso {
        background: #0d6efd;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .btn-acesso:hover {
        background: #0b5ed7;
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .img-sala { width: 100%; height: 150px; }
        .card-aula-row { text-align: center; }
        .col-12.text-end { text-align: center !important; margin-top: 15px; }
        .ms-auto { margin-left: 0 !important; }
    }

    /*#############estilo modal ###################################################*/
    /* Estilo para a barra de rolagem interna do Modal */
/* Container Principal do Modal */
.bms-modal-style {
    background: #121417; /* Fundo Deep Dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Cabeçalho */
.bms-modal-style .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    background: linear-gradient(to right, rgba(13, 110, 253, 0.05), transparent);
}

.bms-modal-style .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

/* Corpo do Texto */
.bms-modal-style .modal-body {
    padding: 2rem;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Botão de Fechar Customizado */
.btn-close-custom {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.2rem;
    transition: 0.3s;
}
.btn-close-custom:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Botão do Rodapé */
.btn-getup-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-getup-secondary:hover {
    background: #0d6efd; /* Azul GetUp */
    border-color: #0d6efd;
}

/* Barra de Rolagem Estilizada */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}