body{
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header{
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 30px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
header:hover {
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
    transition-duration: 0.9s;

}
/* Menu de navegação */
.menu{
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo{
    font-size: 22px;
    font-weight: bold;
}

.menu-links{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu-links a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.menu-links a:hover{
    color: #bbbbbb;
}
/* Menu de navegação */
/*sobre mim */
#sobre_mim .cards-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    word-spacing: 3px;
}
#sobre_mim .sobre-card{
    background-color: #000000;
    color: #f4f4f4;
    padding: 20px;
    width: 30%;
    min-height: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}
#sobre_mim .sobre-card a{
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    padding: 8px 14px;
    border-radius: 6px;

}
#sobre_mim .sobre-card img{
    width: 30%;
    height: auto;
    border-radius: 10px;
    margin: 35px;
}

/* Seções */
section{
    padding: 20px;
    margin: 20px;
    background: white;
    border-radius: 8px;
    animation: fadeIn 1s ease;
}
section h2{
    text-align: center;
    margin-bottom: 25px;
}

section:hover {
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
    transition-duration: 0.9s;
}
section.skills-container{
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
}
section.skills{
    background: rgb(255, 255, 255);
    padding:40px;
    text-align:center;
}
/* Seções */

/* Habilidades */
.skills-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.skill-card{
background:rgb(0, 0, 0);
color: #f4f4f4;
padding:20px;
border-radius:10px;
width:220px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.skill-card h3{
margin-bottom:10px;
}
.skill-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-card li{
    margin: 6px 0;
}
section.contato{
    text-align:center;
}
/* Habilidades */
/* Projetos */

.projetos-container{
    background-color: #000000;
    color: #f4f4f4;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: #000000;
    width: 320px;
}
.projetos-container a{
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    padding: 8px 14px;
    border-radius: 6px;
}
.projetos-container a:hover{
    background-color: white;
    color: black;
}
/* Contato */
.contato .card{
    background: rgb(0, 0, 0);
    color: #f4f4f4;
    margin: auto;
    padding: 20px;
    width: 350px;
    min-height: 300px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card-link{
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    padding: 8px 14px;
    border-radius: 6px;
}

.card-link:hover{
    background-color: white;
    color: black;

}
.skill-card, .contato .card, .projetos-container{
    transition: 0.3s;
}

.skill-card:hover, .contato .card:hover, .projetos-container:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.menu-links a{
    transition: 0.3s;
}

.menu-links a:hover{
    color: #bbbbbb;
}
/* Contato */

/* Rodapé */
footer{
    text-align: center;
    padding: 15px;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
