body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.btn-outline-success {
    color: white !important;
    border-color: white !important;
}

.btn-outline-success:hover {
    background-color: white;
    color: #198754; /* Cor verde do Bootstrap */
}


nav {
    padding: 10px;
    color: black;
}
nav .nav-bar {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
nav .nav-bar .logo {
    font-size: 1.4em;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
}
nav .nav-bar .logo img {
    width: 250px;
    margin-top: -5px;
}

nav .nav-bar .logo span {
    margin-left: 10px;
    position: relative;
    /*top: 5px;*/
}
nav .sub-menu {
    margin-top: 25px;
}
nav .sub-menu .item {
    color: black;
    background-color: white;
    font-size: 22px;
    font-weight:500;
    padding-right: 35px;
    cursor:pointer;
    display: inline-block;
}
nav .sub-menu .item:hover {
    color: #FFC100;
    
}

/*Estilo p/ exibir detalhe do submenu*/
nav .sub-menu .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 5px;
    width: 250px;
    top: 20px;
    left: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav .sub-menu .dropdown:hover .dropdown-content {
    display: block;
}

nav .sub-menu .dropdown .dropdown-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

nav a {
    text-decoration: none !important;
    color: inherit !important;
}

nav a:hover {
    text-decoration: none !important;
    color: inherit !important;
}

body .form-control:focus,
body .form-select:focus {
    border-color: #FFC100;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 0, 0.5);    
    outline: none;
}

a {
    text-decoration: none !important;
}

nav a:hover {
    text-decoration: none !important;
}

/* ------------------------------------------------------------ */
/* ------ Auto complete ----- */
/* ------------------------------------------------------------ */
.autocomplete {
    position: relative;
    width: 300px; /* Ajuste conforme necessário */
}

.suggestions {
    position: absolute; /* Certifique-se de que a posição é absoluta */
    z-index: 9999; /* Um valor alto para que fique na frente de outros elementos */
    background-color: white; /* Para melhor visibilidade */
    border: 1px solid #ccc; /* Borda opcional */
    border-radius: 5px; /* Borda arredondada opcional */
    max-height: 300px; /* Altura máxima, se necessário */
    overflow-y: auto; /* Rolagem vertical se necessário */
}

.suggestions ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #f0f0f0;
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */

h1 {
    font-size: 2.3rem !important;
}

.form-register-container {
    background-color: #FFC100;
    border-radius: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.form-register-title {
    text-align: center;
    font-weight: 500;
    font-size: 32px;
}

.form-register-container label {
    font-weight: bold;
}

.card-link {
    background-color: #FFC100;
    border: 2px solid black;
    color: black;
    font-size: 1.2rem;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 10px;
}

.card-link:hover {
    background-color: #FFC100 ;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ------------------------------------------------------------ */
/* ----- Carousel ----- */
/* ------------------------------------------------------------ */
.carousel {
    width: 100% !important;
}

.carousel-item{
    width: 100% !important;
}

.carousel-item img {
    width: 100vw !important;
    width: 100% !important;
    height: auto;
    object-fit: cover;
}

.carrossel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carrossel {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
    width: calc(100% - 80px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carrossel .item {
    background-color: white;
    border: 1.3px solid #FFC100;
    color: black;
    width: 210px;
    min-width: 210px;
    max-width: 210px;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    display: block;
    border-radius: 10px;
    cursor: pointer;
    padding: 15px;
    margin-bottom: 10px;
}

.carrossel .item h5 {
    height: 2.3em;
    overflow: hidden;
}

.carrossel .item .text {
    color: #adb5bd;
    font-size: 0.9em;
    font-weight: 500;
    height: 2.8em;
    overflow: hidden;
}

.carrossel .item .address {
    max-height: 2.8em;
    overflow: hidden;
}

.carrossel::-webkit-scrollbar {
    display: none;
}

.carrossel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFC100;
    color: black;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carrossel-button:hover {
    background-color: #FFC100;
}

.carrossel-button.prev {
    left: 10px;
}

.carrossel-button.next {
    right: 10px;
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
.card-1 {
    background-color: white;
    border: 1.3px solid #FFC100;
    display: block;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.depoimento-desc {
    height:115px;
    max-height:115px;
    overflow:hidden;
}

.yellow{
    color: #ffc107 !important;
}

.tanks {
    background-color:black;
    color:white;
}
.tanks p {
    font-size:1.6em;
}

/*.como-funciona .icon-container {
    display: inline-block;
    width: 65px;
    text-align: center;
    vertical-align: middle;
}

.como-funciona .icon-container i {
    font-size: 1.7em;
    line-height: 1;
    font-weight:100;
}

.como-funciona p {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #495057;
}*/


.footer {
    /*background-color: #f1f1f1;*/
    background-color: black;
    /*color: #6c757d;*/
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
}

.footer img {
    width: 140px;
    margin: 25px;
}

.footer p {
    margin: 0;
    font-size: 16px;
    text-align: center;
    padding-top:30px;
    padding-bottom:30px;
}

.mt-5 {
    margin-top: 3rem !important;
}
.pl-2 {
    padding-left: 10px;
}

.custom-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white; /* Fundo branco */
    z-index: 1100;
    display: none;
    justify-content: center;
    pointer-events: auto;
}
/*
.modal-content {
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}*/

.buttons {
    margin-top: 10px;
    border-top: 1px #D8D8D8 solid;
    text-align: right;
}

.menu-cabecalho {
    padding-top: 1em;
    float: right;
    margin-right: 1em;
}

.badge-block {
    display: block !important;
    padding: 8px !important;
}
.badge-primary {        
    color: white !important;
    background-color: #0d6efd !important;
}
.badge-success {
    color: white;
    background-color: #198754;
}
.badge-warning {
    color: #212529 !important;
    background-color: #ffc107;
}
.badge-danger {
    color:white;
    background-color: #dc3545;
}

/*.carousel-inner img,
.carousel-inner video {
    width: 100%;
    height: 300px;*/ /* Altura fixa para o carousel */
    /*object-fit: contain;*/ /* Ajuste para cobrir o espaço */
    /*background-color: #e0e0e0; /* Cor de fundo para quando a imagem não ocupar todo o espaço */
/*}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5) !important;
}*/

.h5{
    font-size:1.2em !important;
    font-weight:bold !important;
}

.menu-usr-logado {
    float: right;
    margin-right: 10px;
    padding-top: 1.4em;
    font-weight: normal;
    font-size: 0.8em;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Imagem centralizada */
.image-viewer {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.viewer-frame {
    width: 90%;
    height: 90%;
}

/* Botão de fechar */
.close-viewer {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Quando o overlay é exibido */
.overlay.active {
    display: flex;
}

.popup-cabecalho {
    background: none;
    margin-top: -5px;    
}

.popup-cabecalho button{
    background: none;
    border: none;
    color: white;
    font-weight: bold;    
}

.popup-cabecalho button:hover,
.popup-cabecalho button:active,
.popup-cabecalho button:visited,
.popup-cabecalho .btn:hover,
.popup-cabecalho .btn:focus {
    background: none;
    border: none;    
    color: white !important;
    font-weight: bold;
}
/*p { color: red !important; }*/

.popup-cabecalho ul, .popup-cabecalho li, .popup-cabecalho li a {
    background: #092f6e;
    color: white;
    font-weight: bold;
}

.popup-cabecalho li a:hover {
    background: #2354a6;
    color: white;
    font-weight: bold;
}

.titulo-cabecalho 
{
    padding-top: 1em;
    float: left;
    margin-left: 1em;    
}
.dropdown-toggle

.container {
    min-width: 90%;
}

footer {    
    border-top: 1px solid #b4b4b4;    
    background-color: #f0f0f0;
    padding: 5px;
    text-align: right;
}

.container-form {
    padding: 20px;
}

.container-form-login {
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    max-width: 500px;
    padding: 10px;
    text-align:left;
}

.titulo {
    font-size: 19px;
    /*font-weight: bold;*/
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px #D8D8D8 solid;
}

.sub-titulo {
    font-size: 17px;
    margin-bottom: 8px;
    border-bottom: 1px #D8D8D8 solid;
}

.rodape {    
    margin-top: 8px;
    border-top: 1px #D8D8D8 solid;
}

.float-left {
    float: left;
}

.input-tamanho {
    max-width: 400px;
}

.img-aguarde {
    max-width: 40px;
}

.ciclo-externo {
    margin-bottom: 3px;
}

.ciclo-item {
    border: 1px solid gray;
    text-align: center;
    vert-align: middle;
    vertical-align: middle;
    min-height: 5em;
    cursor: pointer;
}
.ciclo-item>div {
    font-weight: bold;
}
.ciclo-item>span {
    font-weight: normal;
    font-size: 0.9em;
}

.ciclo-destacar {
    
}

.ciclo-destacar-borda {
    -webkit-box-shadow: 3px 3px 5px 6px red;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    3px 3px 5px 6px red;  /* Firefox 3.5 - 3.6 */
    box-shadow:         3px 3px 5px 6px red;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

label>span {
    font-weight: normal;
}

.borda {
    border: 1px solid #C0C0C0; 
    border-radius: 3px; 
    padding: 10px;
    background-color: white;
}

.caixa-rolatem {
    height: 10em;
    overflow: scroll;
    overflow-x: hidden;
}

.panel-form {
    margin-top: 15px;
}
.panel-form>.panel-heading {
    font-size: 1.3em;    
    font-weight: bold;
}
.panel-form .panel-footer {
    text-align: right;
}

.label-val {
    color: red;
    font-size: small;   
}

.v-middle { vertical-align: middle !important; }

.table-middle td, 
.table-middle th {vertical-align: middle !important; }

.text-center { text-align: center; }
.text-right {
    text-align: right;
}

.pointer { cursor: pointer; }
.icon 
{ 
    cursor: pointer; 
    font-size: 1.3em;
    margin-right: 3px;
    margin-left:3px;
    padding:10px;
}

.link {
    color: #007bff;
    cursor: pointer;
}
.link:hover { color: #0066ff; }

.chips-container {
    display: inline;
    margin: 10px;
    background-color: gray;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding: 8px;
    border-radius: 20px;    
}

.chips-container label {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
}

.chips-container .fa {
    cursor:pointer;
}

.table td, .table th{
    vertical-align:middle!important
}

.lista-estudantes {
    font-size: 0.9em;
}

.lista-estudantes .acessos {
    font-weight: bold;
    color: #16A085;
}

.lista-estudantes .datas {
    font-style: italic;
}

.lista-estudantes .bloqueio {
    font-weight: bold;
    color: #C0392B;
}

.autocomplete-result {
    position: absolute;
    background-color: white;
    border: 1px solid #999;
    z-index: 999;
    padding: 2px 5px;
}

.autocomplete-suggestions { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #999; background: #FFF; cursor: default; overflow: auto; -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-no-suggestion { padding: 2px 5px;}
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: bold; color: #000; }
.autocomplete-group { padding: 2px 5px; font-weight: bold; font-size: 16px; color: #000; display: block; border-bottom: 1px solid #000; }
.autocomplete-suggestion { cursor: pointer; }
.autocomplete-clik { cursor: pointer; }

.prioridade_0 { 
    font-weight:bold;
    background-color: red; 

}
.prioridade_1 {
    font-weight: bold;
    background-color: mediumpurple;
}
.prioridade_2 {
    font-weight: bold;
    background-color: orange;
}

.prioridade_3 {
    font-weight: bold;
    background-color: darkseagreen;
}

.font-bold { 
    font-weight: bold;
}

.bg-blue {
    background-color: #007bff !important;
    color: white !important;
}

.icon-big {
    font-size:1.3em;
}

.mr-1 { 
    margin-right: 1em;
}