html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Roboto', sans-serif;*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #FFF;
    color: #333;
    min-height: 100vh;
    background: linear-gradient(150deg, rgb(58, 138, 243) 0%, rgb(19, 71, 139) 47%, rgba(4, 28, 60, 1) 100%);
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    box-sizing: border-box;
    min-height: 100vh;
    gap: 50px;
}

.home .col{
    max-width: 450px;
    width: 100%;
    box-shadow: 5px 8px 10px rgba(0,0,0,0.3);
    background-repeat: no-repeat; /* Evita repetir a imagem */
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    border-radius: 5px;
}

.home .col:hover .acessar{
    background-color: #e3fca9;
}

.home .col h2{
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.home .col .acessar{
    display: inline-block;
    background-color: #FFF;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: bolder;
}

.home .logo img {
    height: 70px;
}

.home .unicbe {
    background-image:linear-gradient(180deg, rgb(255, 212, 191) 0, rgba(243, 106, 36,1) 100%);
}

.home .cbm {
    background-image:linear-gradient(180deg, rgba(255,255,255,1) 0, rgba(255,255,255,0.5) 100%);
}

.mt_main_base {
    position:fixed;
    bottom: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 990;
    color: #FFF;
}

.mt_main_base .nav{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mt_main_base .nav a{
    color: #FFF;
}

.mt_main_base .nav a:hover{
    color: rgb(159, 207, 83);
}

.mt_main_base .infor{
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

@media screen and (max-width: 800px) {    

    .home {
        flex-direction: column;
    }
}