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


@supports(scroll-snap-type: both mandatory) {
    .no-support {
      display: none;
    }
  }
h1,h2,h3{
    text-align: center;
    font-family: 'Roboto';
    font-weight: bold;
}
p{
    font-family: 'Roboto';
    text-align: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
    text-decoration: 0;
    font-family: 'Nunito';
}
span{
    color: rebeccapurple;
    text-align: center;
}

p{
    text-align: center;
    color: white;
}
span{
    color: blue;
    text-align: center;
}
body{
}
.max-width{
    max-width: 1300px;
    padding: 0 0px;
    margin: auto;
}
/*MENU*/
.navigation {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 60px;
    background: white;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    transition: height 0.2s, width 0.2s;
    transition-delay: 0s, 0.55s;
    overflow: hidden;
    z-index: 999;
}
.navigation.active{
    width: 250px;
    height: 300px;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s,0.75s;
}
.navigation .userBx {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: 0.5s;
    transition-delay: 0.5s;
}
.navigation.active .userBx {
    width: calc(100% - 60px);
    transition-delay: 0s;
}
.navigation .userBx .username {
    white-space: nowrap;
    color: #555;
    font-size: 1.1em;
}
.navigation .userBx .imgBx{
    position: relative;
    min-width: 40px;
    height: 40px;
    overflow: hidden;
    background: black;
    border-radius: 50%;
    border: 10px solid white;
}
.navigation .userBx .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navigation .menuToggle{
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigation .menuToggle::before{
    content: '';
    position: absolute;
    width: 32px;
    height: 2px;
    background: #555;
    transform: translateY(-10px);
    box-shadow: 0 10px #555;
    transition: 0.5s;
}
.navigation .menuToggle::after{
    content: '';
    position: absolute;
    width: 32px;
    height: 2px;
    background: #555;
    transform: translateY(10px);
    transition: 0.5s;
}
.navigation.active .menuToggle::before{
    transform: translateY(0px) rotate(45deg);
    box-shadow: 0 0 #555;
}    
.navigation.active .menuToggle::after{
    transform: translateY(0px) rotate(-45deg);
}
.menu{
    position: absolute;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.menu li {
    list-style: none;
}
.menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 1em;
    text-decoration: none;
    color: #555;
}
.menu li a:hover {
    color: blue;
}
/*MENU*/
/*HOME*/
.home{
    display: flex;
    background-color: white;
    height: 500px;
}
.home .container {
    margin: 0px auto;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.home .container .home-container{
    padding: 100px 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.home .container .home-container h2{
    position: relative;
    top: 90px;
    text-align: center;
    font-size: 50px;
    margin: 0 0 50px 0;
    color: #020024;

}   
.home .container .home-container .perfil{
    width: 50%;
    position: relative;
    top: 70px;
}
.home .container .img{
    width: 50px 10px;
}
/*HOME*/
/*APRESENTAÇÃO*/
.apresentacao{
    background: linear-gradient(0deg, rgba(2,0,36,1) 2%, rgba(2,0,36,1) 12%, rgba(3,2,50,1) 21%, rgba(9,15,121,1) 37%, rgba(0,212,255,1) 100%);
}
.apresentacao .container {
    padding: 50px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.apresentacao .container .ola h2{
    font-size: 50px;
    margin-top: 20px;
    margin-bottom:10px ;
    color: white;
}
.apresentacao .container .ola p{
    text-align: center;
    color: white;
}
.apresentacao .container .box-container{
    width: 100%;
    display: flex;
    margin-top: 50px;
}
.apresentacao .container .box-container .column{
    background: rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 100px;

    display: flex;
    align-items: center;

    margin: 50px;
    padding: 50px;
    width: 100%;
}
.apresentacao .container .box-container .column .column-left{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid white;
}
.apresentacao .container .box-container .column .column-left h3{
    font-size: 40px;
}
.apresentacao .container .box-container .column .column-right{
    width: 50%;
    margin-left: 30px;
}
/*APRESENTAÇÃO*/
/*PROJETOS*/
.projetos{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #020024;
}
.projetos .container{
    margin: 0px 100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(255, 255, 255, 0.86);
    
}
.projetos .container .container-projetos .card-projetos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px;    
}
.projetos .container .container-projetos .card-projetos .card{
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(255, 255, 255, 0.684);
    margin: 20px 0px;
    padding-bottom: 20px;
    width: 500px;
}
.projetos .container .container-projetos .card-projetos .card .card-img{
    width: 100%;
    border-radius: 16px 16px 0px 0px;
}
.projetos .container .container-projetos .card-projetos .card .card-sobre{
    padding: 10px;
}
.projetos .container h2{
    padding-top: 50px;
    font-size: 50px;
}
.projetos .container .contato{
    flex-direction: column;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    align-items: center;
}
.projetos .container .contato button{
    width: 200px;
    font-size: 20px;
    padding: 30px;
    border-radius: 16px;
    margin-top: 50px;
    background: rgba( 255, 255, 255, 0.3 );
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    border: 1px solid rgba(255, 255, 255, 0.86);
    backdrop-filter: blur( 15px );
    -webkit-backdrop-filter: blur( 15px );
    color: #020024;
    font-weight: bold;
}
.projetos .container .contato button:hover{
    cursor: pointer;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(255, 255, 255, 0.86);
}
footer{
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #020024;
}
footer .icons{
    margin: 10px 0 10px 0;
}
footer .icons .bi{
    margin-left: 10px;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 600px) and (min-width: 360px) {
    h1{
        font-size: 20px;
    }
    h2,h3{
        font-size: 20px;
    }
    p{
        font-size: 15px;
    }
    .home{
        height: 500px;
    }
    .home .container .home-container .perfil{
        width: 85%;
        top: 100px;
        scroll-snap-stop: normal;
    }
    .home .container .home-container h3{
        position: relative;
        top: 20px 0px;
        font-size: 40px;
    }
    .apresentacao .container .ola{  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .apresentacao .container .ola h2{  
        font-size:29px;
        margin-bottom: 10px;
    }
    .apresentacao .container .box-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        margin: 70px 0px;
        width: 100vw;
    }
    .apresentacao .container .box-container .column{
        padding: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 20px 10px 30px;
    }
    .apresentacao .container .box-container .column .column-left{
        width: 100%;
        border-bottom: 1px solid white;
        border-right: none;
        margin-bottom: 20px;
        padding-bottom: 20px;
        width: 200px;
    }
    .apresentacao .container .box-container .column .column-right{
        width: 100%;
    }
    .projetos .container{
        margin: 0px 3px;
        width: 350px;
    }
    .projetos .container .contato h2{
        font-size: 25px;
    }
    .projetos .container .container-projetos .apresentacao-projetos{
        margin: 10px;
    }

}