/* UTILIDADES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: cursive; */
    /* font-size: 15px; */
    font-family: 'Segoe UI',SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: black!important;
}

.bg-overlay-visio {
    position: absolute;
    /* background-color: rgba(48,58,69,0.7); */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.content {
    background: aqua;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 1%;
    margin-right: 1%;
}

.content h1{
    font-family: 'Segoe UI',SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: red;
}

a {
    text-decoration: none;
    color: white;
}

li {
    list-style: none;
}

/* NAVBAR ESTILO */
.navbar-visio {
    display: flex;
    justify-content: space-between;
    margin-left: 0%;
    margin-right: 0%;
    background-color:#014BF4;
    /* background-color: red; */
    color: white;
}

.row-visio {
    align-items: center!important;
    display: flex;
    flex-wrap: wrap;
}

.row-visio-justificada {
    justify-content: center!important;
    display: flex;
    flex-wrap: wrap;
}

.nav-links-visio a {
    color: white;
}

dl,ol,ul {
   
    margin-top: 0;
    
    margin-bottom: 0rem

}

.section-visio {
    /* background-color: black; */
    position: relative;
    padding: 40px 0 10px 0px;

    /* background-color: black;position: relative;padding: 80px 0 150px 0px; */
}

/* LOGO */
.logo {
    font-size: 21px;
    visibility: visible;
    
   /*  margin-right: 2%; */
}

.logo_custom {
    font-size: 21px;
    margin-right: 2%;
    visibility: hidden;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    /* gap: 1em; */
    font-size: 15px;
}

.menu a:hover {
    color: black;
}

.menu li:hover {
    /* background-color: #4c9e9e; */
    color: blue;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
    /* font-family: 'Segoe UI',SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif; */
}

/* MENU SUSPENSO */
.services {
    position: relative;
}

.painel-central {
    /* display: none; */
    margin-left: 1%;
    margin-right: 1%;
    /* margin-bottom: 6%; */
    margin-bottom: calc(350px + 63vw - 1024px)!important;
}

.dropdown {
    background-color: rgb(1, 139, 139);
    padding: 1em 0;
    position: absolute;
    /*COM RELAÇÃO AOS PAIS*/
    display: none;
    border-radius: 8px;
    top: 35px;
    z-index:-100
}

.dropdown li+li {
    margin-top: 10px;
}

.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}

.dropdown li:hover {
    background-color: #4c9e9e;
}

.services:hover .dropdown {
    display: block;
}

/* NAVBAR MENU RESPONSIVA*/
/* CHECKBOX HACK */
input[type=checkbox] {
    display: none;
}

/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

.rodape {
   /*  background-color: red; */
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 30%;
    position: fixed;
    /* left: 0; */
    bottom: 0;
    width: 100%;
    /* background-color: red; */
    background-color:#014BF4;
    color: white;
    text-align: center;
}

.rodape-direitos {
    display: flex;
    justify-content: end;
    margin-right: 1%!important;
    padding-right: 21px;
    color: white;
}

.navbar-rodape-visio {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-rodape-visio li {
    display: flex;
    padding: 9px;
    color: white;
}

.navbar-rodape-visio ul {
    display: contents;
}

/* APLICAÇÃO MEDIA QUERIES */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        /* background-color: red; */
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
        z-index:100;
    }

    .menu a:hover {
        color: blue;
    }

    .menu li:hover {
        display: inline-block;
        background-color: white;
        transition: 0.3s ease;
    }

    .menu li+li {
        margin-top: 12px;
    }

    input[type=checkbox]:checked~.menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }

    .dropdown li:hover {
        background-color: gray;
    }

    .logo{
        visibility: hidden;
        height: 0px;
    }

    .logo_custom {
        visibility: visible;
    }

}

@media (max-height: 768px) {
    .painel-central {
        margin-bottom: 20%;
    }
    .logo_custom {
        margin-left: 30px!important;
    }
}