
body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #fff;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: gray; 
    padding-top: 105px; /* forçar o reposicionamento do body por problema com o position fixed do cabeçalho */
}
    /*  Problema com cabeçalho posicionado fixo e href
        o posicionamento fixo não atualiza a posição do elemento, então precisamos forçar o deslocamento e  
        ajustar a posição do link(href=#) devido ao position fixed do cabeçalho 
    */
    #quem-somos, #servicos, #modelo, #contato {
        padding-top: 110px;
        margin-top: -100px;
    }

/* fundo preto */
.bg-black {
    background-color: black;
}

.title-bar {
    position: relative;
    background: #ddd;
    font-size: 20px;
    line-height: 3;
    font-weight: 500;
    color: black;
}
/* services
------------------------- */
.services img {
    width: 140px;
    height: 140px;
}

/* Featurettes
------------------------- */
.featurette img {
    width: 400px;
    height: 400px;
}

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
  }

/* contato
------------------------- */
.email a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}
