/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/* Corpo da página */
body {
    background-color: #f3f2ef;
    color: #333;
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    background: #283e4a;
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Perfil */
.profile {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.profile img {
    width: 150px;
    height: 220px;
    border-radius: 10%;
    border: 2px solid #283e4a;
}

.profile div {
    margin-left: 20px;
}

.profile h1 {
    color: #283e4a;
    margin-bottom: 10px;
}

.profile ul {
    list-style: none;
    padding: 0;
}

.profile li {
    margin-bottom: 5px;
}

/* Seções */
.section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.section .h2 {
    color: #283e4a;
    margin-bottom: 10px;
}
.section .h3 {
    font-size: 0.8rem; 
    color: red;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 15px;
    background: #283e4a;
    color: white;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile div {
        margin-left: 0;
    }
}
