/*
Preocupações e comportamentos dos brasileiros na pandemia
*/

/* geral */

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

/* scrollbar */

::-webkit-scrollbar {
    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: #a7a9ac; /* cinza claro */
    background-color: #fff; /* bg preto-azul */
    font-style: normal;
    font-size: 1.15rem;
}

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

/* fonts sizes */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #fdfdfd;
    background-color: #E11684;
    text-decoration: none;
}

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

small, .small { opacity: .6 }

.up {
    text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
    .col-md-3-5 .display-4 {
        font-size: 3rem;
    }
}

@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-2 {
        font-size: 2.5rem;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
}

/* colors */

.branco {
    color: #dbdcdd;
}

.blue {
    color: #0031ff;
}

.pink {
    color: #f642ff;
}

.purple {
    color: #8028ff;
}

.creme {
    color: #f8cdd1;
}

.orange {
    color: #ffa600;
}

.limao {
    color: #4affa8;
}

/* cores de fundo */

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

.bg-blue {
    background-color: #0031ff;
}

.bg-pink {
    background-color: #f642ff;
}

.bg-purple {
    background-color: #8028ff;
}

.bg-creme {
    background-color: #f8cdd1;
}

.bg-orange {
    background-color: #ffa600;
}

.bg-limao {
    background-color: #4affa8;
}

.bg-purple-marinho-blue {
    background: rgb(203,0,255);
    background: -moz-linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 52%, rgba(0,194,253,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 52%, rgba(0,194,253,1) 100%);
    background: linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 52%, rgba(0,194,253,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cb00ff",endColorstr="#00c2fd",GradientType=1);
}

.bg-purple-marinho {
    background: rgb(203,0,255);
    background: -moz-linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 100%);
    background: linear-gradient(135deg, rgba(203,0,255,1) 0%, rgba(0,41,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cb00ff",endColorstr="#0029ff",GradientType=1);
}

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

.borda-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.borda-left {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.bg {
    margin-left: -15px;
    margin-right: -15px;
}

/* imagens de fundo */


/* alinhamentos */

.mobile, .tablet {
    display: none;
}

.desktop {
    display: flex;
    display: -ms-flexbox;
}

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

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

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

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

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

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

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

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

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

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

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

.ml-40 {
    margin-left: 40px;
}

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

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

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

.mr-20 {
    margin-right: 20px;
}

.ml-20 {
    margin-left: 20px;
}

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

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

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

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

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

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

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

.pl-5 {
    padding-left: 5px!important;
}

.pr-5 {
    padding-right: 5px!important
}

@media only screen and (min-width: 768px) {
   .col-md-3-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    } 
}

@media only screen and (max-width: 900px) {
    
    .mt-md-60 {
        margin-top: 60px;
    }
    
    .mb-md-60 {
        margin-bottom: 60px;
    }
    
    .mb-md-40 {
        margin-bottom: 40px;
    }
    
    .mt-md-40 {
        margin-top: 40px;
    }
    
    .desktop {
        display: none;
    }
    
    .tablet {
        display: flex;
        display: -ms-flexbox;
    }
    
    .w-md-80 {
        max-width: 80%;
    }
    
}

@media only screen and (max-width: 500px) {
    
    .tablet {
        display: none;
    }
    
    .mobile {
        display: block;
    }
    
    .mb-sm-40 {
        margin-bottom: 40px;
    }
    
    .mb-sm-20 {
        margin-bottom: 20px;
    }
    
    .w-sm-100 {
        max-width: 100%;
    }
}

/* estruturas */

.barra {
    content: '';
    height: 60px;
    width: 100%;
    display: block;
    margin-right: 20px;
}

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

@media only screen and (max-width: 500px) { 
    .barra {
        height: 50px;
    }
}

/* conteúdo */
#main {
    position: relative;
    height: auto;
    margin: 0;
}

.container > .row {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fonte {
    font-size: .75rem;
}

.fonte a {
    width: 3px;
}

.lista {
    padding-left: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.lista li {
    list-style: none;
    margin-left: 10px;
    margin-right: 10px;
}

#numero {
    border: 1px solid #0031ff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px 40px;
}

#numero.over {
    border-width: 3px;
}

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

}

@media only screen and (max-width: 500px) {
    .lista {
        display: inline;
    }
}
