body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f9f9f9;
    color: #333;
}

header {
    background: linear-gradient(135deg, #34d399, #ec4899);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

header h1 {
    font-size: 42px;
    margin-top: 20px;
}

header p {
    font-size: 18px;
    margin-top: 8px;
}

.conteudo {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
}

.secao {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #ec4899;
}

.secao h2 {
    margin-top: 0;
    color: #ec4899;
}

.lista {
    list-style: none;
    padding-left: 0;
}

.lista li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.botao {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 14px 30px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #34d399, #ec4899);
    border-radius: 12px;
    transition: 0.3s;
    font-weight: bold;
}

.botao:hover {
    transform: scale(1.08);
}

footer {
    text-align: center;
    padding: 30px;
    color: #777;
}