@use "helpers";

body,html{
    margin: 0px;
    width: 100%;
    overflow-x: hidden;
}

#con-content {
    padding-left: 0px !important;
}

.container{
    width: 100% !important;
    padding-left: 0px;
    padding-right: 0px;
}

#pagina-manutencao {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-image: url(../img/bg-manutencao.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: helpers.$light;
    align-items: center;
    justify-content: flex-start;

    .conteudo{
        display: block;
        width: 100%;
        padding-right: 15px;
        padding-left: 395px;

        @media(max-width:1535px){
            padding-left: 195px;
        }

        @media(max-width:1199px){
            padding-left: 30px;
        }

        .logo{
            display: block;
            width: 100%;
            max-width: helpers.$logoWidth;
            margin-bottom: 25px;
        }

        .texto{
            display: block;
            margin: 0px;
            margin-bottom: 35px;
            color: helpers.$textoDark;
            font: normal 26px helpers.$fontRegular;
        }

        .redes-sociais{
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: flex-start;

            &:before{
                display: block;
                content: "";
                width: 92px;
                height: 1px;
                margin-right: 25px;
                background-color: #9A9A9A;
            }

            .opt{
                display: block;
                outline: 0px;
                box-shadow: none;
                margin-right: 15px;

                &:last-of-type{
                    margin-right: 0px;
                }
            }
        }
    }
}