
/* Estilo Geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;

}

body{
    background-color: #030000fd;
    height: 100px;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.flex{
    display: flex;
}

.btn-contato button{
    padding: 10px 20px;
    font-size: 18;
    font-weight: 700;
    background-color: rgb(84, 84, 255);
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .15s;
}

button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 8px #0990ff;
    transform: scale(1.02);
}

h2.titulo{
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    
}


h2.titulo span{
    color: rgb(84, 84, 255);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

.img-topo-site img,.img-sobre img {
    border-radius: 15px;
}

/* Estilo Header */
header{
    padding: 40px 4%;
}

header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between
}

header a{
    color: rgb(84, 84, 255);
    text-decoration: none;
    display: inline-block;
    transition: .15s;
}

header a:hover{
    color: #fff;
    transform: scale(1.03);
}


header nav ul{
    list-style-type: none;
}

header nav ul li{
    display: inline-block;
    padding: 0 40px;
}

.logo img{
    width: 200px;
    height: auto;
}

/* Estilo do Topo do Site */

section.topo-do-site{
    padding: 40px 4%;

}

section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1{
    color: #fff;
    font-size: 35px;
}

.topo-do-site p{
    color: #fff;
    margin: 40px 0;
    font-size: 18px;
}

.topo-do-site .img-topo-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}

@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
    
}

/* Estilo Habilidades */

section.Habilidades{
    padding: 40px 4%;
    margin-top: 170px;
}

section.Habilidades .flex{
    gap: 15px;
}

.Habilidades .habilidades-box{
    color: #fff;
    padding: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    margin-top: 45px;
    transition: .15s;
}

.Habilidades .habilidades-box:hover{
    transform: scale(1.02);
    box-shadow: 0 0 8px #fff;

}

.Habilidades .habilidades-box i{
    font-size: 70px;
    color: rgb(84, 84, 255);
}

.Habilidades .habilidades-box h3{
    font-size: 25px;
    margin: 15px 0;

}

/* Estilo do Sobre */

section.sobre{
    padding: 40px 4%;
}

section.sobre .flex{
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre{
    color: #fff;

}

.sobre .txt-sobre h2{
    font-size: 45px;
}

.sobre .txt-sobre h2 span{
    color: rgb(84, 84, 255);
}

.sobre .txt-sobre p{
    font-size: 18px;
    margin: 20px 0px;
    text-align: justify;
}

.sobre .img-sobre{
    margin-top: 230px;
}

.btn-social button{
    width: 55px;
    height: 55px;
    border-radius: 30px;
    background-color: rgb(84, 84, 255);
    font-size: 25px;
    cursor: pointer;
    margin: 0px 5px;
    transition: .15s;
}

/* Estilo do Formulário */

section.formulario{
    padding: 150px 4%;
}

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input, form textarea{
    width: 100%;
    background-color: #29272748;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 15px;
}

form textarea{
    resize: none;
    max-height: 200px;
}

form input::placeholder, form textarea::placeholder{
    color: rgb(84, 84, 255);
}

form .btn-enviar{
    margin-top: 15px;
    text-align: center;
}

form .btn-enviar input{
    width: 120px;
    color: rgb(84, 84, 255);
    cursor: pointer;
    transition: .15s;
}

/* Estilo do Rodapé */

footer{
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px #0990ff36;
}

footer .flex{
    justify-content: space-between;
}

footer .line-footer p i{
    color: rgb(84, 84, 255);
    font-size: 40px;
}

footer .line-footer p a{
    color: rgb(84, 84, 255);
}

footer .line-footer p{
    color: #fff;
}

@media screen and (max-width: 1020px){
    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .flex{
        flex-direction: column;
    }

    .menu-desktop, .btn-contato{
        display: none;
    }
    
}
