/*
Smartphones & apps
*/

/* 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: #282828; /* azul escuro */
    background-color: transparent;
    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/estudo-smartphones/_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-smartphones/_fontes/Proxima-Nova-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
}

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

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

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

.i {
    font-style: italic;
}

small { color: #989898 }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
}

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

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

.verde {
    color: #0ba85f;
}

.marinho {
    color: #0053a1;
}

.azul {
    color: #41aad3;
}

.laranja {
    color: #ed7203;
}

.vermelho {
    color: #c61a1b;
}

/* masks */

.verde mask {
    background-color: #0ba85f;
    color: #f3f3f3;
}

.marinho mask {
    background-color: #0053a1;
    color: #f3f3f3;
}

.azul mask {
    background-color: #41aad3;
    color: #f3f3f3;
}

.laranja mask {
    background-color: #ed7203;
    color: #f3f3f3;
}

.vermelho mask {
    background-color: #c61a1b;
    color: #f3f3f3;
}

/* cores de fundo */

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

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

.bg-verde {
    background-color: #0ba85f;
}

.bg-marinho {
    background-color: #0053a1;
}

.bg-azul {
    background-color: #41aad3;
}

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

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

.bg-cresce {
    background-image: url(https://s3.glbimg.com/v1/AUTH_e179b208e56946d3a19ef0cfac2dd20b/portal/static/estudo-smartphones/_imagens/cresce.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px 0;
}

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

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

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

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

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

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

.titulo {
    margin-bottom: 60px;
}

.box {
    padding: 40px;
    background-color: #262161;
    width: auto;
    border-radius: 50px;
}

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

.bolha {
    padding: 5px;
    background-color: #262161;
    border-radius: 50px;
}

.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 {
    display: inline-flex;
}

.col-titulo h1 {
    padding-left: 10px;
    margin-bottom: 0;
    padding-top: 10px;
}

ul {
    list-style: none;
    padding-left: 15px;
}

ul li::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.bullet-verde li::before {
    color: #0ba85f;
}

.bullet-marinho li::before {
    color: #0053a1;
}

.bullet-azul li::before {
    color: #41aad3;
}

.bullet-laranja li::before {
    color: #ed7203;
}

.bullet-vermelho li::before {
    color: #c61a1b;
}

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

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

/* menu */

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

}

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

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

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