@charset "utf-8";
/*CSS Document*/

/*formatações padrão para todo o site*/
* {
    text-decoration: none;
    margin: 0;
    box-sizing: border-box;
}

/*instalando fontes no servidor*/
@font-face {font-family: roboto-black; src: url(../fontes/Roboto-Black.ttf);}
@font-face {font-family: roboto-regular; src: url(../fontes/Roboto-Regular.ttf);}
@font-face {font-family: roboto-thin; src: url(../fontes/Roboto-Thin.ttf);}

body, html {
    width: 100%;
    height: 100%;
    font-family: roboto-regular;
    font-size: 16px;
    color: #666;
    scroll-behavior: smooth;
}

nav {
    width: 100%;
    background-color: #333;
    text-align: center;
    position: fixed;
    z-index: 1;
}

nav a {
    color: #fff;
    padding: 0.5% 2% 2%;
    display: inline-block;
    font-family: roboto-thin;
    font-size: 18px;
    letter-spacing: 1.4px;
    margin-top: 1.5%;
    border-top: 3px solid transparent;
}

nav a:hover {
    color: #ffce00;
    border-color: #ffce00;
}

header {
    width: 100%;
    height: 100%;
    background-image: url("../imagens/header-bg.jpg");
    background-size: cover;
    background-position: center 20%;
}

header h2 {
    text-align: center;
    color: #fff;
    font-family: roboto-thin;
    font-weight: lighter;
    font-size: 46px;
    padding-top: 20%;
}

header h3 {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-family: roboto-black;
    font-weight: 900;
}

section {
    width: 100%;
    height: 100%;
    padding-top: 8%;
}

.titulo {
    text-align: center;
    font-family: roboto-black;
    font-size: 30px;
}

.barra {
    width: 5%;
    border-bottom: 2px solid #ffce00;
    margin: auto;
}

.subtitulo {
    text-align: center;
    font-family: roboto-thin;
}

#servicos article, #portfolio article, #equipe article {
    float: left;
    width: 30%;
    margin-left: 2.5%;
    text-align: center;
    margin-top: 5%;
}

.iconserv {
    width: 180px;
    height: 180px;
    background-color: #ffce00;
    border-radius: 50%;
    margin: auto;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.iconserv:hover {
    transform: rotate(360deg);
    background-color: #666;
    color: #ffce00;
}

.tituloserv {
    font-family: roboto-black;
    margin: 4%;
}

.descriserv {
    text-align: justify;
}

#portfolio {
    background-color: #000;
    color: #fff;
    height: 170%;
}

#portfolio article div {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

#portfolio article div img {
    width: 100%;
    transform: scale(1.1);
    transition: 0.4s;
}

.tituloport {
    font-family: roboto-black;
    margin-top: 4%;
}

#portfolio article div i {
    position: absolute;
    z-index: 1;
    font-size: 60px;
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    transform: scale(0);
    transition: 0.5s;
}

#portfolio article div:hover img{
    transform: scale(1);
    opacity: 0.5;
    filter: blur(2px);
}

#portfolio article div:hover i {
    transform: scale(1);
}

.empresa1, .empresa2, .empresa3, .empresa4 {
    width: 100%;
    padding: 2%;
    border: 2px solid #ffce00;
}

.bola1, .bola2, .bola3, .bola4 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    float: left;
    margin: 0 4%;
}

.bola1{background-image: url(../imagens/11.jpg); background-size: cover;}

.bola2{background-image: url(../imagens/22.jpg); background-size: cover;}

.bola3{background-image: url(../imagens/33.jpg); background-size: cover;}

.bola4{background-image: url(../imagens/44.jpg); background-size: cover;}

.empresa1, .empresa3 {
    padding-right: 27%;
    background: linear-gradient(90deg, #fff 75%, #ffce00 75%);
}

.empresa2, .empresa4 {
    padding-left: 27%;
    background: linear-gradient(90deg, #ffce00 25%, #fff 25%);
}

.tituloempresa {
    font-family: roboto-black;
    font-size: 20px;
    float: left;
}

.descriempresa {
    text-align: justify;
    font-size: 14px;
    line-height: 22px;
}

#empresa .subtitulo {
    margin-bottom: 3%;
}

#empresa {
    height: 145%;
}

#equipe {
    background-color: #000;
    color: #fff;
}

#equipe article img {
    border-radius: 50%;
    border: 5px solid #ffce00;
}

.nome {
    font-family: roboto-black;
}

.cargo {
    font-family: roboto-thin;
    margin-bottom: 2%;
}

#equipe article a {
    color: #ccc;
    font-size: 20px;
    margin: 2%;
}

#equipe article a:hover {
    color: #ffce00;
}

#contato {
    padding-left: 2%;
    padding-right: 2%;
}

#contato article {
    width: 50%;
    float: left;
    margin-top: 2%;
    padding: 2%;
    height: 80%;
}

.campo {
    width: 100%;
    margin: 0.3%;
    padding: 2.1%;
    font-size: 16px;
    font-family: roboto-regular;
    resize: none;
}

.botao {
    margin: 0.3%;
    padding: 2%;
    width: 100%;
    border: 2px solid transparent;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-family: roboto-regular;
    cursor: pointer;
}

.botao:hover {
    border-color: #ffce00;
    background-color: transparent;
    color: #333;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 1%;
}