body {
   
    font-family: "poppins", sans-serif;
    margin: 0 auto;
    max-width: 1120px;
    background: linear-gradient(150deg, 
    #000000, #9e00ff);
    background-size: 120% 120%;
}

html {
    color: white;
    scroll-behavior: smooth;
}

.cabecalho {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
}

.cabecalho .logo {
    
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid white;
    text-align: center;
    text-decoration: underline;
    line-height: 55px;

    font-family: "Raleway" sans-serif;
    transition: 0.2s;

}

.cabecalho a:hover .logo {
    color: blueviolet;
    border: 2px solid blueviolet;

}

.cabecalho .menu li a {
    font-size: 20px;
    text-transform: capitalize;
    padding: 10px 20px;
}

.cabecalho .menu li a:hover {
    background-color: blueviolet;
    color: white;
    border-radius: 50px;
    transition: 0.2s;

}

.home {
   
    display: flex;
    min-height: calc(100vh - 125px);
    align-items: center;
    gap: 50px;
    justify-content: space-between;

}

.home .informacoes {
   
    display: flex;
    flex-direction: column;
    gap: 15px;
    letter-spacing: 2px;
    padding: 0 15px;
    max-width: 50%;
}

.home .informacoes h1 {
    font-family: "Raleway", sans-serif;
    font-size: 45px;
    margin-bottom: 20px;

}

.home .informacoes p {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}
.paragrafo1, .paragrafo2 {
    margin: 0 auto;
    display: flex;
    width: 70rem;
}

.home .redes-sociais {
   
    display: flex;
    gap: 20px;

}

.home .redes-sociais a i {
    border: solid 1px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    padding: 12px;
    text-align: center;
    font-size: 26px;
    transition: 0, 3s;
}

.home .redes-sociais a i:hover {
    color: blueviolet;
    border: solid blueviolet;
    transform: scale(1.2);
}

.home .container-foto .foto {

    margin-bottom: 250px;
    background:
        linear-gradient(to right,
            #8a35c8,
            #18c063,
            #00eea2);
    max-width: 450px;
    border-radius: 50%;
    background-size: 180% 180%;
    animation: gradient-animation 5s ease infinite;
}


.home .container-foto img {
      
   /*tamanho da foto 460x460 */
    width: 100%;
    border-radius: 50%;

}



.projetos {
   
    padding: 70px 0 70px;

}

.projetos .titulo {
    text-align: center;
    padding: 20px;
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
}

.descricao {
    text-align: center;
    margin-top: 1px;
    margin-bottom: 30px;
}

.projetos .container-projetos {
   
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.projetos .projeto {
    max-width: 260px;
    max-height: 500px;
    position: relative;
    display: none;
    

}

img {
    
    width: 300px;
}

.projetos .projeto.ativo {
    display: block;
}

.projetos .projeto img {
    height: 100%;
    border-radius: 15px;
}

.projetos .projeto h3 {
    background-color: #040203;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 15px 15px;
    
}

.projetos .projeto .informacoes-projeto {
    background-color: #040203;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    font-weight: 600;
    opacity: 0;
    transition: 0.3s;
    padding: 20px;
    
}

.projetos .container-projetos .projeto:hover .informacoes-projeto {
    opacity: 0.7;
    background-color:rgba(0, 0, 0, 0.993);
    border-radius: 15px;
}
.projetos  .btn-mostrar-projetos{
    background: none;
    border: 1px solid white;
    border-radius: 15px;
    color: white;
    width: 180px;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    margin: 0% auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.projetos .btn-mostrar-projetos:hover{
    background-color: #9443d8;
    transition: 0.3s;
    
}
.projetos .btn-mostrar-projetos.remover{
    display: none;

}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }

}

/* botao mostra menos */

.projetos .btn-esconder-projetos {
    background: none;
    border: 1px solid white;
    border-radius: 15px;
    color: white;
    width: 180px;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    margin: 0% auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.projetos .btn-esconder-projetos:hover {
    background-color: #9443d8;
    transition: 0.3s;
}

.projetos .btn-esconder-projetos.remover {
    display: none;
}