/*
Salto Livre
*/

/* geral */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 10px;
    display: none;
}

/* smooth */

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* main */

body {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #202020; /* cinza escuro */
    background-color: transparent;
    font-style: normal;
    font-size: 1.25rem;
}

home,
image,
footer,
header,
main,
menu,
nav {
  display: block;
}

@media only screen and (max-width: 900px) {
    body {
        font-size: 1rem;
    }
}

/* fonts */

@font-face {
   font-family: 'Proxima Nova';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_fontes/Proxima-Nova-Regular.woff') format('woff');
   font-weight: 400;
   font-style: normal;
}

@font-face {
   font-family: 'Proxima Nova';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_fontes/Proxima-Nova-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
}

@font-face {
   font-family: 'Exposit';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_fontes/Exposit-Light.woff') format('woff');
   font-weight: 300;
   font-style: normal;
}

@font-face {
   font-family: 'Noe Display';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_fontes/NoeDisplay-RegularItalic.woff') format('woff');
   font-weight: 300;
   font-style: italic;
}

@font-face {
   font-family: 'Noe Display';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_fontes/NoeDisplay-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
}

/* fonts sizes */
a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #3f3487;
    text-decoration: underline;
}

strong, b, .b {
    font-weight: 700;
}

mark {
    background-color: #763998;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noe Display', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 60px;
}

.exposit {
    font-family: 'Exposit', sans-serif;
}

.noe-italic {
    font-family: 'Noe Display', sans-serif;
    font-style: italic;
}

.noe-display {
    font-family: 'Noe Display', sans-serif;
    font-weight: 700;
}

 #conclusao .lead {
    font-size: 1.75rem;
}

@media only screen and (max-width: 500px) {
    h1, h2, h3, .h1, .h2, .h3, .display-1, .display-2, .display-3 {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto; 
    }
    
    .display-1 {
        font-size: 4rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
}

/* colors */

.rosa {
    color: #f36bb2!important;
}

.roxo {
    color: #3f3487!important;
}

.laranja {
    color: #ff6629!important;
}

.vermelho {
    color: #f32929!important;
}

.amarelo {
    color: #f2d051!important;
}

.branco {
    color: #fff!important;
}

/* cores de fundo */

.bg-rosa {
    background-color: #f36bb2;
}

.bg-roxo {
    background-color: #3f3487;
}

.bg-laranja {
    background-color: #ff6629;
}

.bg-vermelho {
    background-color: #f32929;
}

.bg-amarelo {
    background-color: #f2d051;
}

@media only screen and (max-width: 500px) {
}

/* alinhamentos */

.mobile, .tablet {
    display: none;
}

.display-none {
    display: none!important;
}

.position-relative {
    position: relative!important;
}

.text-align-center {
    text-align: center!important;
}

.text-align-right {
    text-align: right!important;
}

.text-align-left {
    text-align: left!important;
}

.lg-text-right, .md-text-right {
    text-align: right;
}

.justify-flex-end {
    justify-content: flex-end!important;
}

.d-ml-auto {
    margin-left: auto;
}

@media only screen and (max-width: 900px) {
    
    .d-ml-auto {
        margin-left: 0;
    }
    
    .lg-text-right {
        text-align: left;
    }
    
    .md-mt-60 {
        margin-top: 60px;
    }
    
    .no-tablet {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    
    .md-text-right {
        text-align: left;
    }
    
    .desktop {
        display: none;
    }
    
    .mobile {
        display: block;
    }
}

/* estruturas */

.destacado {
    margin: 100px auto;
}

.borda {
    padding: 40px;
    border: 5px solid #000;
    border-width: 5px;
    border-style: solid;
    border-image-slice: 1;
    width: 400px;
}

.borda-titulo {
    width: auto;
    text-align: center;
}

.borda-roxo {
    border: 5px solid #3f3487;
}

.borda-branco {
    border: 5px solid #fff;
}

.borda-rosa {
    border: 5px solid #f36bb2;
}

.borda-amarelo {
    border: 5px solid #f2d051;
}

.borda-laranja {
    border: 5px solid #ff6629;
}

.borda h1, .borda h2 {
    margin-bottom: 0;
    margin-top: 0;
}

.g15 {
    transform: rotate(10deg);
}

.g-15 {
    transform: rotate(-10deg);
}

.col-bg {
    margin-left: -15px;
    margin-right: -15px;
    width: 100vw;
}

.col-bg p {
    margin-left: 20px;
}

.tooltip-inner {
    background-color: #f36bb2;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
    border-top-color: #f36bb2;
}

@media only screen and (max-width: 500px) {
    .destacado {
        margin: 60px auto;
    }
}

/* menu */
#menu-lista {
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-quadrados.png);
    background-position: center;
    background-size: cover;
}

#menu-lista a {
    text-decoration: none;
    position: relative;
    display: block;
}

#menu-lista a:hover {
    text-decoration: none;
    color: #fff;
}

#menu-lista a:hover h1::before {
    content: '';
    display: block;
    position: absolute;
    height: 60px;
    width: 15px;
    background-color: #fff;
    top: -20%;
    left: -40px;
}

.progress {
    background-color: #f8f9fa;
}

.progress-bar {
    background-color: #3f3487;
}

@media only screen and (max-width: 500px) {
    #menu-lista {
        background-size: contain;
    }
    
    #menu-lista h1 {
        font-size: 2rem;
    }
}

/* conteúdo */
#main {
    position: relative;
    height: auto;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

#main > .row {
    margin-left: 0;
    margin-right: 0;
}

#resumo, #pular, #liberdade, #escolhas, #existe, #futuro, #aprendemos, #perseguicao, #limitacao, #indiferenca, #opcao {
    padding: 120px 15px;
    position: relative;
}

.titulo {
    position: relative;
}

.titulo::before {
    content: '';
    display: block;
    position: absolute;
    height: 60px;
    width: 15px;
    background-color: #fff;
    top: -5%;
    left: -40px;
}

.titulo.laranja::before {
    background-color: #ff6629;
}

.titulo.roxo::before {
    background-color: #3f3487;
}

.titulo.amarelo::before {
    background-color: #f2d051;
}

.bg-liberdade {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-liberdade.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.bg-down {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-freud.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-big-data {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-bigdata.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.bg-man {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-man.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-hand {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-mama.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-nope {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-nope.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-eye {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-eyes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-pato {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-pato.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-surpresa {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-surpresa.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.bg-card {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-salto-livre/_imagens/bg-card.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100vw;
}

.text-link a, .text-link a:hover {
    text-decoration: none;
}

#conclusao {
    padding-bottom: 120px;
}

.linha {
    position: relative;
    margin-bottom: 60px;
}

.linha h2::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background-color: #fff;
    left: -30px;
    top: 15px;
}

.linha h2::before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background-color: #fff;
    right: -30px;
    top: 15px;
}

.linha.laranja h2::after, .linha.laranja h2::before {
    background-color: #ff6629;
}

.linha.amarelo h2::after, .linha.amarelo h2::before {
    background-color: #f2d051;
}

.linha.rosa h2::after, .linha.rosa h2::before {
    background-color: #f36bb2;
}

.img-descartes {
    margin-left: 20%;
}

.lista {
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1050px) {
    #banner .titulo {
        padding-top: 25%;
    }
}

@media only screen and (max-width: 900px) {
    
    #resumo, #pular, #liberdade, #escolhas, #existe, #futuro, #aprendemos, #perseguicao, #limitacao, #indiferenca, #opcao {
        padding: 60px 20px;
    } 
}

@media only screen and (max-width: 500px) {
    .borda {
        width: 100%;
        padding: 20px;
    }
    
    .borda-titulo {
        padding: 0;
        border: none;
        border-bottom: 5px solid #ff6629;
        margin-bottom: 120px;
        text-align: left;
    }
    
    #vamos-escolher .borda-titulo {
        border-color: #3f3487;
    }
    
    #conclusao .borda-titulo {
        border-color: #fff;
    }
    
    .destacado h1 {
        font-size: 2rem;
    }
    
    .borda-titulo h1 {
        font-size: 3.5rem;
    }
    
    .titulo::before {
        top: -30px;
        left: 0;
        width: 60px;
        height: 15px;
    }
    
    .titulo {
        font-size: 2.75rem;
    }
    
    .img-descartes {
        margin-left: auto;
        width: 100%;
    }
    
    .lista {
        margin-left: 0;
    }
    
    .linha h2::after {
        width: 40%;
        left: 0;
    }

    .linha h2::before {
        width: 40%;
        right: 0;
    }
}