.ps-6 {
    padding-left: 3.6rem !important;
}

.ps-7 {
    padding-left: 4rem !important;
}

.ps-8 {
    padding-left: 5rem !important;
}

/* Estilos para a sidebar */
.sidebar {
    width: 60px;
    height: 100vh;
    position: fixed;
    background-color: #343a40;
    transition: width 0.3s;
    padding-top: 100px !important;
    z-index: 2;
}

.sidebar:hover {
    width: 200px;
}

.sidebar .nav-link {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

.sidebar .nav-link i {
    font-size: 30px;
    margin-right: 10px;
}

.sidebar .nav-link span {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.sidebar:hover .nav-link span {
    opacity: 1;
    visibility: visible;
}

.jumbotron {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px 15px;
}

.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* efeito escurecido */
    z-index: 0;
}

.jumbotron .container {
    position: relative;
    z-index: 1;
}

.hover-card{
    transition: all ease .1s;
}
.hover-card:hover {
    cursor: pointer !important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important;
    transform: scale(1.05);
    border-width: 2.5px;
}

.form-control:focus, input:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
}