:root {
    --azul: #1351b4;
    --verde: #5cb85c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

body {
    background-color: #ffffff;
}

.oculto {
    display: none !important;
}

.ctn_max {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

.ctn_max>.ctn_center {
    width: 100%;
    max-width: 1200px;
}

.ctn_main {
    width: 100vw;
    min-height: calc(100vh - 150px);
    padding-bottom: 30px;
}

header .ctn_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img.logo {
    width: 100px;
}

header ul {
    display: flex;
}

header ul li {
    margin-left: 15px;
    color: var(--azul);
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
    background-color: #ecf0f7;
    padding: 5px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.2s;
}

header ul li:hover {
    background-color: #c1d3f3;
}

header .btn_login {
    background-color: var(--azul);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.2s;
}

header .btn_login:hover {
    scale: 1.05;
}

header .btn_login svg {
    fill: #ffffff;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

header .btn_login h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.header_pgmei {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 5px solid #62cb31;
    padding: 20px 15px 15px 15px;
}

.header_pgmei .box_logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header_pgmei .logo {
    background-color: var(--verde);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 15px;
    border-radius: 5px;
}

.header_pgmei .logo img {
    width: 35px;
    margin-right: 10px;
}

.header_pgmei .logo h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
}

.header_pgmei h3 {
    margin-top: 10px;
    color: #3c765b;
    font-size: 20px;
    font-weight: 600;
}

footer {
    background-color: #071d41;
    padding-top: 25px;
}

footer img.logo {
    margin: 0 auto;
    width: 100px;
}

footer .top {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .top .col {
    width: 30%;
}

footer .top .col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

footer .top .col p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    cursor: pointer;
}

footer .bottom {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #cccccc;
}

footer .bottom p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer_pgmei {
    background-color: #e1dddd;
}

.footer_pgmei .ctn_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer_pgmei img {
    width: 150px;
}

.footer_pgmei p {
    margin-top: 15px;
    color: #3c763d;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width:1000px) {
    header img.logo {
        width: 80px;
    }

    header ul {
        display: none;
    }

    header .btn_login {
        padding: 5px 10px;
    }

    .header_categoria .top.ctn_center svg {
        width: 25px;
        height: 25px;
    }

    .header_categoria .top.ctn_center h4 {
        font-size: 18px;
    }

    .header_categoria .bottom.ctn_center {
        margin-top: 5px;
    }

    .header_categoria .bottom.ctn_center h3 {
        font-size: 20px;
    }

    footer .top {
        flex-direction: column;
    }

    footer .top .col {
        width: 100%;
        margin-top: 30px;
    }

    footer .bottom p {
        font-size: 14px;
    }

    .header_pgmei .logo img {
        width: 30px;
    }

    .header_pgmei .logo h2 {
        font-size: 20px;
    }

    .header_pgmei h3 {
        font-size: 18px;
    }
}