/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8; /* Fundo cinza claro moderno */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Cores da Marca */
:root {
    --nuvem-blue: #0078d4; /* Azul Nuvem Simples */
    --text-gray: #555;
}

/* Cabeçalho */
header {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo {
    max-width: 150px;
    height: auto;
    font-weight: bold;
    color: var(--nuvem-blue);
}

/* Conteúdo Principal */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.avatar-container {
    margin-bottom: 30px;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--nuvem-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #fff;
}

.halea-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--nuvem-blue);
}

.halea-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.6;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #e1e1e1;
}

footer a {
    color: var(--nuvem-blue);
    text-decoration: none;
    font-weight: 600;
}
