/* estilo geral*/
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    background-color: #090909;
    height: 100vh;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}
.flex{
    display: flex;
    
}
.button-contact button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 700;
    background-color: purple;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}
.button-contact button:hover{
    box-shadow: 0px 0px 8px rgb(176, 10, 176);
    transform: scale(1.1);
}
h2.title{
    color: #fff;
    font-size: 40px;
    text-align: center;
}

/* estilo header*/
header{
    padding: 20px 4%;
}

header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

header a {
    display: inline-block;
    color: #696969;
    text-decoration: none;
    transition: .2s;;
}
header a:hover{
    color: white;
    transform: scale(1.1);
}

header nav ul{
    list-style-type: none;
}
header nav ul li{
    display: inline-block;
    padding: 0 30px;
}

section.top-web{
    padding: 40px 4%;
}
section.top-web .flex{
    align-items: center;
    justify-content: center;
    gap: 90px ;
}

.top-web h1{
    color: white;
    font-size: 38px;
    max-width: 600px;
    line-height: 40px;
}

.top-web .title-main h1 span{
    color: rgb(108, 2, 108);
    font-size: 40px;
}
.top-web .title-main p{
    color: #fff;
    margin: 40px 0;

}
/* 
.top-web .img-main{
    position: relative;
    animation: flutering 2s ease-in-out infinite alternate;
}
@keyframes flutering{
    0%{
        top: 0px;
    }
    100%{
        top: 25px;
    }
}
*/

/* estilo dos cardes de especialidades*/

section.specialties{
    padding: 40px 4%;
}
section.specialties .flex{
    gap:60px;
}


.specialties .card{
    color:#fff;
    padding: 40px;
    background-color: transparent;
    margin-top: 45px;
    border-radius: 16px;
    transition: 1s;

}
.specialties .card:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 8px #ffffff7d;
}
.specialties .card i {
    font-size: 70px;
    color: rgb(108, 2, 108);


}
.specialties .card h3{
    font-size: 26px;
    margin: 15px 0;

}
/* estilo sobre eu*/

section.about-me{
    padding: 40px 4%;
}
section.about-me .flex{
    align-items: center;
    gap: 60px;
}
.about-me .text-about{
    color:#fff;

}
.img-about{
    border-radius: 16px;
    box-shadow: 0px 0px 8px #ffffff7d;
}
.about-me .text-about h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 30px;

}
.about-me .text-about h2 span{
    color: rgb(108, 2, 108);
    display: block;
}
.about-me .text-about p{
    margin: 20px 0;
    text-align: justify;
}
.button-social button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: rgb(108, 2, 108);
    font-size: 25px;
    cursor: pointer;
    margin: 0 10px;
}

/* estilo footer*/

footer{
    padding: 60px 4%;
    background-color: #11111121;

}

footer .flex{
    justify-content: space-between;

}
footer .line-footer{
    padding: 20px 0;
}
footer .line-footer p i{
    color: rgb(108, 2, 108);
    font-size: 25px;

}
footer .line-footer p{
    color: #fff;
}