@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat.ttf');
}

@font-face {
    font-family: 'Fabrikat Mono';
    src: url('/assets/fonts/FabrikatMonoThin.otf');
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes sombraIn {
    0% { box-shadow: inset 0px -150px 100px 0px rgba(0,0,0,0.5); }
    100% { box-shadow: inset 0px -500px 100px 0px rgba(0,0,0,0.6); }
}
@keyframes logoHeightIn {
    0% { height: 93px; }
    100% { height: 50px; }
}

body {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 1em;
    background-color: #E6E6E6;
    margin: 0;
    color: #333;
    animation: fadeIn ease 1s;
}

.bold {
    font-weight: 500;
}

.title {
    font-family: 'Calibri light';
    font-size: 1.8em;
    font-weight: 500;
    color: #333;
}

/* Header */
nav.navbar#header {
    font-size: 1.2em;
    padding: 40px;
    background-color: transparent;
    padding: 10px 40px;
    z-index: 999;
}
nav.navbar#header2 {
    font-size: 1.2em;
    background-color: #333;
    padding: 0px 40px;
    z-index: 999;
}
nav a.navbar-brand {
    display: flex;
    color: white;
    align-items: center;
}

nav a.nav-link {
    color: white;
}
nav .logo img {
    height: 93px;
}
nav a.nav-link:hover{
    font-weight: 500;
    text-decoration: none;
    color: white;
}
nav .nav-item.active a.nav-link:hover{
    font-weight: 600;
}
#navbarNav .nav-item.active {
    font-weight: 600;
    text-decoration-color: white;
}

/* Banner */
.banner-container {
    height: 100vh;
}
.banner-img {
    height: 100%;
    background-image: url('/assets/images/banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0px -150px 100px 0px rgba(0,0,0,0.5);
}
.banner-text {
    font-family: 'Calibri light';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 1.8em;
}

/* Faixa Info */
.faixa-info {
    font-family: 'Calibri light';
    background-color: #6a687d;
    color: #FFF;
    text-align: center;
    padding: 20px;
    font-size: 2em;
}


/* Serviços */
.servicos {
    margin: 50px 0;
    color: white;
}
.servicos .servico-title {
    font-family: 'Calibri light';
}
.servicos .servico-item {
    height: 500px;
}
.servicos .servico-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: inherit;
    -webkit-box-shadow: inset 0px -150px 100px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 0px -150px 100px 0px rgba(0,0,0,0.5);
    box-shadow: inset 0px -150px 100px 0px rgba(0,0,0,0.5);
}
.servicos .col-md-3:nth-child(1) .servico-img {
    background-image: url('/assets/images/service-1.jpg');
}
.servicos .col-md-3:nth-child(2) .servico-img  {
    background-image: url('/assets/images/service-2.jpg');
}
.servicos .col-md-3:nth-child(3) .servico-img  {
    background-image: url('/assets/images/service-3.jpg');
}
.servicos .col-md-3:nth-child(4) .servico-img  {
    background-image: url('/assets/images/service-4.jpg');
}
.servicos .servico-text {
    padding: 10px 20px;
    /* align bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: inherit;
}
.servicos .servico-title {
    font-size: 1.5em;
    font-weight: 500;
}
.servicos .servico-desc {
    font-size: .9em;
    display: none;
    opacity: 0;
}
.servicos .servico-item:hover .servico-img {
    -webkit-box-shadow: inset 0px -500px 100px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: inset 0px -500px 100px 0px rgba(0,0,0,0.6);
    box-shadow: inset 0px -500px 100px 0px rgba(0,0,0,0.6);
    animation: sombraIn ease 1s;
}

.servicos .servico-item:hover .servico-desc {
    display: block;
    opacity: 1;
    animation: fadeIn ease 1s;
}

/* Projetos */


/* Sobre */
.sobre {
    margin-top: 50px;
}
.foto-sobre {
    background-image: url('/assets/images/quem-somos.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 255px;
    border-radius: 14px;
}
.texto-sobre {
    font-weight: 400;
}

/* Contato */
.contato {
    margin-top: 50px;
}

#ENVIAR {
    float: right;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 35px;
    font-weight: 600;
    border-radius: 12px;
}
#ENVIAR:hover {
    opacity: 0.8;
}

.row.mensagem {
    font-size: 14px;
    font-weight: bold;
    margin-left: 0;
    margin-top: 10px;
    display: none;
}
.row.mensagem.mostrar {
    display: block;
}
.row.mensagem.mostrar.ok {
    color: #00c700;
}
.row.mensagem.mostrar.erro {
    color: #e50012;
}
a.link-contato {
    font-weight: 500;
    color: #333;
}
a.link-contato:hover{
    text-decoration: none;
    opacity: 0.8;
}



footer {
    background-color: #333;
    color: white;
    padding-top: 50px;
    margin-top: 80px;
    font-size: 0.9em;
}

.sub-footer {
    font-size: 14px;
    text-align: center;
    padding: 15px 0px;
    background-color: #111111;
    margin-top: 20px;
}
a.link-contato-footer {
    font-weight: 500;
    color: white;
}
a.link-contato-footer:hover{
    text-decoration: none;
    opacity: 0.8;
}
footer .row.midias-sociais {
    margin-left: 0px;
}
footer .midias-sociais .midia-item {
    background-color: #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .midias-sociais .midia-item:hover {
    background-color: #505050;
}

ul.links-rodape a {
    color: white;
}