body{
    background-image: url("./bg_body.jpg");
    background-position: center;
    background-size: cover;

    background-color: #1f1f1f;
    font-family: "Roboto", sans-serif;
    background-attachment: fixed;
}

.header-logo{
    max-width: 300px;
}

header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 30px;
}

main{
    display: block;
    unicode-bidi: isolate;
}
/* .menu{
    display: flex;
    justify-content: ;
} */

.nav_menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.menu_item{
    font-size: 1.1rem;
    transition: 0,2 ease-in-out;
}

.menu_item:hover{
    color:#a5a5a5;
    text-decoration:underline;
}


.home{
    /* background-image:url("./leo_sobre_img.png"); */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: -5;
}

/* .teste{
    filter: blur(6px);
    z-index: -2;
    background-color: #ffffff80;
    height: 44vh;
    width: 500px;
    border-radius: 100px;
    position: absolute;
} */

.home-perfil{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    padding: 40px;

    margin-top: 50px;
    border-radius: 100px;
    display: flex;
    
    background-color: #141414ce;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    z-index: 99;
}


.img_perfil{
    max-width: 400px;
    border-radius: 150%;
    border: 3px solid rgb(168, 168, 168);
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
}

.nome_perfil{
    font-size: 50px;
    color: white;
}

.profissao{
    font-size: 25px;
    color: #a5a5a5;
}

.sobre{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap:80px;
    max-width: 100vw;
    padding: 100px;
    /* margin: 0 auto; */

    color: white;
    border-top: 2px #6e0b0b solid;
    border-bottom: 2px #6e0b0b solid;
    background-color: #1f1f1f;
}

.sobre_img{
    max-width: 400px;
    border-radius: 30px;
}

.services{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 0 30px;
    gap: 20px;

    color: white;
}

.services_title{
    font-size: large;
}
.service_box{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;

    border-radius: 20px;
    gap:15px;
}

.service_item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    background-color: #1f1f1f;
    padding: 50px;
    gap: 20px;
    border: 2px #6e0b0b solid;
    border-radius: 20px;
    
}

footer{
    height: 20vh;
    display:flex;
    justify-content: center;
    text-align: center;
    padding: 30px;

    background-color: black;
    color:white;
}