@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


.bg-inicial{
    width: 100%;
    height: 100vh;
    background-image: url('../src/itachiWall.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
}

.line-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 160px; */
     padding: 20px 300px;
}

.line-top img{
    width: 50px;
    height: auto;
}

.menu{
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 12px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.menu:hover{
    background-color: rgba(0, 0, 0, 0.5);
}

.top-content{
    font-family: 'Roboto';
    position: absolute;
    bottom: 100px;
    /* align-self: ; */
    justify-self: flex-end;
    /* left: 150px; */
    left: 300px;
    /* background-color: bisque; */
    width: 500px;
}



.top-content h1{
    font-family: 'Fira Sans';
    padding-bottom: 20px;
    color: #fff;
    font-size: 100px;
    text-transform: capitalize;

}

.top-content h3{
    color: #fff;
    text-shadow: 2px 2px 2px  #000;
    font-size: 40px;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.top-content button{
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 18px;
    background: linear-gradient(0deg, #E81E19, #C44351);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 1s;
   
}

.top-content button a{
    text-decoration: none;
    color: #fff;
}


.top-content button:hover{
    background: linear-gradient(0deg, #821413, #941927);
    border-radius: 7px;

}


.menu-lateral{
    position: fixed;
    z-index: 999;
    right: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* background-color: #821413; */
    background-color: rgba(22, 21, 21, 0.9);
    transition: .5s;
    padding: 200px 0;
    border-left: 1px solid #c9c9c9;

    /* padding: 50% 0px; */
}

.menu-lateral ul{
    list-style-type: none;
    height: 100%;
}


.menu-lateral ul li{
    text-transform: none;
    
    padding-bottom: 20px;
}

.menu-lateral ul li a{
    font-family: 'Roboto';
    font-weight: 600;
    text-decoration: none;

    font-size: 20px;
}


.menu-lateral ul li a:hover{
    color: #E81E19;
}

#xmenu{
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    cursor: pointer;
}


#xmenu:hover{
    color: #E81E19;
}



@media screen and (max-width: 1550px){
        
    .line-top{
        padding: 20px 150px;
    }

        

    .top-content{   
        bottom: 100px;
        left: 160px;
        width: 500px;
    }

}



@media screen and (max-width: 1150px){
    
    .line-top{
        padding: 20px 100px;
    }

        
    .top-content{
        left: 100px;
    }


    .top-content h1{
        font-size: 90px;
    }


}



@media screen and (max-width: 850px){

        

    .bg-inicial{
        background-image: url('../src/itachiWall_tablet.jpg');

    }

      
    .line-top{
        padding: 20px 60px;
    }

    .top-content{
        left: 60px;
        bottom: 50px;
    }

    .top-content h1{
        font-size: 70px;
        padding-bottom: 20px;
    }

        
    .top-content h3{
        font-size: 30px;
        text-transform: capitalize;
        padding-bottom: 30px;
    }


}



@media screen and (max-width: 600px){


      
    .line-top{
        padding: 20px 40px;
    }

        
    .top-content{
        left: 40px;
        justify-self: flex-end;
        width: 400px;
    }

    
    .top-content h1{
        font-size: 50px;
        padding-bottom: 20px;
    }

        
    .top-content h3{
        font-size: 22px;
        text-transform: capitalize;
        padding-bottom: 30px;
    }
}


@media screen and (max-width: 500px){
   
    .bg-inicial{
        background-image: url('../src/itachiWall_celular.jpg');
    }

    .line-top{
        padding: 20px 30px;
    }

     
    .top-content{
        left: 30px;
    }

    .top-content{
        width: 70%;
    }

}