.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
    background: var(--branco);
    border-bottom: 1px solid #E8EBEF;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1228px, calc(100% - 32px));
    min-height: 60px;
    margin: 0 auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo-header {
    display: block;
    width: auto;
    height: 30px;
}

.faixa-promo {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #000000;
    color: #FFFFFF;
    text-align: center;
    font-family: var(--fonte1);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

@media (max-width: 720px) {
    .header-container {
        width: min(100% - 20px, 1228px);
        min-height: 64px;
    }

    .logo-header {
        height: 30px;
    }

    .faixa-promo {
        min-height: 44px;
        font-size: 16px;
    }
}
