/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 3 de set. de 2026, 11:10:06
    Author     : glaub
*/

.home-header {

    position: relative;

    width: 100%;

    background: var(--gradiente-azul);

    color: var(--cor-branco);

    padding:
        18px
        var(--app-padding)
        24px;

    border-radius:
        0
        0
        var(--radius-xxl)
        var(--radius-xxl);

    box-shadow: var(--sombra-azul);
}


.header-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
}


.brand-area {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.brand-logo {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cor-branco);

    padding: 3px;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.25);
}


.brand-logo img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.brand-name {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.brand-name strong {

    font-size: 18px;

    line-height: 1.1;

    font-weight: var(--peso-extra);

    white-space: nowrap;
}


.brand-name span {

    margin-top: 3px;

    font-size: 11px;

    opacity: 0.75;

    white-space: nowrap;
}


.header-actions {

    display: flex;

    align-items: center;

    gap: 8px;
}


.header-button {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    color: var(--cor-branco);

    font-size: 16px;

    cursor: pointer;
}

/* ====== SAUDAÇÃO ======= */

.welcome {

    margin-top: 22px;
}


.welcome small {

    display: block;

    font-size: 13px;

    opacity: 0.75;

    margin-bottom: 4px;
}


.welcome h1 {

    margin: 0;

    font-size: 25px;

    line-height: 1.15;

    font-weight: var(--peso-extra);
}


.welcome p {

    margin: 8px 0 0;

    font-size: 13px;

    line-height: 1.5;

    opacity: 0.82;

    max-width: 310px;
}
