body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #74b4eb, #acb6e5);
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1b;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.326);
}

.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
}

h1 {
    margin: 10px 0;
    font-size: 28px;
}

p {
    font-size: 18px;
}

section {
    margin: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

section:hover {
    transform: scale(1.02);
}

h2 {
    cursor: pointer;
    background: #555;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

h2:hover {
    background: #333;
}

.content {
    display: none;
    padding: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
