body {
    background-color: #F6F6F6 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*+--------------------+*/
/*   |############|     */
/*      |HEADER|        */
/*   |############|     */
/*+--------------------+*/

header .cabecalho-itens {
    justify-content: space-around;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: row;
    font-family: 'Poppins', sans-serif;
    width: 450px;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: rgba(18, 38, 59, 0.87);
}

header nav {
    height: 52px;
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90.46deg, rgba(0, 0, 0, 0.2) 45.92%, rgba(0, 0, 0, 0) 96.41%), rgba(18, 38, 59, 0.87);
    padding-right: 10%;
    padding-left: 10%;
}

.border-container {
    width: 100%;
    height: 7px;
    position: fixed;
    margin-top: 52px;
    display: block;
    z-index: 1;
    background: rgba(243, 243, 243, 0.87);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
}

header nav .logo {
    max-width: 110px;
    display: flex;
    align-items: center;
}

img {
    vertical-align: middle;
}

#logo-dashboard {
    display: flex;
    width: 200px !important;
    height: 66px;
    flex-direction: column;
    justify-content: flex-end;
}

.social-icon-header {
    margin-left: 10px !important;
    font-size: 19px !important;
}

header a {
    background-image: linear-gradient(
            to right,
            #c0260d,
            #c0260d 50%,
            rgba(243, 243, 243, 0.87) 50%
    );
    background-size: 200%;
    background-position: -100%;
    display: inline-block;
    position: relative;
    -webkit-background-clip: text;
    transition: all 0.3s ease-in-out;
}

header a:hover {
    background-position: 0;
}

header a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #f3f3f3;
    bottom: 0;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

header a:hover::before {
    transform-origin: center;
    transform: scaleX(1);
}

/*+--------------------+*/
/*   |############|     */
/*      |NAV BAR|       */
/*   |############|     */
/*+--------------------+*/

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #23232e;
    height: 5vh;
}

.nav-list {
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-out;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 30px;
    height: 3px;
    background: #f3f3f3;
    margin: 8px;
    transition: 0.3s;
}

@media (max-width: 870px) {
    body {
        overflow-x: hidden;
    }

    .nav-list {
        position: absolute;
        top: 53px;
        right: 0;
        margin-right: -1px !important;
        width: 210px !important;
        height: 80vh;
        display: flex;
        background: #23232e;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-around !important;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }

    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }

    .nav-list a {
        background-image: linear-gradient(
                to right,
                #c0260d,
                #c0260d 50%,
                #F6F6F6 50%
        );
    }

    .mobile-menu {
        display: block;
    }
}

.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-10px, 10px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
/*+--------------------+*/
/*   |############|     */
/*   |DIV  CENTRAL|     */
/*   |############|     */
/*+--------------------+*/

.bg {
    background-position: 70%;
    background-size: cover;
    width: 1440px;
    height: 995px;
    width: 100%;
    top: -10px;
}

@media (max-width: 870px) {
    #img-bg {
        width: 0%;
        height: 1010px;
    }
}
#img-bg {
    width: 1440px;
    height: 995px;
    width: 100%;
    top: -10px;
    object-fit: cover;
    object-position: 70%;
}

.container-bg {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    max-height: 650px;
    flex-wrap: wrap;
    align-content: center;
}

.container-bg p {
    font-size: 1.8rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
}

.container-bg div.title {
    border-radius: 0px 15px 15px 0px;
    max-width: 620px;
    height: 316px;
    width: 100%;
    margin-top: -740px;
    filter: drop-shadow(-6px 6px 18px rgba(0, 0, 0, 0.1));
    background: linear-gradient(90.46deg, rgba(0, 0, 0, 0.2) 45.92%, rgba(0, 0, 0, 0) 96.41%), rgba(18, 38, 59, 0.87);
}

@media (max-width: 1024px) {
    .bg .container-bg {
        padding-right: 0px;
    }
}

@media (max-width: 870px) {
    .container-bg div.title {
        border-radius: 0;
        max-width: 874px !important;
        width: 100%;
        margin-top: -630px;
        padding-left: 0%;
    }

    .title .info-acesso-sistema {
        align-items: center;
        width: 100%;
        margin-right: 0 !important;
    }

    .title {
        align-items: center;
    }

    .container-bg p {
        font-family: 'Poppins', sans-serif;
        font-style: inherit;
        max-width: 570px;
        font-weight: lighter;
        font-size: 1.5em;
        line-height: 21px;
        display: flex;
        text-align: center;
    }

    .title {
        align-items: center !important;
    }
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    margin-top: 10px;
}

.title .info-acesso-sistema {
    max-width: 430px;
    height: 237px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 40px;
}

@media (max-width: 999px) {
    div#logo-sistema {
        padding: 44px;
        margin-bottom: -30px;
    }
}

.text-sistema {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    width: 367px;
    font-size: 32px;
    line-height: 48px;
    margin-top: 15px;
    text-align: center;
    color: rgba(18, 38, 59, 0.87);
}

.botao-acesso {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.87);
    width: 170px;
    border: 1px;
    height: 48px;
    border-radius: 10px;
    margin-top: 10px;
    filter: drop-shadow(-4px 4px 8px rgba(0, 0, 0, 0.1));
}

.button-hover {
    background-color: #f3f3f3;
    border: 2px solid #f3f3f3;
    color: #12263B;
    transition: 0.3s;
}

.button-hover:hover {
    background-color: #12263B;
    border-color: #f3f3f3;
    color: white;
}

input:hover {
    border: 2px solid rgba(18, 38, 59, 0.5);
    border-radius: 10px;
}

/*+--------------------+*/
/*   |############|     */
/*      |FOOTER|        */
/*   |############|     */
/*+--------------------+*/

footer {
    clear: both;
    margin-top: -150px;
    width: 100%;
    padding: 40px;
    font-size: 16px;
    z-index: 1;
    background-color: #12263b;
}

footer p {
    display: flex;
    align-items: center;
}

footer p strong {
    padding-left: 3px;
    padding-right: 3px;
}

footer p i {
    width: 30px;
}

.footer-hover {
    background: linear-gradient(0deg, #f3f3f3, #f3f3f3) no-repeat left bottom / 0 var(--bg-h);
    transition: background-size 450ms;
    padding-bottom: 1px;
    --bg-h: 1px;
}

.footer-hover:hover, :focus-visible {
    background-size: 100% var(--bg-h);
}

.contact-info {
    line-height: 1.4286em;
    list-style: none;
    padding: 0;
}

.site-footer .widget + .widget {
    margin-top: 16px;
    font-family: 'poppins' !important;
}

.site-footer .widget ul {
    padding-bottom: 11px !important;
    font-size: 0.8125rem;
}

.site-footer ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.site-footer-default .contact-info li {
    margin-top: 6px;
}

.contact-info li {
    border-radius: 4px;
    padding: 7px 12px 7px 44px;
    position: relative;
}

.contact-info-acesso li {
    border-radius: 4px;
    padding: 7px 12px 7px 44px;
    position: relative;
}

.contact-info li::before {
    border-right: 1px solid;
    bottom: 1px;
    content: "";
    left: 0;
    position: absolute;
    top: 1px;
    width: 31px;
}

.contact-info i {
    left: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 31px;
}

.contact-info-acesso i {
    left: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 31px;
}

.atendimento-ul {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-item {
    font-size: 15px;
}

.atendimento-ul .contact-info-item {
    width: 50%;
    margin-top: 0 !important;
}

.atendimento-ul a {
    color: #fff;
}

.menu-item-footer::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 0.875rem;
    left: 0;
    position: absolute;
}

.widget-title:after {
    background-color: #c12626;
    height: 3px;
    width: 73px;
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
    box-sizing: border-box;
}

@media (max-width: 990px) {
    .contact-info-item {
        min-width: 255px;
    }
}

@media (max-width: 480px) {
    .contact-info-item {
        width: 172.5px;
    }
}

@media (max-width: 992px) and (min-width: 590px) {
    .row {
        display: flex;
        justify-content: center;
    }
}

.widget-title {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 24px;
    padding-bottom: 16px;
    position: relative;
}

.margemdireitos > .textwidget {
    margin-bottom: 0 !important;
}

.copyright-footer > .container {
    position: relative;
}

.site-footer-default .copyright-footer {
    border-top: 1px solid #27476d;
}

.copyright-footer {
    color: #f3f3f3;
    text-align: right;
}

@media (max-width: 999px) {
    .copyright-footer {
        display: flex;
        justify-content: center;
        text-align: center !important;
    }
}

.welcome h4 {
    font-size: 30px;
    margin-top: 5px;
    font-weight: 500;
}

.welcome p {
    font-size: 14px;
    line-height: 24px;
}

.welcome h4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

a {
    color: #fff !important;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
}

.fade {
    opacity: 0;
    animation-delay: 1s;
    animation: fade 7s;
}

@keyframes fade {
    20%, 75% {
        opacity: 1;
    }
}
