body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #FCE4EC;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color:#9f42bbab;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.8em;
}

header p {
    font-size: 1.2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #b35656;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

section {
    padding: 50px 0;
    border-bottom: 1px solid #e0e6ed;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    color: #333;
}

#sobre, #habilidades, #contato {
    background-color: #fff;
    margin: 20px auto;
    max-width: 960px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#projetos {
    background-color: #f9f9f9;
    margin: 20px auto;
    max-width: 960px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.projeto-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid #f5a623;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
}