/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CORPO DO SITE */
body{
    background: red;
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* CABEÇALHO */
header{
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6a00ff, #00bfff);
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
}

header h1{
    font-size: 3rem;
    margin-bottom: 10px;
}

header p{
    font-size: 1.2rem;
    opacity: 0.9;
}

/* SEÇÕES */
section{
    width: 90%;
    max-width: 1100px;

    margin: 40px auto;

    background-color: #1f1f1f;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
}

/* TITULOS */
h2{
    color: #00bfff;

    margin-bottom: 20px;

    font-size: 2rem;

    border-left: 5px solid #6a00ff;

    padding-left: 10px;
}

/* TEXTO */
p{
    font-size: 1rem;
}

/* LISTA DE HABILIDADES */
ul{
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    list-style: none;
}

ul li{
    background-color: #2d2d2d;

    padding: 12px 20px;

    border-radius: 12px;

    transition: 0.3s;
}

/* EFEITO AO PASSAR O MOUSE */
ul li:hover{
    background-color: #6a00ff;

    transform: scale(1.05);
}

/* PROJETOS */
.projeto{
    background: #2b2b2b;

    padding: 20px;

    border-radius: 15px;

    margin-top: 20px;

    transition: 0.3s;
}

/* EFEITO NOS PROJETOS */
.projeto:hover{
    transform: translateY(-5px);

    background: #353535;
}

/* TITULO DOS PROJETOS */
.projeto h3{
    color: #00ffcc;

    margin-bottom: 10px;
}

/* CONTATO */
section:last-child p{
    margin-top: 10px;
}

/* RESPONSIVIDADE PARA CELULAR */
@media(max-width: 768px){

    header{
        padding: 40px 15px;
    }

    header h1{
        font-size: 2rem;
    }

    header p{
        font-size: 1rem;
    }

    section{
        width: 95%;

        padding: 20px;
    }

    h2{
        font-size: 1.5rem;
    }

    ul{
        gap: 10px;
    }

    ul li{
        width: 100%;

        text-align: center;
    }

    .projeto{
        padding: 15px;
    }
}
