/*
Comunicação na pandemia
*/

/* 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: #343e59; /* azul escuro */
    background-color: #d6e6e6; /* bg-branco */
    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-comunicacao-em-tempos-de-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-comunicacao-em-tempos-de-pandemia/_fontes/Proxima-Nova-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
}

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

a:hover {
    color: #d6e6e6;
    background-color: #343e59;
    text-decoration: none;
}

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

.i {
    font-style: italic;
}

small { color: #989898 }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 200;
    margin-bottom: 30px;
}

h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
    font-weight: 500;
}

.black {
    font-weight: 900;
}

@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: #d6e6e6;
}

.azul {
    color: #a8ced8;
}

.marinho {
    color: #446f97;
}

.escuro {
    color: #343e59;
}

.vermelho {
    color: #df4c4d;
}

/* cores de fundo */

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

.bg-azul {
    background-color: #a8ced8;
}

.bg-marinho {
    background-color: #446f97;
}

.bg-escuro {
    background-color: #343e59;
}

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

.bg {
    content: '';
    display: block;
    height: 100px;
    width: 100%;
    position: relative;
}

.branco-marinho {
    background: -moz-linear-gradient(0deg, rgba(68,111,151,1) 0%, rgba(214,230,230,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(68,111,151,1) 0%, rgba(214,230,230,1) 100%);
    background: linear-gradient(0deg, rgba(68,111,151,1) 0%, rgba(214,230,230,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#446f97",endColorstr="#d6e6e6",GradientType=1);
}

.marinho-escuro {
    background: -moz-linear-gradient(0deg, rgba(52,62,89,1) 0%, rgba(68,111,151,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(52,62,89,1) 0%, rgba(68,111,151,1) 100%);
    background: linear-gradient(0deg, rgba(52,62,89,1) 0%, rgba(68,111,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#343e59",endColorstr="#446f97",GradientType=1);
}

.escuro-vermelho {
    background: -moz-linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(52,62,89,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(52,62,89,1) 100%);
    background: linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(52,62,89,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df4c4d",endColorstr="#343e59",GradientType=1);
}

.vermelho-azul {
    background: -moz-linear-gradient(0deg, rgba(168,206,216,1) 0%, rgba(223,76,77,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(168,206,216,1) 0%, rgba(223,76,77,1) 100%);
    background: linear-gradient(0deg, rgba(168,206,216,1) 0%, rgba(223,76,77,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a8ced8",endColorstr="#df4c4d",GradientType=1);
}

.azul-vermelho {
    background: -moz-linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(168,206,216,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(168,206,216,1) 100%);
    background: linear-gradient(0deg, rgba(223,76,77,1) 0%, rgba(168,206,216,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df4c4d",endColorstr="#a8ced8",GradientType=1);
}

.vermelho-branco {
    background: -moz-linear-gradient(0deg, rgba(214,230,230,1) 0%, rgba(223,76,77,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(214,230,230,1) 0%, rgba(223,76,77,1) 100%);
    background: linear-gradient(0deg, rgba(214,230,230,1) 0%, rgba(223,76,77,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d6e6e6",endColorstr="#df4c4d",GradientType=1);
}

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

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

/* imagens de fundo */

.quadrado-marinho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/quadrado-marinho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.quadrado-escuro {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/quadrado-escuro.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.quadrado-vermelho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/quadrado-vermelho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.quadrado-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/quadrado-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.circulo-azul {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/circulo-azul.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.circulo-marinho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/circulo-marinho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.circulo-escuro {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/circulo-escuro.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.circulo-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/circulo-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.circulo-vermelho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/circulo-vermelho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.triangulo-vermelho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/triangulo-vermelho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.triangulo-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/triangulo-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.triangulo-marinho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/triangulo-marinho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.triangulo-azul {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/triangulo-azul.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.q-escuro-t-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/q-escuro-t-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.q-branco-c-vermelho {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/q-branco-c-vermelho.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.c-azul-t-branco {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/c-azul-t-branco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

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

/* alinhamentos */

.mobile, .tablet {
    display: none;
}

.desktop {
    display: block;
}

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

.position-relative {
    position: relative;
}

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

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

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

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

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

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

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

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

.mr-20 {
    margin-right: 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;
}

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

@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;
    }
    
    .desktop {
        display: none;
    }
    
    .tablet {
        display: block;
    }
}

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

/* estruturas */

.titulo {
    margin-bottom: 60px;
}

.borda-branco {
    padding: 40px;
    border: 2px solid #d6e6e6;
    width: auto;
    border-radius: 50px;
}


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

}

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

}

/* menu */

#menu {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.sua-marca {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/sua-marca.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 900px) {
    
    #menu {
        background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/menu-mobile.png);
    }
    
    .sua-marca {
        background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/card-comunicacao-em-tempos-de-pandemia/_imagens/sua-marca-mobile.png);
    }

}

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

#main > div {
    margin-left: -15px;
    margin-right: -15px;
}

#main > .row {
    padding: 100px 0;
}

@media only screen and (max-width: 900px) {
    #main > .row {
        padding: 60px 10px;
    }
}
