/* CSS Document */
/*menu*/
.menu-top {
    display: block;
    height: auto;
    float: right;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

.menu-top .menu-top-alinha {
    margin: 0px;
}

.menu-mini, .menu-mobile {
    display: none;
}

.nav {
    padding: 0px;
    list-style-type: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.nav li {
    float: left;
    position: relative;
}

.nav li a {
    font-family: 'SAIRA', sans-serif;
    font-size: 18px;
    color: #0c6bab;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: all 0.3s ease-out;
    margin: 0px 0px 1px 12px;
    height: auto;
    padding: 13px 0px;
    /* border-bottom: solid 3px #fff; */
    font-weight: 400;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    border-bottom: solid 2px transparent; 
    position: relative;
}

.nav li a:hover {
    text-decoration: none;
    color: #62b8f1;
    border-bottom: solid 2px #62b8f1;
}

/* sub menu */
.nav ul {
    display: none;
    position: absolute;
    list-style-type: none;
    z-index: 11;
    background-color: var(--main-color);
    width: 170px;
    margin-left: 0px;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    border-radius: 0px 0px 4px 4px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
}

.nav ul li {
    float: left;

}

.nav ul a {
    font-family: "SAIRA", sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 10px;
    transition: all 0.3s ease-out;
    font-weight: normal;
    margin: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    line-height: 20px;
}

.nav ul a:hover {
    color: #fff;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;

}

@media screen and (max-width: 992px) {

    .menu-top {
        display: block;
        width: 100%;
        margin: 50px 0;
        position: absolute;
        float: right;
        z-index: 1000;
        
    }

    .container-top .castroLogo{
        display: none;
    }

    .container-top  .logo {
        display: none;
    }

    .menu-mini {
        width: 60px;
        height: 50px;
        float: right;
        background-position: center center;
        margin-top: 0px;
        margin-right: 0px;
        background-image: url(../images/icon-menu.png);
        background-repeat: no-repeat;
        display: block;
        cursor: pointer;
    }

    .nav {
        padding: 0px;
        list-style-type: none;
        width: 100%;
        background-color: #fff;
        overflow: auto;
        height: auto;
        position: absolute;
        z-index: 100;
        box-shadow: 1px 1px 4px #CCC;
        top: 0px;
        display: none;
    }

    .nav ul {
        display:none;
        list-style-type: none;
        padding: 0px;
        margin: 5px 0px 0px 0px;
        width: 100%;
    }

    .nav li {
        float: none !important;
        list-style-type: none !important;
    }

    .nav li a {
        font-size: 15px;
        color: #09446c;
        text-decoration: none;
        display: block;
        float: right;
        padding: 4% !important;
        width: 100% !important;
        transition: all 0.3s ease-out;
        border-bottom: 1px solid #c4c4c4;
        text-align: right;
        background-color: #FFF;
        margin: 0px !important;
        box-sizing: border-box;
    }

    .nav li a:hover {
        color: #09446c;
    }

    .nav ul li a:hover {
        background-color: #ffffff;
        color: #09446c;
    }

    /* menu */

}

@media screen and (min-width: 993px) {
    .nav {
        display: block !important; /* Garante que o menu seja reexibido */
    }
}

.ancora {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9;
    float: right;
    margin-right: 0px;
    vertical-align: bottom;
    bottom: 10px;
    text-align: center;
    background-image: url(../images/ancora.png);
    background-position: center center;
    background-repeat: no-repeat;
    display: scroll;
    right: 10%;
    background-color: #4BAE9A;
    cursor: pointer;
    transition: all 0.3s ease-in;
    border-radius: 25px;
    box-shadow: 0 0 20px #ccc;
}