/* =========================================
   shared/css/portal.css
   (Itens exclusivos da página inicial)
   ========================================= */

/* Zoom Responsivo Específico do Portal */
@media (max-width: 650px) {
    .app-root {
        zoom: calc(100vw / 650);
    }
}

/* --- Perfil (Anya e Títulos) --- */
.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 30px;
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #FFD700;
    object-fit: cover;
}

.profile-info {
    text-align: left;
}

.profile-title {
    color: #FF5555;
    font-size: 32px;
    margin: 0;
    font-weight: bold;
}

.profile-subtitle {
    color: #E8E8FF;
    font-size: 18px;
    margin: 5px 0 0 0;
    font-weight: bold;
}

/* --- Cartões dos Projetos --- */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.project-card {
    display: block;
    background-color: #16162A;
    border-radius: 12px;
    border-left: 5px solid #4A4A6A;
    padding: 16px;
    text-decoration: none;
    color: #E8E8FF;
    transition: border-color 0.3s;
}

.project-card:hover {
    border-left-color: #7B3FF2;
}

.project-title {
    font-weight: bold;
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 6px;
}

.project-desc {
    font-size: 13px;
    color: #8888BB;
    margin: 0;
}

/* --- Barra de Contatos --- */
.contacts-bar {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contacts-bar a {
    color: #7B3FF2;
    text-decoration: underline;
    margin: 0 10px;
}