/* Layout Base */
html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0A0A18;
    color: #E8E8FF;
}

.app-root {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 32px;
    box-sizing: border-box;
}

@media (max-width: 650px) {
    .app-root {
        zoom: calc(100vw / 650);
    }
}

.content-section {
    width: 650px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Adicione ou substitua estas classes no seu style.css */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    width: 100%;
}

.pix-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100px;
}

.lang-toggle {
    display: flex;
    align-self: flex-start;
    gap: 4px;
    background-color: #16162A;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #2A2A4A;
    height: fit-content;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #8888BB;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-btn.active {
    background-color: #7B3FF2;
    color: #FFFFFF;
}

.app-header {
    text-align: center;
}

/* Toolbar de Links (Compacta e à esquerda) */
.toolbar-line {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #16162A;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px dashed #4A4A6A;
    margin-bottom: 24px;
}

.link-item {
    color: #7B3FF2;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Cards de Projeto */
.project-card {
    display: block;
    background-color: #16162A;
    border-radius: 12px;
    border-left: 5px solid #4A4A6A;
    padding: 16px;
    margin-bottom: 12px;
    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;
}

.info-footer {
    margin-top: 32px;
    font-size: 13px;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
}