/*
 *  Document   : themes.css
 *  Author     : pixelcave
 *  Description: The themes stylesheet of the template. The classes can be used to
 *  alter the text, the background or the border color of an element individually
 *
 */
/* Scroll horizontal controlado */
.table-responsive {
    position: relative;
    overflow-x: auto;
}

/* Wrapper DataTables */
.dataTables_wrapper {
    position: relative;
    overflow: hidden;
}

/* Coluna fixa de ação */
.table.table-striped.tabela-com-acao th:last-child,
.table.table-striped.tabela-com-acao td:last-child {
    position: sticky;
    right: 0;
    background: #fff;
    z-index: 2;
    border-left: 2px solid var(--primary);
    box-shadow: -2px 0 4px rgba(0,0,0,.12);
}

/* Header acima */
.table.table-striped.tabela-com-acao th:last-child {
    z-index: 3;
}

/* Dropdown flutuante */
.dropdown-menu {
    z-index: 1050;
}


/* Fix para botões da biblioteca - evita scroll horizontal */
.biblioteca-acoes {
    min-width: 200px;
    white-space: nowrap;
}

.biblioteca-acoes > .btn,
.biblioteca-acoes > .btn-group {
    display: inline-block;
    vertical-align: top;
    margin-right: 2px;
    min-height: 26px;
    min-width: 30px;
}

.biblioteca-acoes > .btn > i{
    margin-top: 3px;
}

.biblioteca-acoes > .btn:last-child,
.biblioteca-acoes > .btn-group:last-child {
    margin-right: 0;
}

/* Dropdown configurações básicas */
.biblioteca-acoes .dropdown-menu {
    min-width: 180px;
    transform: none !important;
}

/* Garante posicionamento correto dos dropdowns */
.biblioteca-acoes .btn-group {
    position: static;
}


/* CSS específico para dropdowns em modais - Solução robusta */

/* Reset de estilos conflitantes do Bootstrap 3 para modais */
.modal .biblioteca-acoes .btn-group {
    position: static !important;
}

.modal .biblioteca-acoes .dropdown-menu {
    position: fixed !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
}

/* Estilo para dropdown visível */
.modal .biblioteca-acoes .dropdown-menu.show {
    display: block !important;
}

/* Suporte para dropup (quando abre para cima) */
.modal .biblioteca-acoes .btn-group.dropup .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
}

/* Animação suave - APENAS NO MODAL */
#moduloParticipantesModal .biblioteca-acoes .dropdown-menu {
    transition: opacity 0.15s ease-in-out;
}

#moduloParticipantesModal .biblioteca-acoes .dropdown-menu:not(.show) {
    opacity: 0;
    pointer-events: none; /* Previne interação quando invisível */
}

#moduloParticipantesModal .biblioteca-acoes .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
}

/* Sombra para melhor visualização */
.modal .biblioteca-acoes .dropdown-menu {
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    border: 1px solid rgba(0,0,0,.15);
}

/* Garantir que o modal não corte o dropdown */
.modal-open .modal {
    overflow: auto !important;
}

.modal .modal-dialog {
    overflow: visible !important;
}

.modal .modal-content {
    overflow: visible !important;
}

/* Scroll do modal body sem afetar dropdowns */
.modal .modal-body {
    overflow-y: auto !important;
    overflow-x: visible !important;
    max-height: calc(100vh - 200px); /* Ajuste conforme necessário */
}

/* Z-index alto para garantir que fique acima de tudo */
.modal .biblioteca-acoes .dropdown-menu {
    z-index: 10500 !important;
}

/* Correção para table-responsive */
.modal .table-responsive {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

/* Media query para telas pequenas */
@media (max-width: 768px) {
    .modal .biblioteca-acoes .dropdown-menu {
        min-width: 180px !important;
        max-width: calc(100vw - 40px) !important;
    }
}

/* Estilos específicos para dropdowns das tabelas */

/* Garante que dropdowns das tabelas não sejam afetados pelo CSS do modal */
#tabela1 .biblioteca-acoes .dropdown-menu,
#tabela2 .biblioteca-acoes .dropdown-menu,
#tabela3 .biblioteca-acoes .dropdown-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important; /* Remove animações que podem causar problemas */
}

/* Estado inicial - escondido */
#tabela1 .biblioteca-acoes .dropdown-menu:not(:visible),
#tabela2 .biblioteca-acoes .dropdown-menu:not(:visible),
#tabela3 .biblioteca-acoes .dropdown-menu:not(:visible) {
    display: none !important;
}

/* Cursor pointer nos botões */
#tabela1 .biblioteca-acoes .dropdown-toggle,
#tabela2 .biblioteca-acoes .dropdown-toggle,
#tabela3 .biblioteca-acoes .dropdown-toggle {
    cursor: pointer;
}

/* Remove qualquer classe .show que possa vir do Bootstrap */
#tabela1 .biblioteca-acoes .dropdown-menu.show,
#tabela2 .biblioteca-acoes .dropdown-menu.show,
#tabela3 .biblioteca-acoes .dropdown-menu.show {
    /* Não usa classe .show - usa jQuery show/hide */
}

/* Sombra para melhor visualização */
#tabela1 .biblioteca-acoes .dropdown-menu,
#tabela2 .biblioteca-acoes .dropdown-menu,
#tabela3 .biblioteca-acoes .dropdown-menu {
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    border: 1px solid rgba(0,0,0,.15);
    background-color: #fff;
}

/* Z-index alto mas menor que o do modal */
#tabela1 .biblioteca-acoes .dropdown-menu,
#tabela2 .biblioteca-acoes .dropdown-menu,
#tabela3 .biblioteca-acoes .dropdown-menu {
    z-index: 9999 !important;
}

/*
=================================================================
THEME DEFAULT
=================================================================
*/
@font-face {
    font-family: nexa;
    src: url("../font/Nexa%20Light.otf");
}
* {
    font-family: "Open Sans", sans-serif;
    /* border-radius: 0px !important;*/
    border-radius: 3px;
}

.login_info{
    color: #474747;
    font-weight: 500;
    margin-bottom: 5px;
}

.btn-info {
    color: #fff;
    background-color: #0091DA;
    border-color: #17a2b8;
}
.btn-warning {
    color: #fff;
    background-color: #F68D2E;
    border-color: #F68D2E;
}


.themed-color-default {
    color: #1bbae1 !important;
}

.themed-border-default {
    border-color: #FFFFFF !important;
}

.themed-background-default {
    background-color: #1bbae1 !important;
}

.themed-color-dark-default {
    color: #394263 !important;
}

.themed-border-dark-default {
    border-color: #394263 !important;
}

.themed-background-dark-default {
    background-color: #394263 !important;
}

/*
=================================================================
THEME NIGHT
=================================================================
*/

.themed-color-night {
    color: #888888 !important;
}

.themed-border-night {
    border-color: #888888 !important;
}

.themed-background-night {
    background-color: #888888 !important;
}

.themed-color-dark-night {
    color: #333333 !important;
}

.themed-border-dark-night {
    border-color: #333333 !important;
}

.themed-background-dark-night {
    background-color: #333333 !important;
}

/*
=================================================================
THEME AMETHYST
=================================================================
*/

.themed-color-amethyst {
    color: #af64cc !important;
}

.themed-border-amethyst {
    border-color: #af64cc !important;
}

.themed-background-amethyst {
    background-color: #af64cc !important;
}

.themed-color-dark-amethyst {
    color: #583a63 !important;
}

.themed-border-dark-amethyst {
    border-color: #583a63 !important;
}

.themed-background-dark-amethyst {
    background-color: #583a63 !important;
}

/*
=================================================================
THEME MODERN
=================================================================
*/

.themed-color-modern {
    color: #46b7bf !important;
}

.themed-border-modern {
    border-color: #46b7bf !important;
}

.themed-background-modern {
    background-color: #46b7bf !important;
}

.themed-color-dark-modern {
    color: #3b3f40 !important;
}

.themed-border-dark-modern {
    border-color: #3b3f40 !important;
}

.themed-background-dark-modern {
    background-color: #3b3f40 !important;
}

/*
=================================================================
THEME AUTUMN
=================================================================
*/

.themed-color-autumn {
    color: #e67e22 !important;
}

.themed-border-autumn {
    border-color: #e67e22 !important;
}

.themed-background-autumn {
    background-color: #e67e22 !important;
}

.themed-color-dark-autumn {
    color: #4a392b !important;
}

.themed-border-dark-autumn {
    border-color: #4a392b !important;
}

.themed-background-dark-autumn {
    background-color: #4a392b !important;
}

/*
=================================================================
THEME FLATIE
=================================================================
*/

.themed-color-flatie {
    color: #1ec1b8 !important;
}

.themed-border-flatie {
    border-color: #1ec1b8 !important;
}

.themed-background-flatie {
    background-color: #1ec1b8 !important;
}

.themed-color-dark-flatie {
    color: #32323a !important;
}

.themed-border-dark-flatie {
    border-color: #32323a !important;
}

.themed-background-dark-flatie {
    background-color: #32323a !important;
}

/*
=================================================================
THEME SPRING
=================================================================
*/

.themed-color-spring {
    color: #27ae60 !important;
}

.themed-border-spring {
    border-color: #27ae60 !important;
}

.themed-background-spring {
    background-color: #27ae60 !important;
}

.themed-color-dark-spring {
    color: #344a3d !important;
}

.themed-border-dark-spring {
    border-color: #344a3d !important;
}

.themed-background-dark-spring {
    background-color: #344a3d !important;
}

/*
=================================================================
THEME FANCY
=================================================================
*/

.themed-color-fancy {
    color: #d9416c !important;
}

.themed-border-fancy {
    border-color: #d9416c !important;
}

.themed-background-fancy {
    background-color: #d9416c !important;
}

.themed-color-dark-fancy {
    color: #352b4e !important;
}

.themed-border-dark-fancy {
    border-color: #352b4e !important;
}

.themed-background-dark-fancy {
    background-color: #352b4e !important;
}

/*
=================================================================
THEME FIRE
=================================================================
*/

.themed-color-fire {
    color: #e74c3c !important;
}

.themed-border-fire {
    border-color: #e74c3c !important;
}

.themed-background-fire {
    background-color: #e74c3c !important;
}

.themed-color-dark-fire {
    color: #4a2e2b !important;
}

.themed-border-dark-fire {
    border-color: #4a2e2b !important;
}

.themed-background-dark-fire {
    background-color: #4a2e2b !important;
}


.block {
    margin: 0 0 10px;
    padding: 10px 10px 5px;
    background-color: #ffffff;
    border: 1px solid #dbe1e8;
    word-wrap: break-word;
    height: min-content;
}
.dl-horizontal dd {
    font-size: 16px!important;
}
.table > tbody > tr > td {
    /* border-color: transparent !important; */
    font-size: 14px;
}
.btn {
    padding: 4px 4px!important;
    font-size: 11px!important;
    line-height: 1.5!important;
    border-radius: 4px!important;
    font-weight: 700;
}
.block-title h1, .block-title h2, .block-title h3 {
    padding: 0px 15px 0px;
    font-size: 15px;
    font-weight: 600;
}
span.label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}


button{
    text-transform: uppercase;
}

label{
    text-transform: uppercase;
}

.block-title{
    text-transform: uppercase;
}
label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

input.btn {
    text-transform: uppercase;
}

a.btn {
    text-transform: uppercase;
}

.btn-primary {
    color: #fff;
    background-color: #00338D;
    border-color: #00338D;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-success {
    color: #fff;
    background-color: #43B02A;
    border-color: #28a745;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {

    background-color: #00338D;
}
.text-primary, .text-primary:hover, a, a:hover, a:focus, a.text-primary, a.text-primary:hover, a.text-primary:focus {
    color: #00338D;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #00338D;
}

/*------Dropb */

/* ICONE */

.quadrado-estatistica {
    border-color: #FFFFFF;
    text-align: center;
}

.quadrado-estatistica .quadrado-icon {
    /* background: url("../img/body-bg.png") repeat scroll 0 0 #F7F7F7; */
    border-radius: 60px 60px 60px 60px;
    font-size: 27px;
    height: 47px;

}


.quadrado-estatistica .quadrado-number {
    margin: 0px !important;
    margin-bottom: 5px !important;
    font-size: 18px;
    padding: 0px;
    font-weight: bold;
    text-shadow: 0 1px rgba(244, 244, 244, 0.85);
    color: #777;
}

.quadrado-estatistica .quadrado-title {
    padding: 0px !important;
    font-size: 11px;
    text-shadow: 0 1px rgba(232, 232, 232, 0.75);
    color: #777;
}

.quadrado-icon .turquoise-color {
    color: #4cc5cd;
}

.quadrado-icon .red-color {
    color: #e83339;
}

.quadrado-icon .green-color {
    color: #2bb574;
}

.quadrado-icon .gray-color {
    color: #b9baba;
}

.quadrado-icon .purple-color {
    color: #c8abdb;
}

.quadrado-icon .blue-color {
    color: #43609c;
}

.quadrado-icon .gold-color {
    color: #F8BE2E;
}

.quadrado-icon .laranja-color {
    color: #f37735;
}

.quadrado-icon .dimgray-color {
    color: #696969;
}

.nav.navbar-nav-custom > li.open > a, .nav.navbar-nav-custom > li > a:hover, .nav.navbar-nav-custom > li > a:focus {
    background-color: #00338D;
}

/* hr feed */
.feedhr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #B1B1B1;
}

/* caixa para perfil */
.color-555 {
    color: #555 !important
}

.box-subtitle {
    margin-top: 0px;
    margin-bottom: 30px
}

.post-box {
    width: 100%;
    color: #555;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.4);
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    word-wrap: break-word;
}

a.post-box {
    text-decoration: none;
    color: #555
}

a.post-box:hover .post-box-content {
    background: #edece8
}

.post-box-header {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: #fff
}

.post-box-image {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%
}

.post-box-title {
    position: absolute;
    top: 70px;
    padding: 10px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000;
    text-align: center;
    width: 100%
}

.post-box-title::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    left: 25%;
    border-top: 1px solid rgba(255, 255, 255, 0.5)
}

.post-box-content {
    position: relative;
    min-height: 105px;

    overflow: visible;
    text-align: center
}

.post-box-user {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0
}

.post-box-user .post-box-user-icon {
    margin: auto;
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 100%;
    background-color: #f37735;

}

.post-box-user .post-box-user-photo {

}

.post-box-user-photo img {
    font-size: 28px;
    margin-top: 0px;
    color: #FFFFFF;
    border: 3px solid white;
    border-radius: 100%;
}

.post-box-user-icon i {
    font-size: 28px;
    margin-top: 23px;
    color: #FFFFFF;
}

.post-box-user-name {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px
}

.post-box-user-name--collection {
    position: relative;
    font-size: 18px;
    width: 275px;
    padding: 7px 0 0 15px;
    display: inline-block
}

.post-box-text {
    padding: 10px 15px 15px;
    font-size: 12px;
    color: black;
}

.post-box-text-padding-top {
    padding: 80px 15px 15px
}

.post-box-list-item:hover .box-list-item-position, .post-box:hover .box-list-item-position {
    background-color: #ffc33e
}

.post-box-list-item:hover .box-list-item-text {
    background: #edece8
}

.post-box .box-list-item-position {
    position: absolute;
    z-index: 1;
    left: 0px;
    height: 40px;
    padding: 10px;
    width: 34px;
    border-radius: 0px 0px 3px 0
}

.post-box--narrow, .post-box--narrow .post-box-header, .post-box--narrow .post-box-content {
    width: 250px
}

.post-box--no-user .post-box-title {
    padding: 10px 10px 4px 10px
}

.post-box--no-user .post-box-text {
    padding-top: 15px
}

.post-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    background: #C2C2C2;

}

.post-box-tipo {
    font-size: 17px;
    font-weight: bold;
    margin-top: 20px;
}

/* Botao icon */
.button-icon {
    background-color: #FFFFFF;
    border: 0px;
    border-color: #FFFFFF;
}

.button-icon i {
    font-size: 20px;
}

.button-icon .blue-color {
    color: #43609c;
}

.button-icon .yellow-color {
    color: #f90;
}

.button-icon .red-color {
    color: red;
}



::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.modal-body-editar {
    margin: 5px;
    padding: 5px 10px;
}

.notificacao-header {
    background: #1A2C47;
    color: #fefefe;
    margin: 0;
    padding: 10px;
    width: 350px;
    text-align: center;
    font-size: 17px;
    font-weight: 900;
    word-wrap: break-word;

}

.notificacao-triangulo {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #1A2C47;
    height: 57;
    left: 245px;
    position: absolute;
    top: -23px;
}

.alert-notificacao-nome {
    font-size: 15px;
    height: 24px;
    color: #3b5998;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 55px;
}

.alert-notificacao-nome a {
    color: #3b5998;
}

.alert-notificacao-favorito {
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-color: #FFB74C;
    font-size: 15px;
    height: 24px;
    margin-left: 55px;
}

.alert-notificacao-corrigiu {
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-color: #FFB74C;
    /* font-size: 15px; */
    height: 24px;
    margin-left: 55px;
}

.alert-notificacao-corrigiu a {
    color: #3b5998;
}

.alert-notificacao-curti {
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-color: #FFB74C;
    font-size: 15px;
    height: 24px;
    margin-left: 55px;
}

.alert-notificacao-favorito a {
    color: #3b5998;
}

.alert-notificacao-curti a {
    color: #3b5998;
}

.alert-img {
    float: left;
}

.alert-notificacao {
    background-color: #f9fafc;
    height: 60px;
    cursor: pointer;
}

.alert-notificacao:hover,
.alert-notificacao:focus {
    background: rgb(221, 222, 223);
}

/* MENSAGENS ***********************************/

.mensagens_block {
    border: 1px solid rgb(216, 216, 216);
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
    background: white;
    max-width: 700px;
    word-wrap: break-word;
}

.mensagens-header {
    background: #1A2C47;
    color: #fefefe;
    margin: 0;
    padding: 10px;
    /*width: 350px;*/
    text-align: center;
    font-size: 17px;
    font-weight: 900;
}

.mensagens-triangulo {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #1A2C47;
    height: 57;
    left: 192px;
    position: absolute;
    top: -23px;
}

.alert-mensagens {
    font-size: 15px;
    height: 24px;
}

.alert-mensagens a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.alert-mensagens a:hover {
    color: #fff;
    background-color: rgb(221, 222, 223);;
    text-decoration: none;
}

.alert-mensagens a:focus {
    color: #fff;
    background-color: rgb(221, 222, 223);;
    text-decoration: none;
}

.alert-curti {
    /*color: #3b5998;*/
    border-color: #3b5998;
    font-size: 15px;
    height: 24px;
}

.alert-visualizo {
    /*color: #147E00;*/
    border-color: #3b5998;
    font-size: 15px;
    height: 24px;
}

.alert-favorito {
    /*color: #FFB800;*/
    border-color: #FFB74C;
    font-size: 15px;
    height: 24px;

}

.alert-veja-mais {
    display: block;
    text-align: center;
    text-decoration: none;
}

.yellow-color {
    color: #FFB800;
}

.blue-color {
    color: #3b5998;
}

.profile-title {
    text-align: center;
    font-size: 20px;
    margin: 20px;
}

.profile-title a {
    text-align: center;
    font-size: 14px;
    color: #00338D;

}

.hr-tabela {
    margin: 0px;
}

/* busca pessoa header */

.busca_pessoa {
    width: 341px;
    margin-top: 22px;
    margin-left: 40px;
    min-height: 25px;
}

ul.procura {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    width: 400px;
    cursor: text;
    font-size: 12px;
    font-family: Verdana;
    min-height: 1px;
    z-index: 999;
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
    border-radius: 6px;
}

ul.procura li input {
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell;
}

.busca_dropdown {
    display: none;
    position: absolute;
    top: 20px;
    width: 399px;
    border: 1px solid rgb(219, 219, 219);
    z-index: 10000000;
    background-color: #FFFFFF;
    border-radius: 4px;
}
@import url('https://fonts.googleapis.com/css?family=Roboto:300');
.busca_descricao_startup_ct {
    height:80px;
}

.busca_descricao_startup {
    line-height:19px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
.busca_lista {
    padding-left: 5px;
}

.lista_li {
    min-height: 57px;
    padding: 2px 30px 2px 63px;
    cursor: pointer;
    border: solid #fff;
    border-width: 1px 0;
    color: #333;
    display: block;
    position: relative;
    border-bottom: 1px solid lightgrey;
}

li.lista_li:hover {
    background: rgb(221, 222, 223);
}

.lista_li img {
    background-color: #eceff5;
    display: block;
    height: 50px;
    left: 6px;
    position: absolute;
    width: 50px;
}

.busca_nome {
    color: #3b5998;
    font-weight: bold;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.busca_cidade {
    color: #666;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.busca_ico {
    position: absolute;
    left: 352px;
    bottom: 8px;
    height: 40px;
    width: 40px;
    background: rgb(240, 240, 240);
    border-radius: 30px;
}

.busca_veja_mais {
    min-height: 36px;
    padding: 8px 66px 2px 59px;
    cursor: pointer;
    border: solid #fff;
    border-width: 1px 0;
    color: #00F;
    display: block;
    position: relative;
    border-bottom: 1px solid lightgrey;
    text-align: center;
}

li.busca_veja_mais:hover {
    background: rgb(221, 222, 223);
}

.busca_pagina_block {
    width: 500px;
}

/* Encontra */

.encontra_lista {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    display: block;
    cursor: text;
    font-size: 12px;
    font-family: Verdana;
    min-height: 1px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
    list-style: none;
}

.encontra_li {
    min-height: 70px;
    padding: 11px 36px 5px 55px;
    cursor: pointer;
    border: solid #fff;
    border-width: 1px 0;
    color: #333;
    display: block;
    position: relative;
    border-bottom: 1px solid lightgrey;
}

li.encontra_li:hover {
    background: rgb(221, 222, 223);
}

.encontra_li img {
    background-color: #eceff5;
    display: block;
    height: 50px;
    left: 6px;
    position: absolute;
    width: 50px;
}

.encontra_nome {
    color: #3b5998;
    font-weight: bold;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    margin-left: 10px;
}

.encontra_cidade {
    color: #666;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    right: 223px;
}

.encontra_ico {
    position: absolute;
    right: 0px;
    bottom: 17px;
    height: 45px;
    width: 45px;
    background: rgb(240, 240, 240);
    border-radius: 30px;
}

.encontra_ico i {
    font-size: 23px;
    text-align: center;
    margin-top: 14px;
    margin-left: 1px;
}

/* problema */

.resposta_block {

}

.resposta_title {

}

.resposta_autor {

    padding: 3px;
}

.resposta_categoria {

    padding: 3px;
}

.resposta_corpo {
    word-wrap: break-word;
    padding: 3px;
}

.resposta_solucao {
    margin: 44px;
}

.resposta_resposta {
    float: left;
    padding: 3px;
}

.logimagem {
    width: 210px;
    height: 50px;
    position: relative;
    left: -11px;
    height: -1px;
    top: -2px;
}

/* Busca problema */
.problema_dropdown {
    /*margin: 19px;*/
}

.problema_li_resultado {
    list-style-type: none;
    text-align: left;
    font-size: large;
    margin-left: 25%;
}

.problema_lista {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    cursor: text;
    font-size: 12px;
    font-family: Verdana;
    min-height: 1px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
}

.problema_li {
    min-height: 70px;
    padding: 11px 36px 5px 55px;
    cursor: pointer;
    border: solid #fff;
    border-width: 1px 0;
    color: #333;
    display: block;
    position: relative;
    border-bottom: 1px solid lightgrey;
    border-radius: 10px;
}

li.problema_li:hover {
    background: rgb(165, 183, 255);

}

.problema_li img {
    background-color: #eceff5;
    display: block;
    height: 50px;
    left: 6px;
    position: absolute;
    width: 50px;
}

.problema_nome {
    color: #3b5998;
    font-weight: bold;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    margin-left: 10px;
}

.problema_cidade {
    color: #666;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    right: 223px;
}

.problema_ico {
    position: absolute;
    right: 0px;
    bottom: 17px;
    height: 45px;
    width: 45px;
    background: rgb(240, 240, 240);
    border-radius: 30px;
}

.problema_ico i {
    font-size: 23px;
    text-align: center;
    margin-top: 14px;
    margin-left: 1px;
}

.encontra_problema {
    /*max-width: 900px;*/
}

.encontra_box-post {
    background: #FFF;
    padding: 10px;
    position: relative;
    margin-bottom: 2em;
    height: 280px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
    border-radius: 2px;
}

/*
.encontra_box-post:hover,.box-post:active,.box-post:focus {
box-shadow:0 0 4px 0 rgba(0,0,0,0.4);
border-color:#b3b3b3;
}
*/
.encontra_box-post .encontra_box-titulo {
    height: 36px;
    width: 100%;
    border-bottom-color: rgb(210, 210, 210);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.encontra_box-post .encontra_box-titulo .encontra_titulo {
    margin-left: 6px;
}

.encontra_box-post .encontra_box-autor {
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: 6px;
    height: 15px;
}

.encontra_box-post .encontra_box-descricao {
    margin-left: 10px;
    height: 100px;
}

.encontra_box-post .encontra_box-descricao .encontra_box-texto {
    margin-left: 75px;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.encontra_box-post .encontra_box-descricao .encontra_box-avatar {
    float: left;
    font-size: 1em;
    line-height: 1.3;
    margin: 0;
}

.encontra_box-post .encontra_box-descricao .encontra_box-widget-avatar.pull-right {
    margin-left: 10px;
}

.encontra_box-post .encontra_box-descricao .encontra_box-widget-avatar.pull-right {
    margin-right: 0;
}

.encontra_box-post .encontra_box-descricao .encontra_box-widget-avatar {
    width: 65px;
    height: 83px;
    float: left;
    padding: 0px;
    margin-top: 4px;
    background: url('../img/template/ie8_opacity_light_75.png') repeat;
    background: rgba(255, 255, 255, 0.75);
}

.encontra_box-post .encontra_box-descricao .encontra_box-widget-avatar img {
    width: 70px;
    height: 70px;
}

.encontra_box-post .encontra_box-descricao .encontra_box-caixa-icon {
    height: 70px;
    width: 70px;
    font-size: 40px;
    background-color: rgb(236, 238, 238);
    text-align: center;
}

.encontra_box-post .encontra_box-categoria {
    font-size: 1em;
    line-height: 1.3;
    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
}

.encontra_box-post .encontra_box-footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #f0efed;
    padding: .5em .7em .35em;
    width: 100%;
}

.encontra_box-post .encontra_box-footer i {
    color: #bfbeba;
    font-size: .75em;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
}

.encontra_box-post .encontra_box-footer .count {
    font-size: .875em;
    display: inline-block;
    margin-right: .9em;
}

.encontra_box-post .encontra_box-footer .count.view-count i {
    position: relative;
    top: 1px;
    font-size: .925em;
}

.encontra_box-post .encontra_box-footer .count.comment-count.highlight i {
    color: #33312d;
}

.encontra_box-post .encontra_box-footer .encontra_button-icon {
    float: left;
    background-color: #f0efed;
    border: 0px;
    border-color: #f0efed;
}

.encontra_box-post .encontra_box-footer .encontra_button-icon i {
    font-size: 20px;
}

.encontra_box-post .encontra_box-footer .encontra_button-icon .blue-color {
    color: #43609c;
}

.encontra_box-post .encontra_box-footer .encontra_button-icon .yellow-color {
    color: #f90;
}

.encontra_box-post .encontra_box-footer .encontra_button-icon .red-color {
    color: red;
}

.encontra_box-post .encontra_box-footer .encontra_box-button-resolver {
    float: right;
}

.encontra_button-icon {
    float: left;
    background-color: #ffffff;
    border: 0px;
    border-color: #f0efed;
    margin-top: 10px;
}

.encontra_button-icon i {
    font-size: 20px;
}

.encontra_button-icon .blue-color {
    color: #43609c;
}

.encontra_button-icon .yellow-color {
    color: #f90;
}

.encontra_button-icon .red-color {
    color: red;
}

.encontra_box-button-resolver {
    float: right;
}

/* inbox */

/*
.inbox-siderbar{
float: left;
width: 154px;
position: relative;
}







/*mail inbox*/

.mail-box {
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    border-color: #FFFFFF;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    margin: 0px 0px 25px 0px;
}

.mail-box aside {
    /* height: 100%; */
    padding: 0;
    vertical-align: top;
}

.mail-box .sm-side {
    background: #FFFFFF;
    border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    padding-left: 0px;
    border-right: 1px solid #d5d8df;
}

.mail-box .lg-side {
    background: #fff;
    border-radius: 0px 4px 4px 0;
    -webkit-border-radius: 0px 4px 4px 0;
}

.mail-box .sm-side .user-head {
    background: #00a8b3;
    border-radius: 4px 0px 0px 0;
    -webkit-border-radius: 4px 0px 0px 0;
    padding: 10px;
    color: #fff;
    min-height: 80px;
}

.user-head .inbox-avatar {
    width: 65px;
    float: left;
}

.user-head .inbox-avatar img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.user-head .user-name {
    display: inline-block;
    margin: 0 0 0 10px;
}

.user-head .user-name h5 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 300;
}

.user-head .user-name h5 a {
    color: #fff;
}

.user-head .user-name span a {
    font-size: 12px;
    color: #87e2e7;
}

a.mail-dropdown {
    background: #80d3d9;
    padding: 3px 5px;
    font-size: 10px;
    color: #01a7b3;
    border-radius: 2px;
    margin-top: 20px;
}

.inbox-body {
    padding: 10px;
}

.btn-compose {
    background: #1abb75;
    padding: 7px 0;
    text-align: center;
    width: 100%;
    color: #FFFFFF;
    font-size: 17px!important;
}

.btn-compose:hover {
    background: #068a53;
    color: #FFFFFF;
}
#enviar_email{
    font-size:14px;
}

ul.inbox-nav {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.inbox-divider {
    border-bottom: 1px solid #d5d8df;
}

ul.inbox-nav li {
    display: inline-block;
    line-height: 45px;
    width: 100%;
}

ul.inbox-nav li a {
    color: #6a6a6a;
    line-height: 45px;
    width: 100%;
    display: inline-block;
    padding: 0 20px;
}

ul.inbox-nav li a:hover, ul.inbox-nav li.active a, ul.inbox-nav li a:focus {
    color: #6a6a6a;
    background: #d5d7de;
}

ul.inbox-nav li a i {
    padding-right: 10px;
    font-size: 16px;
    color: #6a6a6a;
}

ul.inbox-nav li a span.label {
    margin-top: 13px;
    padding: 2px;
}

ul.labels-info li h4 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    color: #5c5c5e;
    font-size: 13px;
    text-transform: uppercase;
}

ul.labels-info li {
    margin: 0;
}

ul.labels-info li a {
    color: #6a6a6a;
    border-radius: 0;
}

ul.labels-info li a:hover, ul.labels-info li a:focus {
    color: #6a6a6a;
    background: #d5d7de;
}

ul.labels-info li a i {
    padding-right: 10px;
}

.nav.nav-pills.nav-stacked.labels-info p {
    margin-bottom: 0;
    padding: 0 22px;
    color: #9d9f9e;
    font-size: 11px;
}

.inbox-head {
    padding: 10px;
    background: #FFFFFF;
    color: #000;
    border-radius: 0 4px 0 0;
    background-color: #f9fafc;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

.inbox-head h3 {
    display: inline-block;
    padding-top: 6px;
    font-weight: 300;
    font-size: 14px;
}

.inbox-head .sr-input {
    height: 40px;
    border: 1px solid;
    box-shadow: none;
    padding: 0 10px;
    float: left;
    border-radius: 4px 0 0 4px;
    color: #9B9B9B;
}

.inbox-head .sr-btn {
    height: 40px;
    border: none;
    background: #00a6b2;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
}

.table-inbox {
    border: 2px solid #e7e7e7;
    margin-bottom: 0;
}

.table-inbox tr td {
    padding: 12px !important;
}

.table-inbox tr td:hover {
    cursor: pointer;
}

.table-inbox tr td .icon-star.inbox-started, .table-inbox tr td .icon-star:hover {
    color: #f78a09;
}

.table-inbox tr td .icon-star {
    color: #d5d5d5;
}

.table-inbox tr.unread td {
    font-weight: 600;
    background: #D3D3D3;
}

ul.inbox-pagination {
    float: right;
    list-style: none;
}

ul.inbox-pagination li {
    float: left;
}

.mail-option {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}

.mail-option .chk-all, .mail-option .btn-group {
    margin-right: 5px;
}

.mail-option .chk-all, .mail-option .btn-group a.btn {
    border: 1px solid #e7e7e7;
    padding: 5px 10px;
    display: inline-block;
    background: #fcfcfc;
    color: #000000;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
}

.inbox-pagination a.np-btn {
    border: 1px solid #e7e7e7;
    padding: 5px 15px;
    display: inline-block;
    background: #fcfcfc;
    color: #afafaf;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
}

.mail-option .chk-all input[type=checkbox] {
    margin-top: 0;
}

.mail-option .btn-group a.all {
    padding: 0;
    border: none;
}

.inbox-pagination a.np-btn {
    margin-left: 5px;
}

.inbox-pagination li span {
    display: inline-block;
    margin-top: 7px;
    margin-right: 5px;
}

.fileinput-button {
    border: 1px solid #e6e6e6;
    background: #eeeeee;
}

.inbox-body .modal .modal-body input, .inbox-body .modal .modal-body textarea {
    border: 1px solid #e6e6e6;
    box-shadow: none;
}

.btn-send, .btn-send:hover {
    background: #00A8B3;
    color: #fff;
}

.btn-send:hover {
    background: #009da7;
}

.modal-header h4.modal-title {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.modal-body label {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.pessoa_email {
    width: 341px;
    margin-top: 22px;
    margin-left: 40px;
    min-height: 25px;
}

.pessoa_email_lista {
    width: 341px;
    margin-top: 22px;
    margin-left: 40px;
    min-height: 25px;
}

.pessoa_email_dropdown {
    display: none;
    position: absolute;
    top: 35px;
    width: 97%;
    border: 1px solid rgb(219, 219, 219);
    z-index: 1;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.pessoa_email_nome {
    color: #3b5998;
    font-weight: bold;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pessoa_email_cidade {
    color: #666;
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pessoa_email_ico {
    position: absolute;
    right: 11px;
    bottom: 8px;
    height: 40px;
    width: 40px;
    background: rgb(240, 240, 240);
    border-radius: 30px;
}

.lista_email {

}

.inbox-body-head {
}

.inbox-body-img {
    float: left;
}

.inbox-body-head .inbox-nome {
    color: #0077b5;
    position: relative;
    left: 15px;
}

.inbox-body-head .inbox-assunto {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    color: #000;
    word-wrap: break-word;
    position: relative;
    left: 15px;
}

.inbox-body-head .inbox-body-body {
    font-size: 13px;
    line-height: 17px;
    color: #333;
    font-weight: normal;
    padding-left: 0px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    word-wrap: break-word;
    clear: both;
    margin-left: 0px;
    margin-right: 10px;
}

.inbox-body-head .inbox-data {
    font-size: 12px;
    line-height: 14px;
    color: #333;
    font-weight: normal;
    color: #a9a9a9;
    position: relative;
    left: 15px;
}

.inbox-body-mensagem {
    padding: 20px 20px 20px 0px;
}

/*.inbox-body-button {*/
/*height: 32px;*/
/*border-bottom: 1px solid #e5e5e5;*/
/*margin-left: 28px;*/
/*margin-right: 28px;*/
/*}*/

.inbox-body-button ul {
    float: left;
    padding-top: 10px;
    list-style: none;
}

.inbox-body-button li {
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    margin-right: 25px;
    cursor: pointer;
}

.inbox-body-button a {
    margin-top: 5px;
    color: #6F6F6F;
    text-decoration: none;
    font-size: 12px;
    vertical-align: text-top;
}

.inbox-body-button a:hover, a:focus {
    color: #2a6496;
}

.inbox-responder {
    display: none;
    margin: 17px;
}

/* Responder */

.responder_button {

}

.responder_button .like {
    position: relative;
    left: 0px;
    float: left;
}

.responder_button .favorite {
    position: relative;
    left: 0px;
    float: left;
}

.button-menu {
    font-size: 18px;
}

.button_link {
    color: #FFFFFF;
}

.buttons_convites {

}

#aceitar {
    background: #1abb75;
    color: white;
    font-size: 14px;
}

#recusar {
    background: #e74c3c;
    color: white;
    font-size: 14px;
}

/* caixa estilo face */
.block-head {
    /*border: solid;*/
    height: 57px;
    border-bottom: 1px solid;
    overflow: hidden;
    text-overflow: ellipis;
}

.block-head a img {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    vertical-align: top;
}

.block-content {
    /*border: solid;*/
    height: 350px;
}

.content-interno {
    /*border: solid;*/
    height: 180px;
    margin: 10px;
}

.content-descricao {
    height: 60px;
    padding: 10px;
}

.content-descricao .span_categorias {

}

.content-descricao .span_tags {
    position: relative;
    top: 5px;
}

.content-botao .content-botao-botao {

}

.content-botao a {
    position: relative;
    top: 35px;
    cursor: pointer;
    text-decoration: none;
}

.block-comentario {
    margin-top: 16px;
    height: 40px;
    border-top: 1px solid;
    display: none;
}

.content-botao button {
    float: right;
    margin: 3px;
}

.content-indicadores {
    margin-top: 6px;
    height: 20px;
}

.content-botao {
    /*border: solid;*/
    margin: 10px;
    padding: 10px;
}

.block-head a {
    height: 40px;
    width: 40px;
    float: left;
}

/* caixa estilo face */

/* block menu */

.block-menu {
    margin: 0;
    font-size: 80% /*smaller*/;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    position: fixed;
    top: 120px;
    width: 100%;
    max-width: 266px;
}

.block-menu-title {
    border-bottom: 1px solid;
    font-size: 16px;
}

.block-menu-body {

}

.block-menu-notificacao {
    margin-top: 10px;

}

.block-linha-notificacao {
    margin-top: 10px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-data-notificacao {
    font-size: 9px;
    border-bottom: 1px solid #EFEFEF;
}

/* block menu */

.sidebar-nav-grupo {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}

.sidebar-nav-grupo .sidebar-header-grupo:first-child {
    margin-top: 0;
}

.sidebar-nav-grupo a {
    display: block;
    min-height: 35px;
    line-height: 35px;
    color: black;
    font-size: 13px;
}

.sidebar-nav-grupo a:hover,
.sidebar-nav-grupo a.open,
.sidebar-nav-grupo li.active > a {
    color: black;
    text-decoration: none;
}

.sidebar-nav-grupo a.active {
    padding-left: 5px;
    border-left: 5px solid #1bbae1;
    background: url('../img/template/ie8_opacity_dark_30.png') repeat;
    background: rgba(0, 0, 0, 0.3);
}

.sidebar-nav-grupo a > .sidebar-nav-grupo-icon {
    margin-right: 10px;
}

.sidebar-nav-grupo a > .sidebar-nav-grupo-indicator {
    float: right;
    line-height: inherit;
    margin-left: 4px;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.sidebar-nav-grupo a > .sidebar-nav-grupo-icon,
.sidebar-nav-grupo a > .sidebar-nav-grupo-indicator {
    display: inline-block;
    opacity: 0.5;
    filter: alpha(opacity=50);
    width: 18px;
    font-size: 14px;
    text-align: center;
}

.sidebar-nav-grupo a:hover,
.sidebar-nav-grupo a:hover > .sidebar-nav-grupo-icon,
.sidebar-nav-grupo a:hover > .sidebar-nav-grupo-indicator,
.sidebar-nav-grupo a.active,
.sidebar-nav-grupo a.active > .sidebar-nav-grupo-icon,
.sidebar-nav-grupo a.active > .sidebar-nav-grupo-indicator,
.sidebar-nav-grupo a.open,
.sidebar-nav-grupo a.open > .sidebar-nav-grupo-icon,
.sidebar-nav-grupo a.open > .sidebar-nav-grupo-indicator,
.sidebar-nav-grupo li.active > a,
.sidebar-nav-grupo li.active > a > .sidebar-nav-grupo-icon,
.sidebar-nav-grupo li.active > a > .sidebar-nav-grupo-indicator {
    opacity: 1;
    filter: alpha(opacity=100);
}

.sidebar-nav-grupo a.active > .sidebar-nav-grupo-indicator,
.sidebar-nav-grupo a.open > .sidebar-nav-grupo-indicator,
.sidebar-nav-grupo li.active > a > .sidebar-nav-grupo-indicator {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.sidebar-nav-grupo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.sidebar-nav-grupo li.active > ul {
    display: block;
}

.sidebar-nav-grupo ul a {
    margin: 0;
    font-size: 14px;
    padding-left: 15px;
    min-height: 32px;
    line-height: 32px;
}

.sidebar-nav-grupo ul a.active,
.sidebar-nav-grupo ul a.active:hover {
    border-left: 5px solid #1bbae1;
    padding-left: 10px;
}

.sidebar-nav-grupo ul ul {
    background: url('../img/template/ie8_opacity_dark_40.png') repeat;
    background: rgba(0, 0, 0, 0.4);
}

.sidebar-nav-grupo ul ul a {
    padding-left: 25px;
}

.sidebar-nav-grupo ul ul a.active,
.sidebar-nav-grupo ul ul a.active:hover {
    padding-left: 20px;
}

/* Sidebar Header */
.sidebar-header-grupo {
    margin: 10px 0 0;
    padding: 10px;
    line-height: 12px;
}

.sidebar-header-grupo + .sidebar-section {
    padding-top: 0px;
    padding-bottom: 0px;
}

.sidebar-header-grupo .sidebar-header-grupo-title {
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.sidebar-header-grupo-options {
    float: right;
    display: inline-block;
}

.sidebar-header-grupo-options > a,
.sidebar-nav-grupo .sidebar-header-grupo-options a {
    float: right;
    margin: 0;
    padding: 0;
    min-height: 0;
    line-height: inherit;
    display: block;
    min-width: 18px;
    text-align: center;
    color: #ffffff;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

.sidebar-header-grupo-options a.active,
.sidebar-header-grupo-options a:hover,
.sidebar-header-grupo-options a:focus,
.sidebar-nav-grupo .sidebar-header-grupo-options a.active,
.sidebar-nav-grupo .sidebar-header-grupo-options a:hover,
.sidebar-nav-grupo .sidebar-header-grupo-options a:focus {
    background: none;
    color: #ffffff;
    opacity: 1;
    filter: alpha(opacity=100);
}

.sidebar-header-grupo-options a > i {
    font-size: 14px;
}

.block-atividade-title {
    border-bottom: 1px solid;
    font-size: 16px;
}

.block-notificacao-title {
    border-bottom: 1px solid;
    font-size: 16px;
}

.block-notificacao {
    margin: 0;
    font-size: 80% /*smaller*/;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    position: fixed;
    top: 400px;
    width: 100%;
    max-width: 175px;
}

.header_grupo_left {
    position: absolute;
    left: 0px;
    margin-top: 15px;
    list-style: none;
}

.header_grupo_left li {
    display: inline;
}

.header_grupo_right {
    margin-top: 15px;
    list-style: none;
    position: absolute;
    right: 70px;
    color: #FFFFFF;
}

.header_grupo_right li {
    display: inline;
}

.block-header {
    display: inline-block;
    float: left;
}

.block-header a {
    border: 1px solid #e7e7e7;
    padding: 5px 10px;
    display: inline-block;
    background: #fcfcfc;
    color: #afafaf;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
}

.block-pessoa {
    max-height: 120px;
}

.block-pessoa a {
    position: relative;
    left: 0px;
}

.block-pessoa a img {
    width: 60px;
    height: 60px;
    vertical-align: top;
}

.block-pessoa-nome {
    position: relative;
    left: 70px;
    bottom: 60px;
    word-wrap: break-word;
    width: 90px;
    height: 4px;
    cursor: pointer;

}

.block-pessoa-button {
    height: 55px;
}

.block-pessoa-button {

}

/* Editar Perfil */
.bnt_deletar_formacao {
    background: #FFFFFF;
    border-color: #FFFFFF;
    border: 1px;
    color: red;
}

.bnt_alterar_formacao {
    background: #FFFFFF;
    border-color: #FFFFFF;
    border: 1px;
    color: black;
}

.bnt_deletar_profissional {
    background:transparent;
    border:transparent;
    color: red;
}

.bnt_adicionar{
    background:transparent;
    border:transparent;
    color: green;
}

.bnt_alterar_profissional {
    background: #FFFFFF;
    border-color: #FFFFFF;
    border: 1px;
    color: black;
}

.bnt_editar {
    background: #FFFFFF;
    border-color: #FFFFFF;
    border: 1px;
}

.painel i {
    margin-right: 10px;
}

.box_status_desafio {
    height: 264px;
    width: 62px;
    border: solid 1px rgb(255, 234, 234);
    float: left;
    position: relative;
    top: -21px;
    left: -21px;
}

.vertical-text {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    writing-mode: lr-tb;
    position: absolute;
    top: 118px;
    left: -26px;
    font-size: 26px;
    /*-webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    writing-mode: lr-tb;
    position: absolute;
    top: 200px;
    left: 11px;
    font-size: 26px;
    */
}

.site-block {
    height: 205px;
}

.site-block-descricao {
    height: 80px;
}

.box_status_fundo {
    position: relative;

    bottom: -20px;
    height: 17px;
    left: 21px;
    z-index: 0;
}

.block_estatistica_desafico {
    float: left;
}

.block_button_desafico {
    position: absolute;
    right: 37px;
    margin-top: 15px;
}

.block_botoes {
    height: 50px;

}

.resposta-comentario {
    margin-top: 16px;
    height: 118px;
    display: none;
}

.problema_corrige {
    margin-top: 16px;
    display: none;
}

.cursor_resposta_comentario {
    cursor: pointer;
    text-decoration: none;
}

.favorito_busca {
    margin-bottom: 3px;
    margin-left: 1px;
    margin-right: 6px;
}

.table_midias {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table_midias td {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    height: 80px;
    word-break: break-word;

}

.table_midias th {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 20px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;

}

.ajuda_professor {
    float: right;
    margin-top: -10px;
    margin-right: -10px;
}

.block_notificacao {
    margin: 0;
    font-size: 80% /*smaller*/;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    position: fixed;
    top: 388px;
    width: 100%;
    max-width: 266px;
}

.block_proxima_ativicade {
    margin: 0;
    font-size: 80% /*smaller*/;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    position: fixed;
    top: 450;
    width: 100%;
    max-width: 266px;
}

.block_desafio_grupo {

}

.block_status_desafico_grupo {
    height: 265px;
    width: 63px;
    border: solid 1px rgb(255, 234, 234);
    float: left;
    position: relative;
    top: -21px;
    left: -21px;
}

.block_fundo_desafio_grupo {
    position: relative;
    bottom: -21px;
    height: 17px;
    left: 21px;
    z-index: 0;
}

.block_head_desafio_grupo {
    /* border: solid; */
    height: 57px;
    border-bottom: 1px solid;
    overflow: hidden;
    text-overflow: ellipis;
}

.block_footer_desafico_status {

}

.block_estatistica_desafico_grupo {
    float: left;
}

.block_button_desafico_grupo {
    position: absolute;
    right: 37px;
    margin-top: 15px;
}

.box_status_desafio_solucao {
    height: 275px;
    width: 66px;
    border: solid 1px rgb(255, 234, 234);
    float: left;
    position: relative;
    top: -32px;
    left: -21px;
}

.desafio-titulo {
    height: 23px;
    border-bottom: 1px solid;
    font-size: 17px;
    font-weight: 500;
}


.busca_mentor_nome {

}

.busca_mentor_area {
    height: 55px;
    max-height: 55px;
}


.busca_lista_area {
    list-style: none;
    margin-left: -32px;
}

/** CSS Mentorias */

.span_mentorias {
    display: block;
    padding: 3px 0px;
    color: #636363;
    font-size: 13px;
}

.block_mentorias_cabecalho {
    display: block;
    min-height: 90px;
    cursor: pointer;
    padding-top: 5px;
}

.busca_mentorias_avatar {
    display: block;
    float: left;
    margin-right: 10px;

    border: 2px solid #eef1f5;
}

.busca_mentorias_nome {
    display: block;
    font-weight: 600;
    color: #2b2b2b;
}

.busca_mentorias_area {
    display: block;
    height: 55px;
    max-height: 55px;
}

.busca_mentorias_botoes {
    margin-top: 15px;

}

.busca_mentorias_botoes2{
    margin-top: 15px;
    position: absolute;
    bottom: 33px;
}

.block_mentorias_cabecalho img:not(.img-modulo){
    height: 65px;
    width: 65px;
    border-radius: 8px;
}

.indisponivel span {
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
}

.subtilulo_endereco {
    font-size: 12px;
    margin-top: 14px;
    color: #6F6F6F;
    margin-bottom: 0px;
}


.bnt_deletar_seguimento {
    background-color: transparent;
    border-color: transparent;
    color: red;
}

.horario-atividade > h5{
    margin: 0;
    font-weight: bold;
}

.horario-atividade{
    padding: 10px 15px;
    border: 2px solid #005EB8;
    border-radius: 50%;
    float: right;
    text-align: center;
    width: 75px;
    /*position: absolute;
     right: 35px;*/
    right: 0px;
    margin-top: -95px;

}
.modal-title {
    font-weight: 300;
    font-size: 16px;
    font-weight: 600;
    color:#003087;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
}

.dropdown-menu>li>a {
    font-size: 13px;
    text-transform: capitalize;
}
/*.dataTables_filter{
    position: absolute;
}*/
.modal-header {
    padding: 15px 15px 14px;
    border-bottom: 1px solid #eeeeee;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #FFFFFF;
}
.style-alt .block {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.form-bordered .form-group {

    border-bottom: none;
}

.style-alt .block-title {
    border-bottom-color: inherit;
}


.navbar-default .navbar-nav > li > a, .color-branco, .menu-link {
    text-transform: uppercase;
    color: #00338D;
    font-weight: 600;

}

.navbar-default .navbar-nav > li > a:focus, .color-branco:focus, .menu-link:focus,
.navbar-default .navbar-nav > li > a:hover, .color-branco:hover, .menu-link:hover {
    color: white !important;
}

.navbar-default .navbar-nav > li > a:hover {
    transition: .1s;
}

#header-color {
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0px;
    margin: auto;
    z-index: 100;
    width: 100%;
    border-radius: 0px;
}

#header-color, .navbar.navbar-default {
    background-color: #FFFFFF;
}

ul.procura {
    border-radius: 0px !important;
    margin-right: 4px;
}

ul.procura * {
    border-color: #e4e4e4 !important;
}

.dropdown:hover > a > i *, .dropdown:focus * {
    color: white !important;
}
.table>tbody>tr>td {
    border-top: none;
    border-bottom: 1px solid #ddd;
}

/*Loading Page*/
.login_bg_img {
    width: 100%;
    min-height: 672px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
}

.login_box_login {
    margin: auto;
    width: 100%;
    max-width: 500px;
    padding: 35px;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #efefef;
}

.login_box_login p {
    line-height: 1;
}

.login_p_seed {
    font-size: 50px;
    color: #5b5b5b;
    margin-bottom:0;
}

.login_p_mentoria {
    margin-bottom: 50px;
    color: #5b5b5b;
}

.login_p_senha {
    margin: 12px 0 30px;
    font-size: 10pt;
    color: #191919;
}

.login_p_copy {
    font-size: 10pt;
    color: #191919;
    margin-bottom: 5px;
}

.login_p_naoconhece {
    font-size: 10pt;
    color: #191919;
}

.login_p_naoprograma {
    font-size: 10pt;
    margin-top: 10px;
    margin-bottom: 0;
}
.login_p_naoprograma a {
    color: #191919 !important;
}

.login_p_button {
    margin-top: 30px;
}

.login_box_login a {
    text-decoration: none;
    color: #0c91f8;
}

.login_box_login input {
    padding: 10px;
    width: 90%;
    border: none;
    border-bottom: 1px solid #898989;
    background: transparent;
    margin: 10px 0;
    outline:none;
    color: #191919;
    border-radius: 0;
}

.login_box_login button {
    border: none;
    padding: 11px 40px;
    border-radius: 3px;
    background: #0066ff;
    outline: none;
    color: ghostwhite;
    font-size: 17px;
    font-weight: 300;
    -webkit-transition: all 150ms ease;
    -moz-transition: all 150ms ease;
    -ms-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
}
.login_box_login button:hover {
    background: #007cff;
}
/*loading page*/
@media screen and (min-width: 768px) {
    /*  .navbar-menu-over{
          overflow: hidden!important;
      }
  */
}

@media screen and (max-width: 768px) {
    .nav-center {
        margin: 0 auto !important;
        float: none !important;
    }

    .nav-center img {
        max-height: 80px;
        margin: 0 auto;
    }

    .no-float {
        float: none !important;
    }

    .button-link {
        color: #00338D !important;
        font-size:16px;
    }
    .button-link i {
        color: #00338D !important;
        font-size:16px!important;
    }

    .button-link:hover {
        color: #00338D !important;
        font-size:16px!important;
        background-color: #FFFFFF!important;
    }
    .button-link:active {
        color: #00338D !important;
        font-size:16px!important;
        background-color: #FFFFFF!important;
    }
    .button-link:focus {
        color: #00338D !important;
        font-size:16px!important;
        background-color: #FFFFFF!important;
    }
    .navbar-hide {
        height: 100% !important;
        margin-top: -58px !important;
        z-index: -1 !important;
    }

    #page-content {
        padding: 20px 5px 1px;
        background-color: #F1F1F1;
    }
    .div-feed img {
        max-width: 190px;
    }
}



@media screen and  (max-width: 1190px) {
    .nome-completo {
        /*display: none !important;
    */
    }

}

.nome-completo {
    text-transform: uppercase;
    text-align: center;
    color: #FF695D !important;
    margin-top: 35px;
    padding-left: 15px;
    font-size: 16px;
    font-family: nexa;
}

.collapse, .collapsing {
    width: 100%;
}

.style-alt .widget, .style-alt .task-list li {
    background-color: #fff;
}

.linha-azul {
    border-top: 3px solid #00338D !important;
}

@media (min-width: 768px) {
    .navbar .navbar-nav {
        display: inline-block;
        float: none;
        vertical-align: top;
    }

    .navbar .navbar-collapse {
        text-align: justify;
        /*text-align: center;*/
    }
}

@media (max-width: 768px) {
    #search-bar {
        display: block !important;
        margin-top: 0px !important;
    }

    .margin-top-50-xs {
        margin-top: 50px !important;
    }
}

@media (min-width: 768px) {
    #search-bar {
        /*  margin-top: -30px !important; */
    }
}

.widget-simple > .widget-content > strong {
    color: #00338D;
}

.botao_bloqueio button {

}

hr {
    margin-top: 15px;
    margin-bottom:15px;
    border: 0;
    border-top: 1px solid #EDEDED;
}


.nav.navbar-nav-custom > li > a > img {
    border: none;
}

.rating-stars {
    font-family: 'Glyphicons Halflings' !important;
}

.style-alt #page-content, #page-container, #sidebar, #sidebar-alt {
    background-color: #f8f8fd;
}

.modal-body {
    overflow-y: scroll;
    /* height: 100%!important; */
    max-height: 700px;
}

.img-circle, .widget .widget-icon, .dropdown img, .dropdown a img, .nav.navbar-nav-custom > li > a > img {
    border-radius: 50% !important;
}

.content-header {
    padding: 0px 32%;
    margin-left: -32%;
    margin-right: -32%;
    margin-top: -47px;
}
.badge-etapa{
    padding: 1px 6px!important;
    font-size: 14px;
    font-weight: 600;
    margin-right: 0px;
    margin-left: 5px;
    border-radius: 8px!important;
}

.badge-custom {
    background: var(--primary); !important;
    font-size: 14px; !important;
    max-width: 260px;!important;
    padding: 6px;
    margin: 6px;
}
.label-btn {
    margin-left: 5px;
}

/*
.modal.in .page-loading {
    display: none;
}

 */

.page-loading {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 125px;
    margin-left: -60px;
    margin-top: -30px;
    padding: 7px;
    text-align: center;
    color: #fdfdfd;
    font-size: 32px;

    vertical-align: middle;

}

.style-alt #page-content + footer {
    border-top-color: #00338d;
    height: 28px;
    line-height: 12px;
}

.busca_logo_startup{
    padding:15px;
    width: 165px;
    height: 165px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -15px;
}

.busca_nome_startup{
    height:45px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: grid;
    align-items: center;
}

.pointer{
    cursor:pointer;
}

ul.dropdown-menu.dropdown-custom.dropdown-options {
    border-radius: 3px;
}
ul.dropdown-menu.dropdown-custom.dropdown-menu-right {
    border-radius: 3px;
}


footer {
    height: 28px;
    padding-left: 7px;
    padding-top: 7px;
}


#div_item_search{
    display: block;
    position: fixed;
    z-index: 10000;
    right: 140px;
}

input#procura_pessoa {
    border-radius: 3px;
}




.table>tbody>tr>td {
    border-top: none;
    border-bottom: 1px solid #ddd;
}

/*Loading Page*/
.login_bg_img {
    width: 100%;
    min-height: 672px;
    background-size: cover;
    min-height: 100vh;
    background-size: cover;     /* cobre a tela */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* evita bug em celulares */
    display: flex;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.login_box_login {
    margin: auto;
    width: 100%;
    max-width: 420px;
    padding: 35px;
    text-align: center;
    border-radius: 8px;
}

.login_box_login p {
    line-height: 1;
}

.login_p_seed {
    font-size: 50px;
    color: #5b5b5b;
    margin-bottom:0;
}

.login_p_mentoria {
    margin-bottom: 50px;
    color: #5b5b5b;
}

.login_p_senha {
    margin: 12px 0 30px;
    font-size: 10pt;
    color: #191919;
}

.login_p_copy {
    font-size: 10pt;
    color: #191919;
    margin-bottom: 5px;
}

.login_p_naoconhece {
    font-size: 10pt;
    color: #191919;
}

.login_p_naoprograma {
    font-size: 10pt;
    margin-top: 10px;
    margin-bottom: 0;
}
.login_p_naoprograma a {
    color: #191919 !important;
}

.login_p_button {
    margin-top: 30px;
}

.login_box_login a {
    text-decoration: none;
    color: #0c91f8;
}

.login_box_login input {
    padding: 8px;
    width: 90%;
    border: none;
    border-bottom: 1px solid #898989;
    background: transparent;
    margin: 10px 0;
    outline:none;
    color: #191919;
    border-radius: 0;
    font-size: 16px;
}

.login_box_login button {
    border: none;
    padding: 11px 40px;
    border-radius: 5px;
    background: #0066ff;
    outline: none;
    color: ghostwhite;
    font-size: 17px;
    font-weight: 300;
    -webkit-transition: all 150ms ease;
    -moz-transition: all 150ms ease;
    -ms-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
}
.login_box_login button:hover {
    background: #007cff;
}

#login_login {
    width: 100%;
}

.login-msg-center {
    margin-top: 10px;
    font-size: 16px;
}

.alert h4 {
    color: inherit;
    padding-top: 5px;
}
/*loading page*/


/*admin mentorado*/

#modal_cadastrar_mentorado label{
    margin-top: 10px;
    text-align: right;
}

#img_mentorado{
    max-width: 200px;
    max-height: 200px;
    border: 2px solid #818081a6;
}
/*admin mentorado*/

/*admin mentor*/

#modal_cadastrar_mentor label{
    margin-top: 10px;
    text-align: right;
}

#img_mentor{
    max-width: 200px;
    max-height: 200px;
    border: 2px solid #818081a6;
}
/*admin mentor*/

/*Dasboard mentorado*/
@media only screen and (max-width: 500px){

    .horario-atividade.responsive{
        display: none;
    }

    .span_mentorias.horario{
        display: block!important;
        text-align: center;
        margin: 10px;
    }

}
/*Dasboard mentorado*/

.aviso-final {
    width: 100%;
    height: 25px;
    background-color: #BC204B;
    color: white;
    font-size: 16px;
    text-align: center;
}

.aviso-final-admin{
    position: relative;
    top: 23px;
}

.aviso-final-mentor{
    position: relative;
    top: 28px;
}

.botao-avaliar{
    text-align: center;
    position: relative;
    margin: 32px 0 -32px;
}


.comentario-avaliacao-admin{
    min-height: 50px;
    width: 80%;
    padding: 4px;
    margin-left: 10%;
}

.relatorios-label-status{
    padding: 5px;
    font-size: 13px;
    min-width:100% !important;
}

.relatorios-label-status-num{
    margin-top: -3px;
    margin-left: 10px;
    background: white;
    color: black;
}
.fc-event .fc-time {
    float: left;
    text-align: left;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding-right: 0px;
    width: 100%;
}

.fc-event .fc-title {
    text-align: left;
    float: left;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center!important;
    width: 100%!important;
}

.modal .modal-content{
    overflow:hidden;
}
.modal-body{
    overflow-y:scroll;
}

.profile-title {
    text-align: center;
    font-size: 20px;
    margin: 15px;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 80%;
        margin: 10px auto;
        max-width: 1200px;
    }

    #block_heeader{
        height: 105px!important;
    }
}


@media screen and (min-width: 361px) and (max-width: 768px) {
    #block_heeader{
        height: 50px!important
    }
}

@media screen and  (max-width: 361px) {
    #block_heeader{
        height: 50px!important;
    }
}

@media screen and  (max-width: 1190px) {

}

.img-circle, .widget .widget-icon, .dropdown img, .dropdown a img, .nav.navbar-nav-custom > li > a > img {
    border-radius: 8px !important;
}

/*

.page-quick-sidebar {
    z-index: 10499;
    height: 100%;
    background: #353c48!important;
}

.page-quick-sidebar-wrapper-left-fade {
    transition: left .3s;
    opacity: 0.2;
    position: fixed;
    top: 0px;
    border: 0;
    outline: none;
    z-index: 0;
    height: 100%;
    display: none;
}

.page-quick-sidebar-wrapper {
    transition: right .3s;
    z-index: 10500;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 320px;
    right: -320px;
    overflow: hidden;
    color: #99a8b5;
    background: #21282e;
}


.page-quick-sidebar-wrapper {
    background: #728598;
}
.page-quick-sidebar-wrapper-left {
    transition: left .3s;
    z-index: 10501;
    margin-top: 0px;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 240px;
    left: -240px;
    overflow: hidden;
    color: #99a8b5;
    background: #21282e;
}




.page-quick-sidebar-open .page-quick-sidebar-wrapper-left {
    left: 0px;
}
.page-quick-sidebar-open .page-quick-sidebar-wrapper {
    transition: right .3s;
    right: 0;
}


*/


#navbar-menu {
    width: 100%;
    max-width: 100%;
    display: block !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    max-height: 50px;
    /* overflow: auto; */
}

#horizontal-menu-collapse {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    max-height: 55px;
    overflow: hidden!important;
    text-align: center;
}


.nav.navbar-nav-custom>li>a>img {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 6px;
    vertical-align: top;
}

.logo {
    max-height: 50px!important;
    margin-top: 5px;
    margin-left: 4px!important;
    cursor: pointer;
}

.block-title {
    border-bottom: none;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    padding: 6px 8px 6px;
    margin: -10px -10px 5px;
}

.block-user-profile{
    min-height: 100px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.block-perfil-texto{
    font-size: 14px;
    text-align:justify;
    margin-bottom: 20px;

}

.badge {
    background: white;
    font-size:10px;
}
#sidebar {
    height: 100%;
    background: #0282c6;

}

.label {
    padding: 0px 0px;
}
.btn-info:hover {
    background-color: #45a1de;
    border-color: #45a1de;
    color: #ffffff;
}

.block.full {
    padding: 15px 15px;
}

.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0px 0 0;
}
#sidebar-img {
    background: #ffffff;
    width: 200px;
    height: 60px;
    border-radius: 0px;
    padding: 10px 30px;
}

.sidebar-nav li a {
    /* text-transform: uppercase; */
    color: #0099DB !important;
}

#sidebar .sidebar-nav li a {
    /* text-transform: uppercase; */
    color: #ffffff !important;
    font-size: 20px;
    margin-top: 12px;
}

.button-menu a i {
    font-size: 25px!important;
    margin-top: 0px;
    padding: 10px;
}




.block-profile .image-thumb {
    /* border-radius: 50%; */
    height: 145px;
    margin: 0px auto 10px;
    overflow: hidden;
    width: 145px;
    border-radius: 6px;
}

.block-profile .profile-name {
    margin: 0px;
}

.block-profile  .profile-value-time {
    margin-top: 15px;
    font-size: 20px;
}

.block-profile  .profile-value-time .profile-time {
    background: #0099db;
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
}

.block-profile .info-title {
    font-size: 25px;
    font-weight: 400;
    color: #716d71;
    /* margin-left: 10px; */
}

.block-profile  section .description {
    width: 160px;
    font-size: 20px;
    color: #073087;
    font-weight: 400;
}
.block-profile>section {
    display: flex;
    padding-bottom: 10px;
}
.block-profile  section .description-info {
    font-size: 20px;
    font-weight: 400;
    margin-left: 10px;
    color: #716d71;
    text-align: justify;
}


table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.pagination>li {
    display: inline;
    font-size: 15px;
}

.block-mentor-title{
    font-size: 13px;
    font-weight: 600;
    margin: -20px -20px 0px;
    border-radius: 5px;
}

.block-mentors .image-thumb {
    margin: auto;
    overflow: hidden;
    margin-left: 25%;

}



.block_busca img {
    height: 65px;
    width: 65px;
    border-radius: 6px;
    margin-right: 5px;
}




.block.block-mentors {
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    height: 240px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.busca_mentor_nome {
    font-size: 15px;
    font-weight: 600;
    color: #4c4c4c;
}


.mail-box.linha-azul {
    border-radius: 8px!important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    display: block;
}
.table-inbox {
    border: 2px solid #e7e7e7;
    margin-bottom: 0;
    border-radius: 6px;
    display: block;
}

.modal-header {
    padding: 12px 12px 12px;
    border-bottom: 1px solid #eeeeee;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #FFFFFF;
}

.modal-lg {
    width: 98%!important;
}

.table thead > tr > th {
    font-size: 12px;
    font-weight: 500;
    background-color: #ffffff!important;
}

.note-group-select-from-files{
    display:none;
}

.note-modal .close{
    display:none;
}

.panel-body {
    min-height: 300px;
}

.note-editable {
    min-height: 400px;
}

.mais-feed{
    text-align: center;
    color: #00338D;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.div-feed {
    color: #2d2d2d;
    cursor: pointer;
}

.div-feed-text{
    max-height: 56px;
    overflow: hidden;
    color: #505254;
    text-align: justify;
}
.div-feed-data-completa {
    font-size: 13px;
    margin-top: 8px;
    text-align: right;
    color: #5a5a5a;
}
.div-feed-hr{
    margin-top: 10px;
    margin-bottom: 10px;
}

.block-news{
    max-height: 400px;
    overflow: auto;
}

.div-feed-data{
    color: #868686;
    font-size:12px;
}
.div-feed-data-completa{
    font-size: 13px;
}

.div-feed h4{
    margin: 5px 0px 5px 0px;
}

.modal-header-feed {
    padding: 12px 12px 0px;
    border-bottom: 1px solid #ffffff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #FFFFFF;
}

#modal_recados_titles {
    text-align: center;
    color: #00338D;
    margin: 0px 10px 10px 10px;
    font-weight: 600;
}

#ativ-arq{
    margin-bottom: 10px;
    padding: 0px;
}

#arquivos_div{
    padding: 0px;
}

.conteudo-post {
    color: #4b5661;
    font-family: Roboto, sans-serif!important;
    font-size: 20px;
    font-weight: 400;
    /*text-align: justify;*/
}

.conteudo-post p{
    /*color: #47525E!important;*/
    font-family: 'Roboto', sans-serif!important;
    font-size: 20px!important;
    font-weight: 400!important;
    line-height: 1.5!important;
    /*text-align: justify!important;*/
    margin-top: 0px!important;
    margin-bottom: 0px!important;
}
.paragrafo-seccao {
    color: #47525E;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    /*text-align: justify;*/
    margin-top: 0px;
    margin-bottom: 0px;
}
.paragrafo-seccao p{
    color: #47525E;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    /* text-align: justify;*/
    margin-top: 0px;
    margin-bottom: 0px;
}

.paragrafo-seccao img{
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}
.paragrafo-seccao p img{
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}
.modal-feed-curti{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #565656;

    cursor: pointer;
}

.modal-feed-botao-comentar{
    margin-top: 10px!important;
}

.nav.navbar-nav-custom > li > a {
    line-height: 45px;
}

.feed-curti{
    color: #009419;
}
.feed-nao-curti{
    color: #ff3c3c;
}

.feed-seja-primeiro{
    margin-bottom: 10px;
}
.busca_mentor_dado{
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
}

.busca_mentor_badge {
    margin-top: 3px;
    float: left;
    margin-right: 5px;
    margin-bottom: 3px;
}

.fc-row .fc-content-skeleton tbody td, .fc-row .fc-helper-skeleton tbody td {
    border-top: 0;
    cursor: pointer;
}

.table-responsive {

    border: 0px solid #ddd!important;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {

    background-color: #00338D;
}

.btn-sugerir{
    text-transform: uppercase;
    /* float: right; */
    position: absolute;
    right: 20px;
}

.introjs-helperLayer.introjs-fixedTooltip {
    background-color: rgb(255 255 255 / 63%);
}

.btn-intro-encontrar{
    position: absolute;right: 25px;top: 12px;
}



.div-feed img{
    max-height: 160px;
    max-width: 180px;
    width: 90%;
    margin-top: 5px;
    border-radius: 8px;
}

.div-feed-titulo{
    height: 66px;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    color: #4c4c4c;
    text-align: center;

}

.div-feed-img{
    text-align: center;
    height: 170px;
}

.div-feed-bagde{

    font-size: 14px;
    height: 26px;
}
.div-feed-info{

}
.div-feed-block{
    height: 300px;
    padding: 5px 10px 5px;
}

@media screen and (min-width: 600px) and (max-width: 990px) {
    .div-feed-img{
        float: left;
        width: 30%;
        margin-right: 15px;
    }

    .div-feed-bagde {
        font-size: 14px;
        height: 26px;
        float: left;
    }

    .div-feed img {
        height: 160px;
        width: 100%;
        max-width: 200px;

    }
    .div-feed-info{
        width: 70%;
        margin-top: 25px;
        margin-left: 30%;
    }

    .div-feed-block{
        height: 220px;
        padding: 5px 10px 5px;
    }

    .div-feed-titulo {
        height: 100px;
        overflow: hidden;
        font-weight: 600;
        font-size: 16px;
        color: #4c4c4c;
    }
}

.select2-container{
    border:0px;
}

a.select2-choice {
    margin-top: -6px;
    margin-left: -10px;
    border: 1px solid #98a9bd;
    height: 35px;
}


element.style {
}
.select2-container .select2-choice {

    border: 1px solid #98a9bd;
    padding: 0 0 0 12px;
}
.select2-drop-active {
    margin-left: -2px;
}

p, .table, .alert, .carousel {
    margin-bottom: 10px;
}


.avatar_imagem {
    height: 80px;
    width: 80px;
    border-radius: 6px;
    margin-right: 5px;
    float: left;
    margin-right: 15px;
}

.swal2-show {
    z-index: 100000000000000!important;
}

.swal2-container.swal2-center {
    align-items: center;
    z-index: 1000000000000000000!important;
}

.view-message{
    width: 32%;
}

.media-hover:hover{
    background: #ededed;
}

.media-atividades{
    padding: 15px 20px 10px 20px;
    margin-bottom: 5px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    MARGIN: 10px 15px;
    MARGIN-TOP: 10PX!important;
}



.paragrafo-seccao-atividade p {
    color: #47525E;
    font-family: 'Roboto', sans-serif;
    font-size: 16px!important;
    font-weight: 400;
    line-height: 1.5;
    /* text-align: justify; */
    margin-top: 0px;
    margin-bottom: 0px;
}

.conteudo-post-atividade p {
    /* color: #47525E!important; */
    font-family: 'Roboto', sans-serif!important;
    font-size: 16px!important;
    font-weight: 400!important;
    line-height: 1.5!important;
    /* text-align: justify!important; */
    margin-top: 0px!important;
    margin-bottom: 0px!important;
}

.note-editing-area{
    min-height: 150px;
}

.nav.navbar-nav-custom > li > a:hover > i, .nav.navbar-nav-custom > li > a:focus > i {
    color: white!important;
}

.nav.navbar-nav-custom > li.open > a, .nav.navbar-nav-custom > li > a:hover, .nav.navbar-nav-custom > li > a:focus {
    background-color: #1A2C47;
    color: #ffffff!important;
}

.modal-title .text-success{
    color: #27ae60!important;
    font-weight: 700!important;
}

.inbox-head {
    padding: 15px 10px 0px 10px!important;
}

.btn-compose{
    color: #fff;
    background-color: #00338D;
    border-color: #00338D;
}

.btn-compose:hover {
    background-color: #003faf;
    color: #FFFFFF;
}

.pagination>li>a, .pagination>li>span {
    padding: 0px 6px;
}

.botoes-mentorias {
    margin-top: 5px;
    min-height: 30px;
}


.sidebar-footer{
    list-style: none;
    padding-left: 0px;
    position: absolute;
    bottom: 0px;
    background: #FFFFFF;
    width: 100%;
    margin-bottom: 0px;
    border-radius: 0px;
}

.badge.badge-primary{
    color: #0091da;
    font-weight: 700;
    font-size: 12px;
}
.badge{
    max-width: 220px;
}
/*
*
* Mural
 */

.mural-recado-div{
    margin-top: 20px;
    padding: 0px 15px 10px 15px;
    border-bottom: 2px solid #e8e8e8;
}

.perfil-link-editar{
    text-decoration: underline;
}

div#page-content {
    padding-bottom: 20px;
}



.dashboarad-option {
    display: flex;
    border: 1px solid #0082c7;
    padding: 5px;
    text-align: center;
    color: #0082c7;
    cursor: pointer;
    font-size: 22px !important;
    max-width: 200px;
    margin: auto;
    padding-top: 10px;
    width: 160px;
    margin-top:5px;
    margin-bottom:5px;
    min-height: 43px!important;
}

.dashboarad-option:hover .fa {
    opacity: 0.7;
}

.dashboarad-option i {
    height: 20px;
    margin-right: 0px;
    font-size: 14px;
    margin-top: 3px;
}

.dashboarad-option h5{
    margin: 0px;
    margin-left: 5px;
    text-align: start;
    font-size:12px;
}























/*
*
* list-days
*
 */

.list-days-info {
    text-align: center;
    font-size: 18px;
}

.list-days {
    list-style: none;
    /* text-align: center; */
    padding-left: 0px;
}

.list-day-div {
    display: flex;
}

.list-day-div {
    display: flex;
    min-height: 40px;
}

.list-day-div .list-day {
    font-size: 20px;
    margin-right: 15px;
    width: 160px;
}

.list-day-div .list-btn-day {
    margin-top: 5px;
}

.div-list {
    margin-left: auto;
    margin-right: auto;
    display: table;
    width: 300px;
}

.list-link {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    /* margin-top: 7px; */
    /* height: 34px; */
}

.form-group textarea.form-control {
    max-width: 100%;
}

.block-user-profile {
    min-height: 160px;
    margin-bottom: 25px;
}

.text-description {
    text-align: justify;
}


/*
*
* Calendário
*
 */


/****
*
* CalendÃ¡rio
*
 */

.fc-widget-header {
    background-image: none;
    filter: none;
    background-color: #eee;
    text-transform: uppercase;
    font-weight: 300;
}

.fc button {
    color: #fff;
    background-color: #691e40;
    border-color: #691e40;
    font-size: 12px!important;
    border-radius: 2px;
    border-width: 0 !important;
    overflow: hidden;
    position: relative;
    user-select: none;
    padding: 6px 6px 6px 6px!important;
    outline: none !important;
    line-height: 1.44;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    height: 30px!important;
}

.fc .fc-toolbar>*> :first-child {
    font-size: 26px;
    font-weight: 600;
}

.fc-state-active,
.fc-state-down {
    background-color: #ccc !important;
    background-color: #efd3ac !important;
}

.fc-state-disabled,
.fc-state-down {
    color: #333 !important;
    background-color: #efd3ac !important;
}

.fc-state-hover {
    color: #FFFFFF !important;
    background-color: #efd3ac !important;
}

.fc-event .fc-time {
    /* float: left; */
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding-right: 5px;
}



.fc-event,
.fc-event-dot {
    /* background-color: #375a2f; */
    /* border-color: #FF5B00; */
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

button.fc-agendaWeek-button.fc-button.fc-state-default {
    font-size: 13px;
}




/*

Calendário
 */

.eventCalendar-wrap .arrow {
    text-decoration: none;
    color: #fff;
    padding: 0 5px;
    line-height: 28px;
    top: 9px;
    padding: 8px 10px;
}

.eventCalendar-wrap .arrow.prev {}

.eventCalendar-wrap .arrow:hover {
    opacity: 0.7;
}

.eventCalendar-wrap .arrow span {
    height: 0;
    width: 0;
    font-size: 0;
    line-height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    float: left;
    text-indent: -5000px;
}

.eventCalendar-wrap .arrow.prev span {
    border-left-width: 0;
    border-right: 6px solid #fff;
}

.eventsCalendar-slider {}

.eventsCalendar-monthWrap {
    border-radius: 5px;
    top: 10px;
    left: 0px;
}

.eventsCalendar-currentTitle .monthTitle {
    font-size: 110%;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    margin-right: 40px;
}

.eventsCalendar-daysList {
    zoom: 1;
    padding: 0;
    width: 100%;
}

.eventsCalendar-daysList.showAsWeek {
    margin: 10px 5px;
    width: auto;
    border: solid 1px #BCBCBC;
    border-bottom-width: 0;
    border-radius: 0;
    background-color: #CCCCCC;
    background-image: linear-gradient(top, #EEEEEE 42%, #CCCCCC 71%);
    background-image: -o-linear-gradient(top, #EEEEEE 42%, #CCCCCC 71%);
    background-image: -moz-linear-gradient(top, #EEEEEE 42%, #CCCCCC 71%);
    background-image: -webkit-linear-gradient(top, #EEEEEE 42%, #CCCCCC 71%);
    background-image: -ms-linear-gradient(top, #EEEEEE 42%, #CCCCCC 71%);
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0.42, #EEEEEE), color-stop(0.71, #CCCCCC));
}

.eventsCalendar-daysList:before,
.eventsCalendar-daysList:after {
    content: "";
    display: table;
}

.eventsCalendar-daysList:after {
    clear: both;
}

.eventsCalendar-day-header {
    text-transform: lowercase;
    text-align: center;
    font-size: 10px;
    border-bottom: solid 1px #BCBCBC;
}

.eventsCalendar-daysList.showAsWeek li.empty {}

.eventsCalendar-day a {
    text-decoration: none;
    font-size: 10px;
    color: #424242;
}

.eventsCalendar-day {
    border-left: solid 1px #BCBCBC;
}

.eventsCalendar-day a {
    border: solid 1px #BCBCBC;
    border-width: 0 1px 1px 0;
}

.showAsWeek .eventsCalendar-day {
    border-left-width: 0;
}

.eventsCalendar-day a:hover {
    background-color: #E4E4E4;
    /*	box-shadow:inset 5px 5px 10px #C1C1C1;
        text-shadow: 2px 2px 2px #C1C1C1;*/
}

.eventsCalendar-daysList li.today a {
    color: #fff;
    background: #aaa;
    /*	box-shadow:inset 5px 5px 10px #777;
        text-shadow: 2px 2px 2px #777;*/
}

li.eventsCalendar-day.today a:hover {
    background-color: #ccc;
    /*box-shadow:inset 5px 5px 10px #999;*/
}

.eventsCalendar-daysList li.dayWithEvents a {
    background: #0099DB;
    /*box-shadow:inset 5px 5px 10px #698B10;
    text-shadow: 2px 2px 2px #698B10;*/
    color: #fff;
}

li.eventsCalendar-day.dayWithEvents a:hover {
    background-color: #C2D374;
    /*box-shadow:inset 5px 5px 10px #89B814;
    text-shadow: 2px 2px 2px #89B814;*/
}

.eventsCalendar-daysList li.current a {
    color: #fff;
    background: #2081bb;
    box-shadow: inset 5px 5px 10px #21537a;
    text-shadow: 2px 2px 2px #216B7A;
}

li.eventsCalendar-day.current a:hover {
    background-color: #79BDCC;
    box-shadow: inset 5px 5px 10px #449FB2;
    text-shadow: 2px 2px 2px #449FB2;
}

.eventsCalendar-loading {
    border-radius: 4px;
    margin: 5px auto;
    padding: 0 10px;
    background-color: #ccc;
    color: #fff;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px #ccc;
    text-shadow: 0 0 3px #aaa;
    position: absolute;
    z-index: 4;
    top: 25px;
    left: 5px;
}

.eventsCalendar-loading.error {
    background-color: red;
}

.eventsCalendar-list-wrap {
    min-height: 100px;
    position: relative;
}

.eventsCalendar-list-content.scrollable {
    height: 100px;
    overflow-y: auto;
    margin: 0 5px 5px 0;
}

.eventsCalendar-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.eventsCalendar-list li {
    padding: 0 5px 10px;
    margin: 0;
    clear: both;
}

.eventsCalendar-list li .eventTitle {
    display: flex;
    clear: both;
    font-weight: bold;
    text-decoration: none;
}

.eventsCalendar-list li a.eventTitle {
    color: #0E8EAB;
}

.eventsCalendar-list li a.eventTitle:hover {
    text-decoration: underline;
}

.eventsCalendar-list li .eventDesc {
    clear: both;
    margin: 0 0 5px 0;
    font-size: 80%;
    line-height: 1.2em;
}

.eventsCalendar-list .eventsCalendar-noEvents {
    font-size: 120%;
    border-radius: 4px;
    margin: 5px;
    padding: 15px 5px 5px 5px;
    background-color: #ccc;
    color: #fff;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px #ccc;
    text-shadow: 0 0 3px #aaa;
}

.eventCalendar-wrap {
    margin-bottom: 20px;
    background-color: #fff;
    color: #807E7E;
    border-top: 2px solid #0099db;
    border-bottom: 2px solid #db0000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.eventsCalendar-list-wrap {
    padding: 0px 10px;
    width: 100% !important;
}

.eventsCalendar-list li time em {
    float: left;
    width: 85px;
    padding: 5px 5px;
    font-style: normal;
}

.eventsCalendar-subtitle {
    text-transform: uppercase;
    line-height: 1.2;
    padding-top: 15px;
}

.eventsCalendar-subtitle span {
    font-size: 16px;
    display: block;
    text-align: center;
}

.eventsCalendar-list {
    opacity: 1;
    left: 0px;
    height: auto;
    display: block;
}

.eventsCalendar-list li {
    display: inline-block;
}

.eventsCalendar-list li a {
    background: #fff;
    padding: 12px 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    width: 100px;
    margin-left: 5px;
    font-size: 12px;
    display: block;
    float: left;
}

.eventsCalendar-list li {
    padding: 0 5px 10px;
    margin: 0 0 0px;
    clear: both;
    font-size: 16px;
    display: table;
    width: 100%;
}

em {
    font-size: 13px;
    background: #fff;
    padding: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    width: 25%;
}

.eventsCalendar-list li time small {
    background: #fff;
    padding: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    width: 61px;
    font-size: 16px;
    color: #42b541;
    float: left;
    margin: 0 0 0 3px;
}

.eventsCalendar-list li time {
    font-size: 30px;
    line-height: 30px;
    width: 150px;
    float: left;
}

.pv-calendar .pv-title {
    font-size: 1.3rem;
    text-transform: uppercase;
}

.eventsCalendar-monthWrap {
    top: 0;
}

.eventsCalendar-currentTitle {
    outline: none;
    line-height: 25px;
}

.eventsCalendar-currentTitle .monthTitle {
    margin: 0;
    padding: 10px 0;
    color: #515b5d;
}

.eventCalendar-wrap .arrow {
    top: 13px;
}

.eventCalendar-wrap .arrow span {
    border-left: 6px solid #515b5d;
}

.eventCalendar-wrap .arrow.prev span {
    border-right: 6px solid #515b5d;
}

.eventCalendar-wrap .next {
    right: 0;
}

.eventsCalendar-daysList.showDayNames.showAsWeek {
    border-radius: 0;
    width: 100%;
    margin: 0;
    border: none;
    background: #f6f6f6;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.eventsCalendar-daysList.showAsWeek li {
    text-transform: uppercase;
    color: #515b5d;
    font-weight: bold;
    background: white;
    line-height: 26px;
    height: 39px;
    margin: 0;
}

.eventsCalendar-daysList.showAsWeek li.empty {
    background-color: transparent;
    border: 1px solid #ddd;
    min-height: 39px;
}

.eventsCalendar-day-header {
    padding: 5px 0;
}

.eventsCalendar-day {
    border-left: solid 1px #ddd;
}

.showAsWeek .eventsCalendar-day a {
    border: solid 1px #ddd;
    /* border-color: #ddd #ddd #ddd #ddd; */
    font-size: 12px;
    padding: 5px 0;
    cursor: default;
    line-height: 27px;
    background: #ebebeb;
}

.showAsWeek .eventsCalendar-day.today a {
    cursor: pointer;
    background: #0099DB;
}

li.eventsCalendar-day.today a:hover {
    background-color: #C2D374;
}

.header-boder{

    border-bottom: 1px solid #ffffff;
}


.block-sessao-status{
    font-size: 16px;
    display: block;
    width: 250px;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
    height: 20px;
}

.sidebar-lateral{
    position: fixed!important;
    top: 0px!important;
}

figure img{
    border-radius: 8px;
}

.modal-sm {
    width: 300px;
}

.mural-altura{
    max-height: 400px;
    display: block;
    overflow: auto;
}

.badge {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

#profileImage{
    border-radius: 8px;
    margin-top: 10px;
}

.btnmodify-6, .btnmodify-7, .btnmodify-8, .btnmodify-9, .btnmodify-10, .btnmodify-11, .btnmodify-12{
    width: 20px;
    overflow: clip;
    transition: width 1s;
}

.btnmodify-6:hover {
    width: 60px;
}

.btnmodify-7:hover {
    width: 70px;
}

.btnmodify-8:hover {
    width: 80px;
}

.btnmodify-9:hover {
    width: 90px;
}

.btnmodify-10:hover {
    width: 100px;
}

.btnmodify-11:hover {
    width: 110px;
}

.btnmodify-12:hover {
    width: 120px;
}

.switch_div {
    /*position: absolute;*/
    top: 0; right: 0; bottom: 0; left: 0;
    height: 40px;
    margin: auto;
    /*text-align: center;*/
}

/** Switch
 -------------------------------------*/

.switch input {
    position: absolute;
    opacity: 0;
}

/**
 * 1. Adjust this to size
 */

.switch {
    display: inline-block;
    font-size: 20px; /* 1 */
    height: 1em;
    width: 2em;
    background: #BDB9A6;
    border-radius: 1em;
}

.switch div {
    height: 1em;
    width: 1em;
    border-radius: 1em;
    background: #FFF;
    box-shadow: 0 0.1em 0.3em rgba(0,0,0,0.3);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
}

.switch input:checked + div {
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.switch + input:checked {
    background: #bada55;
}

.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
    border-top: 0;
    text-transform: uppercase;
}

.icon_login {
    margin-top: 10px;
    color: var(--primary);
    font-size: 20px;
    padding: 0 20px 0 0;
    transition: 0.3s;
    cursor: pointer;
}

.icon_login:hover {
    color: var(--primary-hover);
}

.bloco{
    position: relative;
    padding: 5px 10px;
    margin: 5px auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.bloco input[type=radio]{
    display: none;
}

.bloco label{
    float: left;
    font-family: "Source Sans Pro";
    font-size: 14px;
    width: calc(100% / 3);
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.lang_nav {
    font-size: 10px;
    color: #8a7575;
    transition: 0.3s;
}

.lang_nav:hover {
    color: var(--primary-hover);
}

.lang-icon {
    width: 20px;
}

.croppie-container {
    width: 100%;
    height: auto;
}


.mail-box{
    height: auto;
}
.mail-box .lg-side {
    height: auto;
}

.span-diarioBordo {
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    margin: 20px auto;
}

.label-custom-number {
    color: #9d9d9d;
}

.input-number {
    border: none;
    border-bottom: 2px solid #9d9d9d;
    text-align: center;
}

.password-container {
    position: relative;
}

#login-password {
    padding-right: 30px;
}

#mostrarSenha {
    transition: .3s;
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 15px;
    transform: translateY(-80%);
    cursor: pointer;
}

#mostrarSenha:hover {
    color: var(--primary-hover);
}

.table>thead {
    font-size: 13px;
}

.footer_client_logo {
    width: 200px;
    margin-top: 10px;
    margin-bottom: 6px;
}

.btn-group-xs>.btn, .btn-xs {
    margin-left: 2px!important;
}

footer {
    color: var(--rodape-text-color);!important;
}

footer a {
    color: var(--rodape-text-color);!important;
}
footer a:hover {
    color: var(--rodape-hover);!important;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps {
    margin: 0 auto;
}

.step {
    display: flex;
    position: relative;
}
.step:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    height: 0;
    background-color: #c5c3c3;
}

.step-line:after {
    width: 2px;
}

.step-primary:after {
    background-color: var(--primary);
}
.step-secondary:after {
    background-color: #372e2e;
}
.step-tertiary:after {
    background-color: #c5c3c3;
}
.step-quartiary:after {
    background-color: rgb(43, 161, 240);
}

.step-completed:after {
    background-color: #1b6b11 !important;
}
.step .info {
    margin: 4px 0 6px;
    text-wrap: nowrap;
}
.step .title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    color: black;
    cursor: pointer;
}
.step .text {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    padding-bottom: 0;
    margin: 0;
}
.step:not(:last-child):after {
    height: 100%;
}

.step .number {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #c5c3c3;
    flex-shrink: 0;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin-right: 25px;
    background-color: white;
}
.step .number.step-primary {
    border: 2px solid var(--primary);
}
.step .number.step-secondary {
    border: 2px solid #372e2e;
}
.step .number.step-tertiary {
    border: 2px solid #c5c3c3;
}
.step .number.step-quartiary {
    border: 2px solid rgb(43, 161, 240);
}
.step .number.step-completed {
    background-color: #34e51d !important;
    border: 2px solid #1b6b11 !important;
    color: #FFFFFF !important;
}
.step .number svg {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
}
.step .number svg path {
    fill: white;
}

.loading-wrapper {
    width: 100%;
    padding: 10px;
}

.loading-step,
.loading-substep,
.loading-subsubstep {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.loading-substep {
    margin-left: 50px;
}

.loading-subsubstep {
    margin-left: 100px;
}

.loading-number {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 16px;
    position: relative;
}

.loading-title {
    flex-grow: 1;
    height: 2.4rem;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.loading-textarea {
    flex-grow: 1;
    height: 35rem;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.loading-title::after, .loading-textarea::after {
    content: '';
    position: absolute;
    top: 0;
    right: -150px;
    bottom: 0;
    left: -150px;
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: loading 1.5s infinite linear;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.placeholder-line {
    height: 4px;
    background: #3498db;
    width: 100%;
    margin: 10px 0;
}

.sortable-ghost {
    height: 4px;
    background: #3498db;
    width: 100%;
    margin: 10px 0;
    border: none; /* Remover borda, se houver */
    box-shadow: none; /* Remover sombra, se houver */
    overflow: hidden; /* Garante que o conteúdo interno não ultrapasse a barra */
}

.sortable-ghost * {
    height: 0 !important;
    opacity: 0 !important;
}

.sortable-drag{
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 1;
}

.modulo-timeline {
    position: relative;
    max-width: 1200px;
    margin: 25px auto;
}

.modulo-container {
    padding: 10px 50px;
    position: relative;
    width: 50%;
}

.modulo-text-box {
    padding: 20px 30px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 10px 10px 50px 0px rgba(0,0,0,0.2);
}

.modulo-left-container {
    left: 0;
}

.modulo-right-container{
    left: 50%;
}

.modulo-container .modulo-number {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
    background: #fff;
    font-size: 15px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    box-shadow: 10px 10px 50px 0px rgba(0,0,0,0.2);
    border: 3px solid var(--primary);
}

.modulo-number-check {
    background: #72db72 !important;
    border: 3px solid #368714 !important;
    color: #fff !important;
}

.modulo-number-check {
    content: "✓";
}

.modulo-right-container .modulo-number{
    left: -20px;
}

.modulo-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    top: 0;
    left: 50%;
    border-radius: 6px;
    margin-left: -3px;
    z-index: 9;
}

.modulo-timeline-completed {
    position: absolute;
    width: 6px;
    background: rgba(0, 255, 0);
    top: 0;
    left: 50%;
    border-radius: 6px;
    margin-left: -3px;
    z-index: 9;
}



.modulo-text-box h2 {
    font-weight: 600;
    color: var(--primary);
}

.modulo-text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.modulo-left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -14px;
}

.modulo-right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}

@media screen and (max-width: 600px) {
    .modulo-timeline {
        margin:  50px auto;
    }

    .modulo-timeline-completed {
        top: 32px;
    }

    .modulo-timeline::after, .modulo-timeline-completed {
        left: 31px !important;
    }

    .modulo-container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .modulo-text-box {
        font-size: 13px;
    }

    .modulo-text-box small {
        margin-bottom: 10px;
    }

    .modulo-right-container {
        left: 0;
    }

    .modulo-left-container .modulo-number, .modulo-right-container .modulo-number {
        left: 10px
    }

    .modulo-left-container-arrow, .modulo-right-container-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}

.nav-modulo .active a {
    color: #fff !important;
    background-color: var(--primary) !important;
}

.nav-modulo a:hover {
    color: #fff !important;
    background-color: var(--primary-hover) !important;
}

.modulo-capitulo-card {
    width: 100% !important;
    height: 6rem !important;
    color: var(--primary) !important;
    border: 1px solid #777 !important;
    border-radius: 10px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 15px 0 !important;
    box-shadow: 4px 4px 4px rgba(0,0,0,.1) !important;
    background: #FFFFFF;
}

.modulo-capitulo-card p {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600;
    word-break: break-all !important;
}

.modulo-capitulo-card i {
    color: white;
    padding: 5px;
    margin-right: 10px;
}

.modulo-capitulo-card > .panel-collapse > .panel-body > * {
    width: 100% !important;
    word-break: break-word !important;
}

.modulo-capitulo-card .primary {
    background: var(--primary);
}

.modulo-capitulo-card .secondary {
    background: var(--segundary);
}

.modulo-capitulo-container {
    display: flex;
}

#modulo-capitulo-container-divisor {
    width: 5px;
    cursor: col-resize;
    background-color: #ccc;
    margin: 0 15px;
}

.modulo-capitulo-container-left {
    width: 22%;
    min-width: 15%;
    height:100%;
    overflow-y: auto
}

.modulo-capitulo-container-right {
    width: 78%;
    height:100%;
}

li[data-disabled="true"] a {
    pointer-events: none !important;
    cursor: default !important;
    color: #ccc !important;
}

.spinner-border {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.spinner-hidden {
    display: none;
}

.btn:hover .spinner-hidden {
    display: inline-block;
}


@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

.btn-spinner {
    transition: background-color 1s ease;
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.btn-spinner:hover {
    column-gap: 0.5rem;
}

.spinner-border {
    transition: opacity 1s ease;
}

.spinnner-check {
    display: none;
    transition: opacity 1s ease;
}

.spinnner-check {
    display: inline-block;
}

.panel-body-exercicio {
    min-height: auto !important;
}

.modal-footer {
    background-color: #FFFFFF;
}
.contact1.active {
    background-color: #e0f0ff !important;
    border-radius: 8px !important;
    padding: 5px !important;
}


/* coracões */

.heart {
    width: 12px; /* Largura do coração - ajuste conforme necessário */
    height: 12px; /* Altura do coração - ajuste conforme necessário */
    position: relative; /* Para o posicionamento */
}

/* Coração cheio */
.full-heart::before,
.full-heart::after {
    content: '';
    width: 8px; /* Largura da parte superior do coração */
    height: 12px; /* Altura da parte superior do coração */
    position: absolute;
    background-color: #ff6f61; /* Cor do coração cheio */
    border-radius: 10px 10px 0 0; /* Arredonda o topo */
    top: 0;
}

.full-heart::before {
    left: 8px; /* Posiciona à direita */
    transform: rotate(-45deg); /* Rotação para formar o coração */
    transform-origin: 0 100%; /* Origem da transformação */
}

.full-heart::after {
    left: 0; /* Posiciona à esquerda */
    transform: rotate(45deg); /* Rotação para formar o coração */
    transform-origin: 100% 100%; /* Origem da transformação */
}

/* Coração vazio */
.empty-heart::before,
.empty-heart::after {
    content: '';
    width: 8px; /* Largura da parte superior do coração */
    height: 12px; /* Altura da parte superior do coração */
    position: absolute;
    background-color: #ccc; /* Cor do coração vazio */
    border-radius: 10px 10px 0 0; /* Arredonda o topo */
    top: 0;
}

.empty-heart::before {
    left: 8px; /* Lado direito */
    transform: rotate(-45deg); /* Rotação para formar o coração */
    transform-origin: 0 100%; /* Origem da transformação */
}

.empty-heart::after {
    left: 0; /* Lado esquerdo */
    transform: rotate(45deg); /* Rotação para formar o coração */
    transform-origin: 100% 100%; /* Origem da transformação */
}

/* rating heart */

.rating {
    font-size: 30px;
    color: #ccc;
    display: flex;
    justify-content: center; /* Alinha os corações horizontalmente ao centro */
    align-items: center; /* Alinha verticalmente ao centro */
    gap: 10px; /* Espaçamento entre os corações */
}
.rating-profile {
    display: flex;
    align-items: center; /* Alinha verticalmente ao centro */
    gap: 4px; /* Espaçamento entre os corações */
    margin: 8px 0; /* Adiciona margens para afastar dos elementos adjacentes */
}


.rating i {
    cursor: pointer;
    position: relative;
}

.rating i.selected {
    color: #ff6f61;
}

.rating i:hover,
.rating i.selected {
    color: #ff6f61;
}

#arquivos_div2{
    padding-left: 0px;
}

#ativ-arq2{
    padding-left: 0px;
}

/* Modal anexos/recados */

.card-custom-margin {
    margin-top: 5px;
    margin-bottom: 5px;
    min-width: 300px;  /* Tamanho mínimo de 350px */
}

.card-body {
    min-height: 300px;
    max-height: 300px; /* Definimos uma altura máxima para o card */
    overflow-y: auto;  /* Adiciona a barra de rolagem vertical quando o conteúdo ultrapassar a altura */
}
.card-header {
    background-color: #f5f5f5; /* Cor de fundo para o cabeçalho */
    font-weight: bold;
    padding: 10px 15px;
}
.bloco-insercao {
    transition: all 0.3s ease;
}

.bloco-insercao.oculto {
    display: none !important;
    opacity: 0;
}

#toggleCamposMural i {
    transition: transform 0.3s ease;
}

#toggleCamposMural:hover {
    color: #337ab7; /* Azul padrão do Bootstrap 3 */
}

#divInserirDadosMural {
    background-color: #fafafa;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    display: block;
}

/* Range Button */
/* Estilo do range */
.custom-range {
    -webkit-appearance: none;
    background: linear-gradient(to right, #1976d2 0%, #1976d2 0%, #ddd 0%, #ddd 100%);
    outline: none;
    border-radius: 6px;
    transition: background 0.3s;
}

/* Thumb Chrome/Safari */
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1976d2;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    transition: background 0.3s, transform 0.2s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Firefox */
.custom-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1976d2;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    transition: background 0.3s, transform 0.2s;
}

.custom-range::-moz-range-track {
    height: 12px;
    border-radius: 6px;
    background: #ddd;
}



/* Menu 2 */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px;
    max-width: 1600px;
    margin: auto;
    gap: 10px; /* espaçamento mais consistente */
}

.menu-container-usuario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
    margin: auto;
    gap: 0px;
    max-width: 320px;
    margin-bottom: 5px;
}


.menu-item {
    flex: 1 1 10%;
    min-width: 120px;
    max-width: 120px;
    margin: 8px;
    padding: 5px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    border: 1px solid var(--primary);
    color: var(--primary);
    line-height: normal;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius:8px;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-item i {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}


.menu-item-usuario {
    flex: 1 1 10%;
    min-width: 90px;
    max-width: 110px;
    min-height: 55px;
    margin: 3px;
    padding: 3px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    border: 1px solid var(--primary);
    color: var(--primary);
    line-height: normal;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius:8px;
}

.menu-item-usuario:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--segundary-hover);
}

.menu-item-usuario i {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
    padding: 2px;
}

.menu-item-usuario h5 {
    font-size: 11px;
    text-transform: uppercase;
    margin: 0px;
}


/* 🧩 Responsividade */
@media (max-width: 1200px) {
    .menu-item-usuario {
        flex: 1 1 20%; /* 5 por linha */
    }
}

@media (max-width: 992px) {

    .menu-item-usuario h5 {
    }
}








.agenda-container {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
}

/* Título fixo */
.titulo-horarios {
    position: sticky;
    top: 0;
    background: #f9f9f9;
    z-index: 2;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
}

.titulo-horarios h5 {
    font-weight: bold;
    color: #333;
    margin: 0;
    font-size: 16px;
}

/* Área rolável (máximo 2 cards visíveis) */
.lista-horarios {
    max-height: 200px; /* Altura ajustável */
    overflow-y: auto;
    padding-right: 5px;
}

/* Card individual */
.card-agenda-mentor {
    display: flex;
    flex-direction: column;
    border-left: 5px solid;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 15px;
    margin-bottom: 5px;
}

/* Scrollbar customizada */
.lista-horarios::-webkit-scrollbar {
    width: 6px;
}
.lista-horarios::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.nav-tabs > li > a {
    text-transform: uppercase;
}

/* Mentoria coletiva custom css */

/* MODAL */
.mentoria-modal {
    border-radius: 8px;
    overflow: hidden;
}

.mentoria-close {
    color: #fff;
    opacity: 1;
}

/* BODY */
.mentoria-body {
    padding: 25px;
}

.mentoria-titulo {
    text-align: center;
    font-weight: 600;
    color: #3f51b5;
    margin-bottom: 20px;
}

/* BOX */
.mentoria-box {
    background: #f8f9fb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* INFO */
.mentoria-info div {
    margin-bottom: 10px;
    font-size: 14px;
}

.mentoria-label {
    font-weight: 600;
    color: #555;
}

/* DIVIDER */
.mentoria-divider {
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

/* MENTOR */
.mentor-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow .2s;
}

.mentor-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.mentor-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.mentor-nome {
    margin: 10px 0 5px;
    font-weight: 600;
}

.mentor-formacao {
    font-size: 13px;
    color: #666;
}

.mentor-badge {
    display: inline-block;
    background: #3f51b5;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 12px;
    margin-top: 5px;
}

.mentor-bio {
    margin-top: 15px;
    font-size: 13px;
    color: #444;
}

.mentor-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #3f51b5;
}

/* FORM */
.mentoria-textarea {
    resize: vertical;
}

/* FOOTER */
.mentoria-footer {
    background: #f5f5f5;
}

.mentoria-btn {
    padding: 8px 20px;
}



.modal-footer {
    background-color: #FFFFFF;
    text-align: right !important;
}

.btn-fechar {
    float: left;
    background-color: #ffffff;
    border-color: #c1c1c1;
    color: #292929;
}
/* Wrapper do controle (não interfere no layout) */
.carousel-control {
    background: none !important;
    width: auto;
    opacity: 1;
    text-shadow: none;
}

/* Alinha verticalmente com o conteúdo */
.carousel-control.left,
.carousel-control.right {
    top: 35%;
    transform: translateY(-50%);
}

/* Posiciona alinhado à div (ajuste se quiser mais fora) */
.carousel-control.left {
    left: -20px;
}

.carousel-control.right {
    right: 10px;
}

/* BOTÃO CIRCULAR */
.carousel-control .glyphicon {
    width: 40px;
    height: 40px;
    line-height: 40px;          /* centraliza verticalmente */
    border-radius: 80%;
    background: #00000008;
    border: 1px solid #ddd;
    color: #555;
    font-size: 14px;            /* ícone menor */
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

/* Hover do círculo */
.carousel-control:hover .glyphicon {
    background: #f2f2f2;
    color: #333;
}

/* Garante que nada fique sobre o conteúdo */
.carousel-inner {
    overflow: visible;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/* meu-perfil */
.perfil-completar-corpo { margin: 0 15px; }
.perfil-completar-titulo { font-size: 1.4em; }
.perfil-completar-lista { font-size: 1.3em; }
.perfil-section-titulo { margin-top: 10px; }
.perfil-badges-container { text-align: center; }
.perfil-badge { margin-right: 10px; font-size: 12px; margin-bottom: 5px; }
.perfil-modal-scroll { overflow: auto; }
.campo-obrigatorio-asterisco { color: red; }

/* include_perfil */
.perfil-header-acoes { text-align: right; margin-bottom: 5px; }
.perfil-row-info { margin-bottom: 50px; }
.perfil-avatar-container { width: 20%; float: left; text-align: center; padding-top: 20px; }
.perfil-avatar-img { max-width: 140px; max-height: 140px; width: 100%; border-radius: 8px; }
.perfil-info-table { width: 80%; }
.perfil-nome { margin-bottom: 0; }
.perfil-texto-bio { font-size: 14px; text-align: justify; }
.perfil-obs-bloco { margin-top: 15px; }
.perfil-calendario { width: 320px; }
.perfil-mentor-indisponivel { background-color: #c1c2c3; }
.perfil-prontuario-header { margin-bottom: 20px; }

/* metricas-dashboard */
.metricas-kpi-row { margin-bottom: 5px; }
.metricas-kpi-card { border-radius: 6px; padding: 18px 12px 14px; text-align: center; margin-bottom: 20px; color: #fff; position: relative; overflow: hidden; min-height: 130px; }
.metricas-kpi-card::before { content: ''; position: absolute; top: -18px; right: -18px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.metricas-kpi-primary { background: linear-gradient(135deg, #1976D2, #42A5F5); }
.metricas-kpi-success  { background: linear-gradient(135deg, #388E3C, #66BB6A); }
.metricas-kpi-info     { background: linear-gradient(135deg, #0097A7, #26C6DA); }
.metricas-kpi-warning  { background: linear-gradient(135deg, #F57C00, #FFA726); }
.metricas-kpi-star     { background: linear-gradient(135deg, #7B1FA2, #AB47BC); }
.metricas-kpi-trophy   { background: linear-gradient(135deg, #C62828, #EF5350); }
.metricas-kpi-icon { font-size: 26px; opacity: 0.85; margin-bottom: 6px; }
.metricas-kpi-valor { font-size: 32px; font-weight: 700; line-height: 1; }
.metricas-kpi-unidade { font-size: 16px; font-weight: 400; margin-left: 2px; }
.metricas-kpi-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.9; margin-top: 5px; }
.metricas-kpi-sub { font-size: 11px; opacity: 0.8; margin-top: 3px; }
.metricas-progress { background: rgba(255,255,255,0.3); margin: 6px 0 0; height: 5px; border-radius: 3px; box-shadow: none; }
.metricas-progress-bar { background: rgba(255,255,255,0.85); border-radius: 3px; }
.metricas-chart-container { width: 100%; height: 260px; }
.metricas-sem-dados { padding: 60px 0; font-size: 14px; }
.metricas-status-legenda { text-align: center; padding: 8px 0 4px; font-size: 12px; }
.metricas-legenda-item { display: inline-block; margin: 0 8px; }
.metricas-legenda-concluidas .fa { color: #4CAF50; }
.metricas-legenda-futuras .fa    { color: #2196F3; }
.metricas-legenda-canceladas .fa { color: #f44336; }
.metricas-tabela-sessoes thead th { background: var(--primary); color: #fff; white-space: nowrap; }
.metricas-stars-cell { white-space: nowrap; }
.metricas-star-filled { color: #FFC107; }
.metricas-star-empty  { color: #ccc; }
.metricas-nota-numero { font-size: 11px; color: #888; margin-left: 2px; }

/* ============================================================
   modal_atividade_sessao — faixa de contexto e layout
   ============================================================ */

.atv-modal-context {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f7fa;
    border-bottom: 1px solid #e8edf2;
    padding: 12px 20px;
    margin: 0 -15px 16px;
    min-height: 58px;
}

.atv-modal-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8edf2;
    background: #e8edf2;
}

.atv-modal-context-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.atv-modal-context-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2d3d;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.atv-modal-context-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.atv-modal-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: #eaf1fb;
    color: var(--primary);
    border: 1px solid #c8ddf6;
    white-space: nowrap;
}

.atv-modal-body-inner {
    padding: 4px 0 8px;
}

.atv-modal-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
    margin: 0 0 6px;
    line-height: 1.3;
}

.atv-modal-meta {
    margin-bottom: 12px;
}

.atv-modal-prazo {
    font-size: 12px;
    color: #6c757d;
}

.atv-modal-prazo--atrasada {
    color: #e63c3c;
    font-weight: 600;
}

.atv-modal-descricao {
    font-size: 13px;
    color: #3d4a5a;
    line-height: 1.7;
    text-align: justify;
}

.atv-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 14px 0 4px;
    border-top: 1px solid #f0f2f5;
    margin-top: 14px;
}

.atv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    border: 1.5px solid transparent;
}
.atv-action-btn:hover { text-decoration: none; }
.atv-action-btn--primary {
    background: transparent;
    color: var(--primary, #0077cc);
    border-color: var(--primary, #0077cc);
}
.atv-action-btn--primary:hover {
    background: rgba(var(--primary-rgb, 0,119,204), .08);
    border-color: var(--primary, #0077cc);
}
.atv-action-btn--secondary {
    background: transparent;
    color: #5a6473;
    border-color: #dde3ea;
}
.atv-action-btn--secondary:hover {
    background: rgba(0,0,0,.04);
    border-color: #9baab6;
    color: #2d3748;
}
.atv-action-btn--danger   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }
.atv-action-btn--warning  { background: #fff8e1; color: #e65100; border: 1px solid #ffcc80; }

.atv-modal-resposta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #f0f2f5;
}

.atv-modal-resposta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.atv-modal-resposta-header strong {
    font-size: 15px;
}

.atv-modal-file-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px !important;
    font-size: 13px;
}

.atv-modal-file-link {
    color: #3d4a5a;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.atv-modal-file-link:hover { color: var(--primary); }

.atv-modal-file-download {
    flex-shrink: 0;
    margin-left: 10px;
    color: var(--primary);
    font-size: 15px;
}


/* Dashboard activity pending badge */
.dash-atv-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

/* ── Modal Resposta Atividade ────────────────────────────── */
.atv-resp-dialog { margin: 40px auto; }

.atv-resp-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.atv-resp-header {
    background: #fff;
    padding: 14px 20px;
    border-bottom: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.atv-resp-header .modal-title { flex: 1; }
.atv-resp-header .close { order: 1; margin: 0; float: none; }

.atv-resp-title {
    color: #2d3748;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atv-resp-body {
    padding: 20px 24px;
    background: #fff;
}

.atv-resp-section {
    margin-bottom: 20px;
}

.atv-resp-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4c5968;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.atv-resp-label i { color: var(--primary, #0077cc); }

.atv-resp-textarea {
    width: 100%;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #2d3748;
    resize: vertical;
    min-height: 120px;
    transition: border-color .15s, box-shadow .15s;
    line-height: 1.6;
}
.atv-resp-textarea:focus {
    outline: none;
    border-color: var(--primary, #0077cc);
    box-shadow: 0 0 0 3px rgba(0,119,204,.12);
}

.atv-resp-hint {
    font-size: 12px;
    color: #9baab6;
    margin: 0 0 8px;
}

.atv-resp-file { margin-top: 4px; }

.atv-resp-file-table {
    margin-top: 8px;
    font-size: 13px;
    border-radius: 8px;
    overflow: hidden;
}

.atv-resp-footer {
    background: #f7f9fb;
    border-top: 1px solid #eef1f5;
    padding: 12px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.atv-resp-footer .btn-fechar {
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
}

/* ============================================================
   painel_mentoria_atividade — activity list panel
   ============================================================ */

.atv-panel-content {
    border-radius: 10px;
    overflow: hidden;
}

.atv-panel-body {
    padding: 16px 20px;
    background: #f7f9fb;
    min-height: 220px;
}

.atv-panel-footer {
    background: #fff;
    border-top: 1px solid #eef1f5;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.atv-panel-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

/* Activity list */
.atv-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.atv-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: box-shadow .15s, border-color .15s;
    gap: 12px;
}

.atv-list-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-color: #c8d4df;
}

.atv-list-item-main {
    flex: 1;
    min-width: 0;
}

.atv-list-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.atv-list-item-deadline {
    font-size: 12px;
    color: #7a8fa6;
}

.atv-list-item-deadline i {
    margin-right: 3px;
}

.atv-list-empty {
    text-align: center;
    color: #9baab6;
    font-size: 14px;
    padding: 32px 0;
}

/* Status badges */
.atv-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.atv-badge--pendente {
    background: #e8f0fb;
    color: #1a56a0;
}

.atv-badge--entregue {
    background: #e6f5ea;
    color: #256f35;
}

.atv-badge--atrasada {
    background: #fdecea;
    color: #c62828;
}

/* ============================================================
   encontrar-mentor — fm-* classes
   ============================================================ */

/* Program bar */
.fm-program-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 16px;
}

.fm-program-label {
    font-size: 13px;
    font-weight: 600;
    color: #4c5968;
    white-space: nowrap;
}

.fm-program-form { flex: 1; margin: 0; }

.fm-program-select { max-width: 320px; }

/* Filter card */
.fm-filter-card {
    background: #fff;
    border: 1px solid #e4eaf0;
    border-radius: 10px;
    padding: 18px 20px 14px;
    margin-bottom: 20px;
}

.fm-filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fm-filter-title {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.fm-filter-pilares {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.fm-filter-pilares-label {
    font-size: 12px;
    color: #7a8fa6;
    margin-right: 4px;
}

.fm-help-btn {
    color: #9baab6;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fm-help-btn:hover { color: var(--primary, #0077cc); }

.fm-filter-form { margin: 0; }

.fm-filter-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.fm-filter-field { flex: 1; min-width: 160px; }

.fm-filter-field--btn { flex: 0 0 auto; }

.fm-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4c5968;
    margin-bottom: 5px;
}

.fm-search-btn { margin-top: 0; }

/* Pilar tag (shared between filter header, cards and modal) */
.fm-pilar-tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* Mentor grid */
.fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

/* Mentor card */
.fm-card {
    background: #fff;
    border: 1px solid #e4eaf0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s, border-color .15s;
}

.fm-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,.09);
    border-color: #c8d4df;
}

.fm-card-header {
    padding: 20px 16px 12px;
    text-align: center;
    cursor: pointer;
    flex: 1;
}

.fm-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    object-fit: cover;
    border: 3px solid #e8ecf0;
    margin-bottom: 10px;
}

.fm-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
    line-height: 1.3;
}

.fm-card-badge-row {
    margin-bottom: 6px;
}

.fm-card-pilares {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
}

.fm-pilar-extra {
    font-size: 12px;
    color: #7a8fa6;
    align-self: center;
}

.fm-card-footer {
    padding: 10px 12px;
    border-top: 1px solid #f0f3f6;
    background: #f7f9fb;
}

/* Action buttons in card */
.fm-btn {
    display: block;
    width: 100%;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}

.fm-btn--solicitar {
    background: var(--primary, #0077cc);
    color: #fff;
}

.fm-btn--solicitar:hover { opacity: 0.88; }

.fm-btn--solicitado {
    background: #e6f5ea;
    color: #256f35;
    border: 1px solid #a5d6a7;
    cursor: default;
}

.fm-btn--indisponivel {
    background: #fff8e1;
    color: #b45309;
    border: 1px solid #fde68a;
    display: block;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* Badges */
.fm-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.fm-badge--completo {
    background: #e6f5ea;
    color: #256f35;
}

/* Pagination */
.fm-paginacao {
    text-align: center;
    margin: 12px 0 16px;
}

/* Empty state */
.fm-empty-state {
    text-align: center;
    padding: 48px 20px;
    color: #9baab6;
}

.fm-empty-state i { margin-bottom: 12px; display: block; }

.fm-empty-state p { font-size: 15px; margin: 0; }

/* Solicitation modal */
.fm-modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.fm-modal-body {
    padding: 20px 24px;
}

.fm-modal-mentor {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f9fb;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background .15s;
}

.fm-modal-mentor:hover { background: #eef2f7; }

.fm-modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dde3ea;
    flex-shrink: 0;
}

.fm-modal-mentor-info { flex: 1; }

.fm-modal-mentor-name {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2px;
}

.fm-modal-mentor-sub {
    font-size: 12px;
    color: #7a8fa6;
    margin-bottom: 4px;
}

.fm-modal-ver-perfil {
    font-size: 12px;
    color: var(--primary, #0077cc);
    font-weight: 600;
}

.fm-modal-form { margin: 0; }

.fm-form-section { margin-bottom: 16px; }

.fm-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4c5968;
    margin-bottom: 8px;
}

.fm-required { color: #e53e3e; margin-right: 3px; }

.fm-pilar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fm-pilar-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fm-pilar-option input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.fm-pilar-option label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

.fm-pilar-descricao {
    font-size: 13px;
    color: #5a6473;
}

.fm-pilar-none {
    color: #e53e3e;
    font-size: 13px;
}

.fm-textarea {
    border-radius: 6px;
    font-size: 13px;
    resize: vertical;
}

.fm-modal-footer {
    background: #f7f9fb;
    border-top: 1px solid #eef1f5;
    padding: 12px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 16px -24px -20px;
}

/* Chat styles: see chat.css */


/* ===============================
   BOTÃO
================================= */
#fm-btn {
    position: fixed;
    top: 18%;
    right: 20px;
    width: 50px;
    height: 50px;

    background: linear-gradient(135deg, #2f80ed, #1c60c7);
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;
    z-index: 9999;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: 0.3s;
}

#fm-btn:hover {
    transform: scale(1.1) rotate(8deg);
}

/* ===============================
   MENU
================================= */
#fm-menu {
    position: fixed;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);

    width: 260px;
    max-height: 75vh;

    background: #fff;
    border-radius: 16px;
    padding: 15px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid #eee;

    overflow-y: auto;
    z-index: 9998;

    transition: 0.35s;
}

#fm-menu.open {
    right: 80px;
}

/* ===============================
   ITEMS
================================= */
.fm-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;
    margin-bottom: 8px;

    border-radius: 10px;
    cursor: pointer;

    background: #f7f9fc;
    transition: 0.25s;
}

/* ICONES */
.fm-item i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    background: #e9f0ff;
    color: #2f80ed;

    font-size: 14px;
}

/* TEXTO */
.fm-item span {
    font-size: 14px;
    font-weight: 500;
}

/* HOVER */
.fm-item:hover {
    background: #eef4ff;
    transform: translateX(6px);
}

.fm-item:hover i {
    background: #2f80ed;
    color: #fff;
}

/* WHATSAPP */
.fm-whatsapp i {
    background: #e9fff3;
    color: #25d366;
}

.fm-whatsapp:hover i {
    background: #25d366;
    color: #fff;
}

/* SCROLL */
#fm-menu::-webkit-scrollbar {
    width: 6px;
}
#fm-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* MOBILE */
@media(max-width:768px){
    #fm-menu { width: 220px; }
    #fm-menu.open { right: 70px; }
}

/* ============================================================
   MODAL CADASTRAR ATIVIDADE SESSÃO  (.cas-*)
   Integrado com atv-resp-* e var(--primary)
   ============================================================ */
.cas-modal-body {
    padding: 22px 24px 8px;
    background: #fff;
}

.cas-field-group {
    margin-bottom: 18px;
}

.cas-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

.cas-required {
    color: var(--primary);
    margin-right: 2px;
    font-size: 13px;
    line-height: 1;
}

.cas-input,
#modal_cadastrar_atividade_sessao .form-control {
    border-radius: 7px !important;
    border: 1px solid #dde3ea !important;
    font-size: 13.5px !important;
    padding: 9px 13px !important;
    color: #2d3748 !important;
    background: #f9fafb !important;
    transition: border-color .15s, box-shadow .15s, background .15s !important;
    font-family: 'Open Sans', sans-serif !important;
    box-shadow: none !important;
}
#modal_cadastrar_atividade_sessao .form-control:focus,
.cas-input:focus {
    border-color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,.06) !important;
    outline: none !important;
}

.cas-textarea {
    min-height: 110px;
    resize: vertical;
}

.cas-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cas-grid-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: #f7f9fb;
    border-radius: 8px;
    border: 1px solid #eef1f5;
    margin-bottom: 20px;
}

.cas-input-icon {
    position: relative;
}
.cas-input-icon > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9baab6;
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
}
.cas-input-icon .form-control,
.cas-input-icon .cas-input {
    padding-left: 34px !important;
}

.cas-section-divider {
    border: none;
    border-top: 1px solid #eef1f5;
    margin: 4px 0 20px;
}

.cas-file-hint {
    font-size: 11px;
    color: #9baab6;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

#modal_cadastrar_atividade_sessao .modal-footer {
    background: #fff;
    border-top: 1px solid #eef1f5;
    padding: 12px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 600px) {
    .cas-grid-2,
    .cas-grid-select { grid-template-columns: 1fr; }
    .cas-modal-body { padding: 16px 14px 6px; }
}

/* ============================================================
   MENTORIAS EM GRUPO  (.mg-*)
   ============================================================ */
.mg-page { padding: 0 !important; overflow: hidden; }

/* Header da página */
.mg-page-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px 10px;
    border-bottom: 1px solid #eef1f5;
}
.mg-page-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
}
.mg-page-title i { color: var(--primary); margin-right: 6px; opacity: .8; }
.mg-help-btn { color: #9baab6; font-size: 18px; transition: color .15s; }
.mg-help-btn:hover { color: var(--primary); }

/* Seletor de programa */
.mg-program-bar { padding: 10px 20px; border-bottom: 1px solid #eef1f5; background: #f7f9fc; }
.mg-program-select { max-width: 320px; font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 600; }

/* Filtro */
.mg-filter { padding: 12px 20px 14px; border-bottom: 2px solid #eef1f5; }
.mg-filter-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mg-filter-field {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.mg-filter-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #9baab6;
    font-size: 13px;
    pointer-events: none;
}
.mg-filter-input {
    padding-left: 32px !important;
    border-radius: 20px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 13px !important;
    border-color: #dde3ea !important;
}
.mg-filter-input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(0,0,0,.05) !important; }
.mg-filter-btn { border-radius: 20px !important; font-size: 12px !important; white-space: nowrap; }

/* Paginação */
.mg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 20px;
}
.mg-pagination--bottom { border-top: 1px solid #eef1f5; }
.mg-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #5a6473;
    background: #f7f9fc;
    border: 1px solid #eef1f5;
    text-decoration: none;
    transition: background .12s, color .12s, border-color .12s;
}
.mg-page-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.mg-page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Grid de cards */
.mg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px 20px;
}

/* Card */
.mg-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .15s, transform .15s;
}
.mg-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.mg-card--inscrito { border-color: var(--primary); border-width: 2px; }

.mg-card-header {
    padding: 14px 14px 10px;
    border-bottom: 1px solid #f0f3f6;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.mg-card-title {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #1a2637;
    line-height: 1.4;
}

/* Badges */
.mg-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}
.mg-badge--inscrito { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.mg-badge--spec     { background: #eff6ff; color: var(--primary); }

/* Mentor no card */
.mg-card-mentor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background .12s;
}
.mg-card-mentor:hover { background: #f7f9fc; }
.mg-mentor-avatar {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eef1f5;
}
.mg-mentor-info { flex: 1; min-width: 0; }
.mg-mentor-name {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mg-mentor-role {
    font-size: 11px;
    font-weight: 600;
    color: #7a8fa6;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Infos do card */
.mg-card-infos { padding: 8px 14px; flex: 1; }
.mg-info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #5a6473;
    padding: 4px 0;
}
.mg-info-icon { color: var(--primary); opacity: .7; width: 14px; text-align: center; flex-shrink: 0; }

/* Barra de vagas */
.mg-vagas-bar {
    height: 4px;
    background: #eef1f5;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}
.mg-vagas-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width .4s ease;
}

/* Ações do card */
.mg-card-actions {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f0f3f6;
}

/* Empty state */
.mg-empty {
    padding: 48px 20px;
    text-align: center;
    color: #9baab6;
}
.mg-empty-icon { font-size: 36px; margin-bottom: 12px; display: block; opacity: .5; }
.mg-empty p { font-size: 14px; font-weight: 600; font-family: 'Open Sans', sans-serif; margin: 0; }

/* ---- Modal de inscrição ---- */
.mg-modal-title {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #1a2637;
    margin: 0 0 10px;
}
.mg-modal-desc {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #5a6473;
    line-height: 1.6;
    margin-bottom: 14px;
}
.mg-modal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.mg-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #f0f5ff;
    border: 1px solid #dde3ea;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
}
.mg-chip i { color: var(--primary); }

.mg-section-label {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 16px 0 10px;
}
.mg-section-label i { color: var(--primary); margin-right: 4px; }

/* Encontros no modal */
.mg-encontros { display: flex; flex-direction: column; gap: 8px; }
.mg-encontro-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f7f9fc;
    border: 1px solid #eef1f5;
    border-radius: 8px;
}
.mg-encontro-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mg-encontro-info { flex: 1; min-width: 0; }
.mg-encontro-titulo {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mg-encontro-data {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #7a8fa6;
    margin-top: 2px;
}
.mg-encontro-link { flex-shrink: 0; }
.mg-encontro-presencial { color: #9baab6; font-size: 14px; }

/* Mentor no modal */
.mg-modal-mentor {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f7f9fc;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    cursor: pointer;
    transition: background .12s;
}
.mg-modal-mentor:hover { background: #eff6ff; }
.mg-modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eef1f5;
}
.mg-modal-mentor-info { flex: 1; }
.mg-modal-mentor-name { font-size: 14px; font-weight: 700; font-family: 'Open Sans', sans-serif; color: #1a2637; }
.mg-modal-mentor-role { font-size: 12px; font-weight: 600; color: #7a8fa6; font-family: 'Open Sans', sans-serif; margin-top: 2px; }
.mg-modal-mentor-bio { font-size: 12px; font-weight: 600; color: #5a6473; font-family: 'Open Sans', sans-serif; margin-top: 6px; line-height: 1.5; }
.mg-modal-mentor-link { font-size: 12px; font-weight: 700; color: var(--primary); font-family: 'Open Sans', sans-serif; margin-top: 6px; display: inline-block; }

/* Responsive */
@media (max-width: 900px) { .mg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .mg-grid { grid-template-columns: 1fr; padding: 12px; } }

/* ============================================================
   PAINEL ATIVIDADE — modal sessão/atividade  (.pa-*)
   ============================================================ */
#painel_atividade .modal-dialog { max-width: 560px; }
#painel_atividade .modal-content { border-radius: 10px; border: none; box-shadow: 0 8px 40px rgba(0,0,0,.14); }
#painel_atividade .modal-header {
    background: #f7f9fc;
    border-bottom: 1px solid #eef1f5;
    border-radius: 10px 10px 0 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#painel_atividade .modal-title {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #1a2637;
    text-align: left;
    margin: 0;
    flex: 1;
}
#painel_atividade .modal-footer {
    border-top: 1px solid #eef1f5;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
#painel_atividade .modal-footer > * { margin: 0; }

/* Nav tabs do painel */
.pa-tabs {
    display: flex;
    border-bottom: 2px solid #eef1f5;
    padding: 0 18px;
    background: #fff;
    gap: 0;
}
.pa-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #7a8fa6;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color .15s, border-color .15s;
}
.pa-tab:hover { color: var(--primary); text-decoration: none; }
.pa-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Corpo das informações */
.pa-body { padding: 18px; }

.pa-section-title {
    font-size: 10px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 0 0 12px;
}

.pa-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f5f7fa;
}
.pa-row:last-child { border-bottom: none; }

.pa-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary);
    flex-shrink: 0;
}
.pa-row-content { flex: 1; min-width: 0; }
.pa-row-label {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}
.pa-row-value {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #2d3748;
    word-break: break-word;
}
.pa-row-value a { color: var(--primary); word-break: break-all; }

/* Badge de status */
.pa-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}
.pa-status--confirmed { background: #f0fdf4; color: #16a34a; }
.pa-status--pending   { background: #fffbeb; color: #d97706; }
.pa-status--cancelled { background: #fef2f2; color: #dc2626; }
.pa-status--default   { background: #f0f4f8; color: #5a6473; }

/* Contato/usuário linha */
.pa-user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 8px;
    border-bottom: 1px solid #f5f7fa;
    margin-bottom: 4px;
}
.pa-user-name {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #1a2637;
    flex: 1;
}
.pa-user-role {
    font-size: 11px;
    font-weight: 600;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-top: 1px;
}

/* ============================================================
   PERFIL — meu-perfil.php & include_perfil.php  (.prf-*)
   ============================================================ */

/* --- Card wrapper --- */
.prf-outer { padding: 0 !important; overflow: hidden; }

/* --- Cover gradient bar --- */
.prf-cover-bar { display: none; }

/* --- Top row: avatar + action button --- */
.prf-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 4px;
}

.prf-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 3px solid #eef1f5;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    display: block;
}

.prf-edit-btn-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border: 1.5px solid #dde3ea;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #5a6473;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .15s, color .15s;
    margin-bottom: 8px;
    white-space: nowrap;
}
.prf-edit-btn-top:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

/* --- Identity block --- */
.prf-identity { padding: 10px 24px 0; }
.prf-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2637;
    margin: 0 0 2px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
}

/* --- Info grid (email, phone, formação, aniversário) --- */
.prf-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
    padding: 12px 24px 18px;
}
.prf-info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #5a6473;
    font-family: 'Open Sans', sans-serif;
}
.prf-info-icon {
    color: var(--primary);
    font-size: 13px;
    width: 14px;
    text-align: center;
    opacity: .75;
    flex-shrink: 0;
}

/* --- Sections (programas, pilares, minibio) --- */
.prf-section {
    padding: 14px 24px 16px;
    border-top: 1px solid #f0f3f6;
}
.prf-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}
.prf-section-title {
    font-size: 10px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 0;
}
.prf-section-edit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: var(--primary);
    text-decoration: none;
    transition: opacity .15s;
}
.prf-section-edit:hover { opacity: .75; text-decoration: none; color: var(--primary); }

/* --- Chips for badges --- */
.prf-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    margin: 3px 5px 3px 0;
    line-height: 1.4;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* --- Bio text --- */
.prf-bio-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: #4c5968;
    font-family: 'Open Sans', sans-serif;
}


.modal-footer .btn-fechar,
.modal-footer [data-dismiss="modal"].btn,
.modal .btn-fechar {
    background: transparent;
    border: 1.5px solid #dde3ea;
    color: #5a6473;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 12px;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.modal-footer .btn-fechar:hover,
.modal-footer [data-dismiss="modal"].btn:hover,
.modal .btn-fechar:hover {
    border-color: #9baab6;
    color: #2d3748;
    text-decoration: none;
}

/* --- Completion alert --- */
.prf-alert-completar {
    margin: 0;
    padding: 14px 24px;
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.prf-alert-icon { color: #d97706; font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.prf-alert-title {
    font-weight: 700;
    font-size: 13px;
    color: #92400e;
    margin: 0 0 5px;
    font-family: 'Open Sans', sans-serif;
}
.prf-alert-list {
    margin: 0;
    padding-left: 16px;
    font-size: 12.5px;
    color: #b45309;
    font-family: 'Open Sans', sans-serif;
}

/* --- include_perfil (view de outros) --- */
.prf-view-hero {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 20px 20px 0;
}
.prf-view-avatar {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8ecf0;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.prf-view-meta { flex: 1; min-width: 0; }
.prf-view-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2637;
    margin: 0 0 8px;
    font-family: 'Open Sans', sans-serif;
}
.prf-view-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.prf-view-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5a6473;
    font-family: 'Open Sans', sans-serif;
}
.prf-view-info-list li i {
    color: var(--primary);
    width: 14px;
    text-align: center;
    opacity: .7;
    flex-shrink: 0;
}
.prf-view-section { padding: 14px 20px; border-top: 1px solid #f0f3f6; }
.prf-view-section-title {
    font-size: 10px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #9baab6;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 0 0 10px;
}
.prf-view-bio {
    font-size: 13.5px;
    line-height: 1.75;
    color: #4c5968;
    font-family: 'Open Sans', sans-serif;
}
.prf-view-obs {
    background: #f7f9fb;
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #4c5968;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}
.prf-mentor-indisponivel {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .prf-view-hero { flex-direction: column; }
    .prf-view-avatar { width: 80px; height: 80px; }
    .prf-info-grid { gap: 5px 16px; }
    .prf-top-row { flex-wrap: wrap; gap: 8px; }
}

/* ============================================================

.mural-messages-area {
    min-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 350px;
    padding: 0;
    background: #fafbfc;
}
.mural-messages-area::-webkit-scrollbar { width: 4px; }
.mural-messages-area::-webkit-scrollbar-track { background: transparent; }
.mural-messages-area::-webkit-scrollbar-thumb { background: #dde3ea; border-radius: 2px; }

.mural-message-item {
    padding: 14px 16px;
    margin: 0;
    border-bottom: 1px solid #eef1f5;
    display: flex;
    gap: 12px;
    transition: background .12s;
}
.mural-message-item:hover { background: #f4f7fb; }
.mural-message-item:last-child { border-bottom: none; }

.mural-message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eef1f5;
}

.mural-message-body { flex: 1; min-width: 0; }

.mural-message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.mural-message-name {
    font-size: 13px;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Open Sans', sans-serif;
}

.mural-message-date {
    font-size: 11px;
    color: #9baab6;
    font-family: 'Open Sans', sans-serif;
}

.mural-message-text {
    font-size: 13px;
    color: #4c5968;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.mural-message-files {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.mural-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f0f5ff;
    border: 1px solid var(--primary, #4a5f7f);
    border-radius: 12px;
    font-size: 11px;
    color: var(--primary, #4a5f7f);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: background .12s, border-color .12s;
}
.mural-file-chip:hover {
    background: var(--primary, #4a5f7f);
    color: #fff;
}
.mural-file-chip i { font-size: 10px; }


.cas-help-text {
    font-size: 11px;
    color: #9baab6;
    font-family: 'Open Sans', sans-serif;
    margin-top: -10px;
    margin-bottom: 12px;
}

/* File upload */
.mural-file-upload {
    position: relative;
    margin-bottom: 12px;
}

.mural-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.mural-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1.5px solid #dde3ea;
    border-radius: 6px;
    background: #f9f9f9;
    color: #5a6473;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all .15s;
}
.mural-file-label:hover {
    border-color: var(--primary, #4a5f7f);
    background: rgba(var(--primary-rgb, 74,95,127), .04);
    color: var(--primary, #4a5f7f);
}
.mural-file-label i { font-size: 14px; }

/* Files list */
.mural-files-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.mural-file-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0f5ff;
    border: 1px solid var(--primary, #4a5f7f);
    border-radius: 14px;
    font-size: 12px;
    color: var(--primary, #4a5f7f);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.mural-file-item button {
    background: transparent;
    border: none;
    color: var(--primary, #4a5f7f);
    cursor: pointer;
    padding: 0 4px;
    font-size: 14px;
    transition: transform .1s;
    display: flex;
    align-items: center;
}
.mural-file-item button:hover { transform: scale(1.15); }

/* Paginação */
.mural-pagination {
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mural-pagination button,
.mural-pagination a {
    padding: 6px 10px;
    border: 1px solid #dde3ea;
    border-radius: 4px;
    background: #fff;
    color: #5a6473;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all .12s;
    text-decoration: none;
    min-width: 32px;
    text-align: center;
}

.mural-pagination button:hover,
.mural-pagination a:hover {
    border-color: var(--primary, #4a5f7f);
    color: var(--primary, #4a5f7f);
    background: rgba(var(--primary-rgb, 74,95,127), .04);
}

.mural-pagination .active {
    background: var(--primary, #4a5f7f);
    color: #fff;
    border-color: var(--primary, #4a5f7f);
}

.mural-pagination .disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.mural-page-btn {
    width: 32px;
    padding: 6px 0;
}

.mural-page-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mural-messages-area { max-height: 300px; }
    .mural-message-item { padding: 10px 12px; gap: 8px; }
    .mural-file-label { font-size: 12px; padding: 10px 12px; }
}

/* ============================================================
   GLOBAL — modal footer: fechar à esquerda, ações à direita
   ============================================================ */
.modal-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: wrap;
}
.modal-footer > * { float: none !important; margin: 0 !important; }

/* Botão fechar sempre à esquerda — os outros botões vão para a direita */
.modal-footer .btn-fechar,
.modal-footer [data-dismiss="modal"]:not(.close) {
    order: -1;
}

/* ============================================================
   GLOBAL — botão close sempre à direita em todos os modais
   ============================================================ */
.modal-header {
    align-items: center !important;
    gap: 10px !important;
}
.modal-header .modal-title,
.modal-header h3,
.modal-header h4 {
    flex: 1 !important;
    float: none !important;
    margin: 0 !important;
}
.modal-header .close {
    order: 1 !important;
    float: right !important;
    margin: 0 !important;
    flex-shrink: 0;
}

