﻿/* Estilo das páginas de cursos --------------------- */

.cursos p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    margin: 0.2em 0 0.8em;
}

/* Botões ------------------------------------------- */
.button-cursos {
    background: none repeat-x scroll 50% 0 #f57f29;
}
.button-cursos, .button-cursos:visited {
    color: #fff;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Open Sans', Arial;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
    padding: 14px 14px;
    margin-bottom: 15px;
    border-radius: 12px;
}
    .button-cursos:hover {
        background: none repeat-x scroll 50% -42px #69605a;
        color: #fff;
        display: inline-block;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
    }

.button-red:active, .button-brown:active, .button-green:active, .button-blue:active, .button-pink:active, .button-white:active, .button-black:active, {
    background: #000;
}

/* Botão voltar ao topo ----------------------------- */
#button-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    outline: none;
    color: #f57f29;
    background: none;
    z-index: 999;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}


/* Parallax effect ---------------------------------- */
.no-touch .light-transp-bg,
.no-touch .dark-transp-bg,
.no-touch .parallax-cursos {
    background-attachment: fixed !important;
}

.light-transp-bg,
.dark-transp-bg,
.parallax-cursos {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.parallax-cursos {
    background-position: 50% 0;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    padding: 50px 0;
}

.light-transp-bg,
.dark-transp-bg {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    position: relative;
}

    .light-transp-bg:after,
    .dark-transp-bg:after {
        /*content: ""; deixa a layer clicável*/
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
    }

.light-transp-bg {
    color: #333;
    border-bottom: 1px solid #dadada;
    border-top: 1px solid #dadada;
}

.header + .banner > .light-transp-bg {
    border-top: none;
}

.light-transp-bg .separator-2 {
    background-color: #333;
}

.light-transp-bg:after {
    background-color: rgba(255, 255, 255, 0);
}

.dark-transp-bg:after {
    background-color: rgba(0, 0, 0, 0);
}

.dark-transp-bg,
.dark-transp-bg h1,
.dark-transp-bg h2,
.dark-transp-bg h3,
.dark-transp-bg h4,
.dark-transp-bg h5,
.dark-transp-bg h6 {
    color: #ffffff;
}

    .dark-transp-bg a:not(.btn) {
        text-decoration: underline;
        color: #ffffff;
    }

        .dark-transp-bg a:not(.btn):hover {
            text-decoration: none;
            color: #ffffff;
        }


/*.light-transp-bg .container,
            .dark-transp-bg .container,
            .default-transp-bg .container {
                z-index: 3;
                position: relative;
            }*/

.light-layer {
    margin: 15% 0px 20% 0px;
    padding: 5px 15px 5px 15px;
    background-color: rgba(255,255,255, 0.8);
}

.dark-layer {
    margin: 15% 0px 20% 0px;
    padding: 5px 15px 5px 15px;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .light-transp-bg {
        background-attachment: initial !important;
    }

    .dark-transp-bg {
        background-attachment: initial !important;
    }
}

