/**
 * Alinhamento do menu pushy (mobile): coluna fixa para ícone + rótulo alinhado.
 * Incluir após sass.css nas páginas que usam este markup.
 */
.pushy .pushy-content {
    box-sizing: border-box;
}

.pushy .pushy-nav-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    min-height: 46px;
    color: #fff;
    text-decoration: none;
}

.pushy .pushy-nav-row:hover {
    color: #fff;
}

.pushy .pushy-nav-icon {
    flex: 0 0 36px;
    width: 36px;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.pushy .pushy-nav-icon svg {
    display: block;
    max-width: 28px;
    height: auto;
}

.pushy .pushy-nav-icon img {
    display: block;
    max-width: 28px;
    height: auto;
}

.pushy .pushy-nav-label {
    flex: 1 1 auto;
    text-align: left;
    font-size: 0.925em;
    line-height: 1.25;
}

.pushy .pushy-link > a.pushy-nav-row {
    padding: 12px 15px;
}

.pushy li.pushy-welcome {
    text-align: left;
}

/* Saudação: alinhada à esquerda (como o restante do drawer), sem coluna de ícone vazia */
.pushy .pushy-welcome .pushy-nav-row.pushy-welcome-row {
    cursor: default;
    padding-top: 14px;
    padding-bottom: 14px;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    /* Evita texto por baixo do botão fechar (absolute no .pushy-content) */
    padding-right: 52px;
}

.pushy .pushy-welcome .pushy-welcome-text {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    text-align: left;
}

.pushy .pushy-idioma {
    padding: 8px 0 20px;
    border-top: 1px solid #222;
    margin-top: 4px;
}

.pushy .pushy-idioma-title {
    font-size: 14px;
    color: var(--primary-color, #C22A1E);
    padding: 18px 15px 8px;
    margin: 0;
    font-weight: 600;
}

.pushy .pushy-idioma .pushy-nav-row {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pushy .pushy-idioma .idioma-link.active,
.pushy .pushy-idioma .idioma-link.active .pushy-nav-label {
    color: var(--primary-color, #C22A1E);
}

/* Sobrescreve padding genérico de .pushy a quando usa .pushy-nav-row */
.pushy .pushy-link > a.pushy-nav-row {
    font-weight: normal;
}

/**
 * sass.css define .pushy a span como bolinhas 8×8 — ícone/label precisam desta
 * especificidade maior para não “encolher” o texto do menu.
 */
.pushy a.pushy-nav-row > .pushy-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    min-height: 22px;
    height: auto;
    border-radius: 0;
    background: transparent;
    margin-right: 10px;
}

.pushy a.pushy-nav-row > .pushy-nav-label {
    display: block;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    margin-right: 0;
}
