﻿body,
.menu,
.sub-menu {
    margin: 0;
    padding: 0;
}

.clearfix:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
    visibility: hidden;
    overflow: hidden;
}

.menu,
.sub-menu {
    list-style: none;
    background: #808080;
}

.sub-menu {
    background-color: #808080;
    color: white;
}

.menu a {
    text-decoration: none;
    display: block;
    padding: 10px;
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    font-weight: 700;
}
    .menu a:hover {
        color: #fff; /* Altere para a cor desejada ao passar o mouse sobre o link */
    }

.menu li {
    position: relative;
}

.menu > li {
    float: left;
}

    .menu > li:hover {
        background: #444;
        color: #FFF;
    }

.menu li:hover > .sub-menu {
    display: block;
}


.sub-menu {
    display: none;
    position: absolute;
    color: #ffffff;
    min-width: 250px;
}

    .sub-menu li:hover {
        background: #555;
        color: #FFF;
    }

    .sub-menu .sub-menu {
        top: 0;
        left: 100%;
    }


#legenda {
    position: absolute;
    bottom: 0;
}

.chart-title {
    text-align: center;
    font-size: 12px;
    font-weight: bolder;
    margin-top: 10px;
}
    
    /*




@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn2 {
    position: absolute;
    top: 30px;
    left: 20px;
    height: 30px;
    width: 30px;
    text-align: center;
    background: #1b1b1b;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.2s ease;
}

    .btn2.click {
        top: 30px;
        left: 20px;
    }

    .btn2 span {
        color: white;
        font-size: 16px;
        line-height: 45px;
    }

    .btn2.click span:before {
        content: '\f00d';
    }

.sidebar {
    position: fixed;
    width: 150px;
    height: 100%;
    left: -130px;
    background: #1b1b1b;
    transition: left 0.4s ease;
}

    .sidebar.show {
        left: 0px;
    }

    .sidebar .text {
        color: white;
        font-size: 18px;
        font-weight: bolder;
        line-height: 45px;
        text-align: center;
        background: #1e1e1e;
        letter-spacing: 1px;
    }

nav ul {
    background: #1b1b1b;
    height: 100%;
    width: 100%;
    list-style: none;
}

    nav ul li {
        line-height: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

        nav ul li:last-child {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        nav ul li a {
            position: relative;
            color: white;
            text-decoration: none;
            font-size: 12px;
            padding-left: 20px;
            font-weight: 500;
            display: block;
            width: 100%;
            border-left: 3px solid transparent;
        }

        nav ul li.active a {
            color: cyan;
            background: #1e1e1e;
            border-left-color: cyan;
        }

        nav ul li a:hover {
            background: #1e1e1e;
        }

    nav ul ul {
        position: static;
        display: none;
    }

    nav ul .feat-show.show {
        display: block;
    }

    nav ul .serv-show.show1 {
        display: block;
    }

    nav ul .Atendimento-show.show1 {
        display: block;
    }
    nav ul ul li {
        line-height: 42px;
        border-top: none;
    }

        nav ul ul li a {
            font-size: 12px;
            color: #e6e6e6;
            padding-left: 30px;
        }

    nav ul li.active ul li a {
        color: #e6e6e6;
        background: #1b1b1b;
        border-left-color: transparent;
    }

    nav ul ul li a:hover {
        color: cyan !important;
        background: #1e1e1e !important;
    }

    nav ul li a span {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 22px;
        transition: transform 0.4s;
    }

        nav ul li a span.rotate {
            transform: translateY(-50%) rotate(-180deg);
        }

.content {
    width: calc(100% - 150px);
    position: relative;
    margin-left: 5px;
    padding-bottom: 15px;
}

    .content .header {
        font-size: 45px;
        font-weight: 600;
    }

    .content p {
        font-size: 30px;
        font-weight: 500;
    }*/