/*
Negritude
*/

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

@font-face {
   font-family: 'Proxima Nova';
   src: url('https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_fontes/Proxima-Nova-Black.woff') format('woff');
   font-weight: 900;
   font-style: normal;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}

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

h1.b, h1 b, h2.b, h2 b {
    font-weight: 900;
}

.up {
    text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
    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: 3.5rem;
    }
    
    .display-3 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2.75rem;
    }
}

/* colors */

.preto {
    color: #000;
}

.branco {
    color: #fff;
}

.amarelo {
    color: #fdd933;
}

/* cores de fundo */

.bg-preto {
    background-color: #000;
}

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

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

/* alinhamentos */

.mobile, .tablet {
    display: none;
}

.desktop {
    display: block;
}

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

.p-relative {
    position: relative;
}

.my-100, .my-lg-100 {
    margin-bottom: 100px;
    margin-top: 100px;
}

.mt-100, .mt-lg-100 {
    margin-top: 100px;
}

.mb-100, .mb-lg-100 {
    margin-bottom: 100px;
}

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

.my-60 {
    margin-bottom: 60px;
    margin-top: 60px;
}

.mt-60 {
    margin-top: 60px;
}

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

.my-40 {
    margin-bottom: 40px;
    margin-top: 40px;
}

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

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

.mt-20 {
    margin-top: 20px;
}

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

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

.py-100 {
    padding-bottom: 100px;
    padding-top: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-60 {
    padding-bottom: 60px;
    padding-top: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.py-40 {
    padding-bottom: 40px;
    padding-top: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.py-20 {
    padding-bottom: 20px;
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}


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

@media only screen and (max-width: 500px) {
    
    .md-text-right {
        text-align: left;
    }
    
    .text-sm-center {
        text-align: center;
    }
    
    .mb-sm-60 {
        margin-bottom: 60px;
    }
    
    .my-sm-40 {
        margin-bottom: 40px;
        margin-top: 40px;
    }
    
    .mt-sm-40 {
        margin-top: 40px;
    }
    
    .mb-sm-40 {
        margin-bottom: 40px;
    }
    
    .mb-sm-20 {
        margin-bottom: 20px;
    }
    
    .py-sm-40 {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    
    .pt-sm-40 {
        padding-top: 40px;
    }
    
    .pb-sm-40 {
        padding-bottom: 40px;
    }
    
    .py-sm-0 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .tablet {
        display: none;
    }
    
    .mobile {
        display: block;
    }
}

/* estruturas */

.bg-borda {
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.box {
    padding: 20px 40px;
}

.box-container {
    padding: 100px;
}

.borda-ciano {
    border: 2px solid #02dcc5;
}

.barra {
    content: '';
    height: 50px;
    width: 100%;
    display: block;
    background-color: #000;
    border-radius: 10px;
    margin-right: 20px;
}

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

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

}

/* menu */

.progress {
    background-color: #fff;
}

.progress-bar {
    background-color: #000;
}

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

}

/* conteúdo */
#main {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    justify-content: center;
    padding: 0;
}

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

.bg-amarelo {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-amarelo.jpg);
    background-position: top;
    background-repeat: repeat;
    background-size: cover;
}

.bg-amarelo.bg-right {
    background-position: 643px;
    background-repeat: repeat-y;
}

.bg-amarelo.bg-left {
    background-position: -643px;
    background-repeat: repeat-y;
}

.bolinha-preta {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bolinhas-pretas.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 260px;
}

.bolinha-preta.bg-right {
    background-position: top right;
}

.bg-jose-luiz {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-jose-luiz.png);
    background-position: 150px;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-rapaz {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-rapaz.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-rapaz .col-12 {
    margin-top: 550px;
}

.linhas-amarela {
    width: 80px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 20%;
}

.seta-amarela {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/seta-amarela.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100px;
}

.seta-preta {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/seta-preta.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100px;
}

.bg-menina {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-menina.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 190px;
}

.bg-nataly {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-nataly.jpg);
    background-position: -400px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 190px;
}

.bg-nataly .col-12 {
    margin-top: 250px;
}

.bg-lava {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/lava.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mapa-brasil {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/mapa-brasil.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-terra {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/terra.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prato-pardo {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/prato-pardo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.prato-preto {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/prato-preto.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.prato-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/prato-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-conceicao {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/conceicao.png);
    background-position: 620px;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-looking {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/looking-up.png);
    background-position: 700px;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-maos {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/maos.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1000px;
}

.dona-flor {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/dona-flor.jpg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 800px;
}

.reza {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/reza.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1000px;
}

@media only screen and (min-width: 2000px) {
    .bg-jose-luiz {
        background-position: 700px;
        background-size: contain;
    }
    
    .bg-menina {
        background-position: top;
    }
    
    .bg-nataly {
        background-position: 200px;
    }
    
    .bg-conceicao {
        background-position: 1200px;
    }
    
    .bg-looking {
        background-position: 1280px;
    }
    
    .dona-flor {
        background-position: 1300px bottom;
    }
}

@media only screen and (max-width: 2000px) and (min-width: 1500px) {

    .bg-nataly {
        background-position: -200px;
    }
    
    .bg-conceicao {
        background-position: 880px;
    }
    
    .bg-looking {
        background-position: 980px;
    }
}

@media only screen and (max-width: 1300px) {
    
    .bg-amarelo.bg-right {
        background-position: 560px;
    }
    
    .bg-jose-luiz {
        background-position: 50px;
    }
    
    .bg-nataly {
        background-position: -500px;
    }
}


@media only screen and (max-width: 900px) {
    
    .bolinha-preta {
        background-position: -150px top;
    }
    
    .bg-amarelo.bg-right {
        background-position: 340px;
    }
    
    .bg-jose-luiz {
        padding-top: 350px;
        background-position: -850px top;
        background-size: 2300px;
    }
    
    .linhas-amarela {
        left: 0;
    }
    
    .bg-nataly {
        background-position: -850px;
    }
    
    .bg-conceicao {
        background-position: 350px top;
        padding-top: 350px;
    }
    
    .bg-looking {
        background-position: 400px;
    }
    
    .bg-maos {
        background-position: -200px center;
    }
    
    .dona-flor {
        background-position: 200px bottom;
    }

}

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

    .bolinha-preta {
        background-position: left -230px;
        padding-top: 80px;
        padding-bottom: 0;
    }
    
    .bg-jose-luiz {
        padding-top: 80px;
        background-position: -250px top;
        background-size: 1000px;
    }
    
    .linhas-amarela {
        left: -50px;
    }
    
    .bg-menina {
        background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/bg-amarelo.jpg);
        padding-bottom: 0;
    }
    
    .seta-preta {
        background-image: none;
    }
    
    .bg-nataly {
        background-image: none;
        padding-bottom: 0;
        padding-top: 0;
    }
    
    .bg-nataly .bg-amarelo {
        background-image: none;
    }
    
    .bg-nataly .col-12 {
        margin-top: 60px;
    }
    
    .bg-lava {
        background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-negritude/_imagens/lava-mobile.jpg);
        margin-top: 0;
    }
    
    .mapa-brasil {
        background-image: none;
    }
    
    .bolinha-preta.bg-right {
        background-position: right -200px;
        margin-top: 0;
        padding-top: 100px;
    }
    
    .bg-conceicao {
        background-position: top;
        padding-top: 250px;
        background-size: 500px;
    }
    
    .bg-looking {
        background-image: none;
        padding-bottom: 0px;
    }
    
    .bg-maos {
        background-image: none;
        padding-bottom: 0;
    }
    
    .dona-flor {
        background-position: -50px bottom;
    }
    
    .bg-reza {
        background-image: none;
        padding-bottom: 0;
    }

}