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

*{
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
}

body, html{
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #666;
}
header{
    width: 100%;
    height: 100%;
    background-image: url("../imagens/intro-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.titulo{
    color: #fff;
    font-size: 46px;
    font-weight: bold;
    padding-left: 2%;
    padding-top: 8%;
}
.subtitulo{
    color: #fff;
    padding-left: 2%;
    font-weight: lighter;
    font-size: 19px;
}
nav{
    width: 100%;
    height: 60px;
    background-color: #333;
    text-align: center;
    margin-top: -60px;
}
nav a{
    color: #fff;
    display: inline-block;
    padding: 20px;
    width: 180px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
nav a::after{
    content: "";
    width: 100%;
    height: 0;
    background-color: #4CA3D4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.4s;
}
nav a:hover::after{
    height: 100%;
}
nav a:hover{
    color: #333;
}
section{
    width: 100%;
    height: 100%;
}
.titulogeral{
    text-align: center;
    padding-top: 5%;
    width: 20%;
    margin: 0 auto 2%;
    border-bottom: 2px solid #666;
}
#sobre img{
    border-radius: 50%;
    margin: auto;
    display: block;
}
#sobre p{
    width: 70%;
    text-align: justify;
    margin: 2% auto;
    line-height: 20px;
}
.fixamenu{
    position: fixed;
    top: 0;
    margin-top: 0;
}
#habilidades{
    background-image: url("../imagens/surf3.jpg");
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
}
.textohtml, .textocss, .textojquery, .textofront, .textophoto, .textoillustrator{
    width: 140px;
    float: left;
    margin-left: 10%;
    padding: 1%;
    text-align: right;
    margin-bottom: 10px;
}
.html, .css, .jquery, .front, .photoshop, .illustrator{
    width: 0;
    padding: 1% 0;
    background-color: #4CA3D4;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    overflow: hidden;
    transition: 0.5s;
}
.animahtml{
    width: 35%;
    padding: 1%;
    transition-delay: 0.1s;
}
.animacss{
    width: 33%;
    padding: 1%;
    transition-delay: 0.2s;
}
.animajquery{
    width: 36%;
    padding: 1%;
    transition-delay: 0.3s;
}
.animafront{
    width: 34%;
    padding: 1%;
    transition-delay: 0.4s;
}
.animaphoto{
    width: 30%;
    padding: 1%;
    transition-delay: 0.5s;
}
.animaillustrator{
    width: 32%;
    padding: 1%;
    transition-delay: 0.6s;
}
#habilidades h2{
    margin-bottom: 6%;
}
.galeria{
    width: 90%;
    margin: auto;
}
.galeria img{
    width: 100%;
}
.slick-prev::before, .slick-next::before{
    color: #333 !important;
}
#portfolio h2{
    margin-bottom: 8%;
}
#contato{
    background-color: #000;
    color: #fff;
}
#contato article{
    width: 50%;
    float: left;
    padding: 2%;
    height: 80%;
}
.campo{
    width: 100%;
    border: none;
    padding: 16px;
    margin: 2px 0;
    resize: none;
    font: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.botao{
    width: 100%;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
}
.botao:hover{
    border-color: #ffcc00;
    background-color: transparent;
    color: #ffcc00;
    border-radius: 20px;
    font-weight: bold;
}
footer{
    background-color: #333;
    color: #DDD;
    padding: 1%;
    text-align: center;
    font-size: 12px;
}
footer a{
    color: #999;
    padding: 5px;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 10px;
}
footer a:hover{
    color: #fff;
}
footer p{
    border-top: 1px solid #999;
    padding: 5px;
}