body {
    padding: 0!important;
    font-family: 'Poppins';
}

.container:not(.-mobile):not(.-desktop) {
    width: 1350px;
    max-width: 100%;
}

.none {
    display: none;
}

img {
    max-width: 100%;
}

/* Header */

.nav-top,
.layout-header {
    display: none;
}

/* Footer */

.footer-main {
    float: left;
    width: 100%;
    padding-bottom: 60px!important;
}

/* Modal Rodapé */

.modalRodape {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    padding: 15px 0;
    -webkit-box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 39%);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.39);
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 39%);
}

.modalRodape span {
    color: #1E2A3B;
    font-weight: bold;
    font-size: 18px;
    float: left;
    width: 100%;
}

.modalRodape span strong {
    color: #C98300;
}

/* Modal Vídeo */

#modalVideo {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999999;
    display: none;
}

#modalVideo .boxFlex {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalVideo .boxFlex .boxVideo {
    width: 800px;
    max-width: 90%;
    border-radius: 4px;
    background: #fff;
    padding: 30px;
    position: relative;
}

#modalVideo .boxFlex .boxVideo .fechaVideo {
    position: absolute;
    color: #A9ABBD;
    font-weight: bold;
    top: 4px;
    right: 4px;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
}

#modalVideo .boxFlex .boxVideo .video-block {
    max-width: 100%;
}

#modalVideo .boxFlex .boxVideo iframe {
    width: 100%;
    float: left;
    height: 500px;
    border-radius: 4px;
}

/* Barra Fixa */

.barraFixa {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.31);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.31);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.31);
}

.barraFixa .boxFlex {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.barraFixa .boxFlex .boxTexto {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.barraFixa .boxFlex .boxTexto p {
    margin: 0;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}

.barraFixa .boxFlex .boxTexto p strong {
    color: #CE0708;
}

.barraFixa .boxFlex .boxTexto span {
    color: #0A121F;
    font-size: 11px;
    margin-top: 3px;
    font-weight: 600;
}

.barraFixa .boxFlex a {
    color: #fff;
    background: #CE0708;
    display: inline-block;
    padding: 12px 60px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {

    /* Modal Rodapé */

    .modalRodape {
        padding: 10px 0;
    }

    .modalRodape span {
        text-align: center;
        font-size: 16px;
    }

    /* Modal Vídeo */

    #modalVideo .boxFlex .boxVideo {
        padding: 3px;
    }

    #modalVideo .boxFlex .boxVideo iframe {
        height: 180px;
    }

    #modalVideo .boxFlex .boxVideo .fechaVideo {
        background: #fff;
        border-radius: 20px;
        top: -10px;
        right: -10px;
    }

    /* Barra Fixa */

    .barraFixa .container {
        padding: 0 10px!important;
    }

    .barraFixa .boxFlex .boxTexto p {
        font-size: 14px;
    }

    .barraFixa .boxFlex a {
        padding: 12px 20px;
    }

}