/* ------------------------ */
/*   Author: Diego Reis     */
/*   Date:   08-jul-2024    */
/* ------------------------ */                         

/* Geral */

/* * {
    padding: 0;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
} */

/* Logo */

#logo-gov-pe {
    width: 80px;
    position: relative;
}

#logo-acesso {
    width: 15px;
    margin-right: 5px;
}

#logo-pe {
    width: 20px;
    height: 15px;    
}

/* Nav Bar */

.nav-father-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-top: 3px solid #21215A;
}

.nav-father-container ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-father-container ul li, .nav-father-container ul a {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    transition: all .3s ease-in-out;
}

.nav-father-container ul a img {
    max-height: 40px;
    margin-right: 10px;
}

.nav-father-container li {
    border-left: 1px solid #e2e2e2;
}

.nav-father-container li:hover {
    background-color: #21215A;
    cursor: pointer;
    color: white;
}

.nav-father-container a {
    padding: auto;
    text-decoration: none;
    transition: all .2s ease-in-out;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
}

.nav-father-container a:hover {
    color: white;
}

/* Dropdown */

.gov-link-container {
    display: none;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100vw;
}

.dropdown-menu {
    display: none;
    position: relative;
    margin: 2px;
    padding: 0;
    border: none;
    min-width: 43vw;
    background-color: #f1f1f1;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    right: 3px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #2168B6;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    border-bottom: 1px solid #e9e9e9;
}

.dropdown-content a:hover {
    background-color: #2168B6;
}

.dropbtn {
    background-color: #2168B6;
    color: white;
    padding: 8px 22px;
    font-size: 8px;
    border: none;
    cursor: pointer;
    float: right;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2577ce;
    border: none;
}

.show {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-father-container ul {
        display: none;
    }

    .dropdown-menu {
        display: block;
    }

    .gov-link-container {
        display: block;
    }

    #logo-gov-pe {
        width: 50px;
        margin-left: 10px;
        position: relative;
    }   
    
}