/*
Jogos Olímpicos
*/

/* 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: #000; /* preto */
    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-jogos-olimpicos/_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-jogos-olimpicos/_fontes/Proxima-Nova-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
}

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

a:hover {
    color: #000;
    text-decoration: none;
    background-color: #fff;
}

.menu a {
    text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    margin-bottom: 30px;
    text-transform: uppercase;
}

h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.jp {
    font-family: 'Noto Sans JP', sans-serif;
}

 #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: 3rem;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3, h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
}

/* colors */

.branco {
    color: #fff!important;
}

.preto {
    color: #000!important;
}

.coral {
    color: #ff3600!important;
}

/* cores de fundo */

.bg-marinho {
    background-color: #002f7f;
}

.bg-limao {
    background-color: #c9ff5b;
}

.bg-verde {
    background-color: #1ba03a;
}

.bg-musgo {
    background-color: #0a3a23;
}

.bg-azul {
    background-color: #0084ca;
}

.bg-verdeagua {
    background-color: #01d1a1;
}

.bg-roxo {
    background-color: #5335e1;
}

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

.bg-magenta {
    background-color: #ad0079;
}

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

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

.bg-coral {
    background-color: #ff3600;
}

.bg-branco {
    background-color: #fff;
}

@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;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-md-40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0px;
}

@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;
    }
    
    .mt-md-40 {
        margin-top: 0;
    }
    
    .no-tablet {
        display: none;
    }
}

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

/* estruturas */

.destacado {
    margin: 100px auto;
}

.borda {
    padding: 40px;
    border: 2px solid #000;
    border-image-slice: 1;
    width: auto;
}

.borda-branca {
    border-color: #fff;
}

.radio {
    border-radius: 50%;
    text-align: center;
    height: 350px;
    width: 350px;
    padding: 25% 0;
}

.linha {
    content: '';
    display: block;
    margin: 5px 0 20px;
    border-bottom: 2px solid #fff;
}

.lista {
    font-size: 1rem;
    padding-left: 15px;
    list-style: none;
    position: relative;
}

.leg {
    padding-left: 15px;
}

.lista li::before, .leg::before {
    content: '_';
    height: 10px;
    width: 10px;
    display: block;
    left: 0;
    position: absolute;
}

.leg::before {
    left: 35px;
}

.col-titulo {
    padding: 40px 40px 10px;
}

@media only screen and (max-width: 900px) {
    .radio {
        padding: 20% 0;
    }
    
    .destacado {
        margin: 60px auto;
    }
}

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

/* menu */
.menu {
    margin-bottom: 100px;
}

.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 > .col-12, #esportes > .col-12, #futebol > .col-12, #mundo > .col-12, #rio > .col-12, #tokio > .col-12, #volei > .col-12, #significado > .col-12, #conclusao .col-12 {
    margin-left: 60px;
}

#rio-jogos > .col-12 {
    margin-right: 60px;
}

#resumo, #esportes, #futebol, #mundo, #rio, #tokio, #volei, #significado, #rio-jogos {
    padding: 120px 15px;
    position: relative;
}

#jogos .col-12, #midias .col-12 {
    padding: 45px;
}

#conclusao .col-12 {
    padding-top: 120px;
    padding-bottom: 40px;
}

.bg {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
    width: 1200px;
    position: absolute;
    margin: 0 60px;
}

.bg-left {
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
    width: 1200px;
    position: absolute;
    margin: 0 60px;
    left: -45%;
}

.bg-futebol {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-futebol.png);
}

.bg-volei {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-volei.png);
}

.bg-atleta {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-atletas.png);
}

.bg-pista {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/pista.png);
}

.bg-fairplay {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-fairplay.png);
}

.bg-judo {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-judo.png);
    position: relative;
    height: 300px;
}

.bg-tecido {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-tecido.png);
}

.bg-gisele {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-gisele.jpg);
}

.bg-cristo {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-cristo.png);
}

.bg-instagram {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-instagram.png);
}

.bg-twitter {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-twitter.png);
}

.bg-facebook {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-facebook.png);
}

.bg-youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-youtube.png);
}

.bg-netflix {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-netflix.png);
}

.bg-whatsapp {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-jogos-olimpicos/_imagens/bg-whatsapp.png);
}

.up-texto {
    position: relative;
}

.midia {
    background-color: #fff;
    padding: 20px;
}

.midia .linha {
    border-color: #000;
}

.midia p {
    margin-bottom: 0;
}

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

@media only screen and (max-width: 900px) {
    #resumo > .col-12, #esportes > .col-12, #futebol > .col-12, #mundo > .col-12, #rio > .col-12, #tokio > .col-12, #volei > .col-12, #significado > .col-12, #conclusao .col-12 {
        margin-left: 0;
    }

    #rio-jogos > .col-12 {
        margin-right: 0;
    }
    
    #resumo, #esportes, #futebol, #mundo, #rio, #tokio, #volei, #significado, #rio-jogos, #conclusao .col-12 {
        padding: 60px 20px;
    }
    
    .bg, .bg-left {
        width: 100%;
    }
    
    .bg-left {
        left: 0;
    }
    
    .bg-instagram .display-3 {
        font-size: 3.5rem;
    }
    
    .bg-facebook .display-3, .bg-youtube .display-4 {
        font-size: 3.25rem;
    }
    
    .bg-netflix .display-4 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 500px) {
    .borda {
        width: 100%;
        padding: 20px;
    }
    
    #vamos-escolher .borda-titulo {
        border-color: #3f3487;
    }
    
    #conclusao .borda-titulo {
        border-color: #fff;
    }
    
    .borda-titulo h1 {
        font-size: 3.5rem;
    }
    
    .lista {
        margin-left: 0;
    }
    
    .bg, .bg-left {
        height: 250px;
        margin: 0;
    }
    
    .radio {
        width: 250px;
        height: 250px;
        padding: 30% 0;
    }
    
    .bg-instagram .display-3, .bg-twitter .display-3 {
        font-size: 3rem;
    }
    
    .bg-facebook .display-3, .bg-youtube .display-4 {
        font-size: 3rem;
    }
    
    .bg-netflix .display-4 {
        font-size: 2.4rem;
    }
}