/* Estilos Gerais */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Cabeçalho com Foto e Títulos */
header {
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #f0a500;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.4);
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.subheadline {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-top: 10px;
}

/* Botões de Link (CTA) */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre os botões */
}

.link-button {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    transition: transform 0.2s, background-color 0.2s;
    border: 2px solid #444444;
}

.link-button:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    background-color: #f0a500;
    color: #121212;
    border-color: #f0a500;
}

/* Rodapé */
footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777777;
}