/* ==========================================
   HEADER GERAL
========================================== */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#18191a;
    color:#e4e6eb;
    font-family:Arial, Helvetica, sans-serif;
}

.header-sec-one{
    width:100%;
    min-height:72px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    padding:0 28px;

    background:#18191a;
    border-bottom:1px solid #2f3033;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 1px 4px rgba(0,0,0,.35);
}

.header-part-one{
    flex:1;

    display:flex;
    align-items:center;

    min-width:0;
}

/* ==========================================
   RESPONSIVO TABLET
========================================== */

@media (max-width: 900px){

    .header-sec-one{
        gap:16px;
        padding:12px 18px;
    }

}

/* ==========================================
   RESPONSIVO MOBILE
========================================== */

@media (max-width: 576px){

    .header-sec-one{
        flex-direction:column;
        align-items:stretch;
        gap:14px;

        padding:14px 14px;
    }

    .header-part-one{
        width:100%;
        flex-direction:column;
        align-items:center;
    }

}