.material-header .mat-section {
    display: flex;
    margin: initial;
    padding: 15px 10px;
    justify-content: space-between;
    align-items: center;
}

.material-header .material-header__logo {
    width: 48px;
    height: 32px;
}

.material-header .material-header__logo img {
    width: 100%;
    height: auto;
    margin-top: 4px;
}

.material-header .material-header__menu-wrapper.show {
    display: flex;
    column-gap: 8px;
}

.material-header .material-header__menu-wrapper.hidden {
    display: none;
}

.material-header .material-header__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 8px;
    width: max-content;
    height: 32px;
    padding: 8px 12px 8px 8px;
    border: 1px solid #ff0033;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #ff0033;
    cursor: pointer;
}

.material-header .material-header__link img {
    width: 16px;
    height: 16px;
}

.material-header .material-header__link span {
    font-family: 'FiraSansBold', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.material-header .material-header__link.client {
    border: none;
    background-color: #A62828;
    color: #FFFFFF;
}

.material-header .material-header__link.btn-calc {
    align-items: center;
    padding: 8px 8px 8px 12px;
    border: none;
    color: #FFFFFF;
    background-color: #ff0033;
}

.material-header .material-header__link.btn-calc.hidden {
    display: none;
}

.material-header .material-header__link.btn-calc.show {
    display: flex;
}

.material-header .material-header__link.btn-calc sub {
    position: relative;
    top: -5px;
    left: 1px;
    font-size: 8px;
}

.material-header .material-header__link.btn-calc span {
    display: flex;
    align-items: center;
    font-family: 'FiraSansMedium', sans-serif;
    font-size: 13px;
    font-style: normal;
    line-height: unset;
}

.material-header .material-header__link.btn-calc:hover,
.material-header .material-header__link.btn-calc:active {
    border: 1px solid #A62828;
    background-color: #A62828;
}

.material-header .material-header__link.btn-calc:focus {
    box-shadow: 0px 0px 8px 0px rgba(255, 0, 51, 0.50);
    background-color: #A62828;
    outline: none;
}

.material-header .material-header__link.phone:hover {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20);
    background-color: #FFC0C0;
}

.material-header .material-header__link.phone:focus {
    outline: none;
    box-shadow: 0px 0px 8px 0px rgba(255, 0, 51, 0.50);
    background-color: #FFC0C0;
}

.material-header .material-header__link.phone:active {
    outline: none;
    border: 1px solid #A62828;
    color: #A62828;
    background-color: #FFC0C0;
}

.material-header .material-header__link.phone:active svg path {
    stroke: #A62828;
}

.material-header .material-header__sd.mobile {
    display: block;
    width: 100%;
    padding: 18px 20px;
}

.material-header .material-header__sd.desktop {
    display: none
}

.material-header .material-header__sd-title {
    text-align: center;
    font-family: 'FiraSansBold', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #313131;
}

header .header-wrapper {
    width: 100%;
}

.font-cliente {
    font-size: 16px;
}

.font-titulo-cliente{
    color: #ff0033;
    font-size: 24px;
}

/*@media (min-width: 768px) {*/
@media (min-width: 768px) {
    .material-header .mat-section {
        margin: 0 auto;
        padding: 16px 20px;
        column-gap: 32px;
    }

    .material-header .material-header__wrapper-sd {
        margin-left: 45%;
    }

    .material-header .material-header__logo {
        width: 100px;
        height: auto;
    }

    .material-header .material-header__sd-title {
        font-size: 26px;
        line-height: 32px;
    }

    .material-header .material-header__link {
        height: 40px;
        padding: 8px 16px 8px 12px;
    }

    .material-header .material-header__link span {
        font-size: 16px;
    }

    .material-header .material-header__link.btn-calc {
        height: 48px;
        padding: 12px 24px 12px 32px;
        gap: 8px;
        border-radius: 32px;
    }

    .material-header .material-header__link.btn-calc span {
        font-size: 20px;
        line-height: 24px;
    }

    .material-header .material-header__link.btn-calc sub {
        top: -7px;
        left: 0;
        font-size: 12px;
    }

    .material-header .material-header__link.btn-calc img {
        width: 24px;
        height: 24px;
    }

    .material-header .material-header__sd.mobile {
        display: none;
    }

    .material-header .material-header__sd.desktop {
        display: none;
        width: auto;
        margin-top: initial;
        padding: 0;
        background-color: #FFFFFF;
    }

    header {
        height: 80px;
    }
}