/* Estilos customizados herdados e adaptados */
:root {
    --cor-dark-bg: #0D0D0D;
    --cor-green-darker: #28B40F;
    --cor-text-dark: #0D0D0D;
    --cor-light-text: #E0E0E0;
}
body { 
    font-family: 'Inter', sans-serif; 
    /* Adicionando imagem de fundo com overlay escuro para legibilidade */
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.85)), url('../img/bg-header.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--cor-light-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.link-container {
    max-width: 680px;
    width: 100%;
}
.profile-header {
    padding: 2rem 0;
}
.profile-logo {
    width: 120px;
    height: 120px;
    background-color: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--cor-green-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}
.profile-title {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}
.profile-subtitle {
    color: #ccc; /* Cor do subtítulo mais visível */
    font-size: 1rem;
}
.btn-link-custom {
    background-color: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(5px);
    color: var(--cor-light-text);
    border: 2px solid #333;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-link-custom:hover {
    background-color: var(--cor-green-darker);
    border-color: var(--cor-green-darker);
    color: var(--cor-dark-bg);
    transform: scale(1.02);
}
.btn-link-custom i {
    font-size: 1.5rem;
    margin-right: 1rem;
}
.footer-legal {
    background-color: transparent;
    color: #888;
}