/* FONT-FACE */

/* Raleway */

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Raleway Medium'),
        local('Raleway-Medium'),
        url('../fonts/Raleway-Medium.woff2') format('woff2'),
        url('../fonts/Raleway-Medium.woff') format('woff'),
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Raleway ExtraBold'),
        local('Raleway-ExtraBold'),
        url('../fonts/Raleway-ExtraBold.woff2') format('woff2'),
        url('../fonts/Raleway-ExtraBold.woff') format('woff'),
}

/* Pluto Sans */

@font-face {
    font-family: "Pluto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Pluto Sans Regular'),
        local('PlutoSans-Regular'),
        url('../fonts/PlutoSans-Regular.woff2') format('woff2'),
        url('../fonts/PlutoSans-Regular.woff') format('woff');
}

@font-face {
    font-family: "Pluto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Pluto Sans Bold'),
        local('PlutoSans-Bold'),
        url('../fonts/PlutoSans-Bold.woff2') format('woff2'),
        url('../fonts/PlutoSans-Bold.woff') format('woff');
}


/* RESET E GERAL */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-banner-vic {
    display: flex;
    justify-content: space-between;
    background: url("../images/bg-black-friday-vic.png");
    width: 100%;
    height: 85px;
    background-size: contain;
    background-position: center right;
    padding: 0 70px;
    overflow: hidden;
}

.selo-blk {
    width: 141px;
    height: 130px;
    aspect-ratio: 141/130;
}

.chave-esquerda-img {
    width: 187px;
    height: 108px;
    flex-shrink: 0;
    aspect-ratio: 187/108;
}

.chave-direita-img {
    width: 147.116px;
    height: 84px;
    flex-shrink: 0;
    aspect-ratio: 147.12/84.00;
}

.conteudos-banner-black {
    display: flex;
    align-items: center;
}

.container-titulo {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-right: 55px;
}

.font-raleway {
    font-family: Raleway;
    font-size: 13.5px;
}

.container-titulo h2 {
    font-family: Raleway;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;
    /* 91.667% */
    letter-spacing: 2.4px;
    text-transform: uppercase;
    background: var(--KV-BLK-FRD, linear-gradient(97deg, #EA582B 6.2%, #F4C75A 44%, #A63D1D 98.08%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.texto-vic-engenharia {
    background: var(--KV-BLK-FRD, linear-gradient(97deg, #EA582B 6.2%, #F4C75A 44%, #A63D1D 98.08%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 3.24px;
    text-transform: uppercase;
    display: block;
}

.condicoes-blk-vic {
    display: flex;
    align-items: center;
    gap: 20px;
}

.condicoes-blk-vic h2 {
    color: var(--white, #FFFDFD);
    font-family: "Pluto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
}

.condicao-item {
    display: flex;
    flex-direction: column;
}

.texto-destaque-condicoes {
    text-align: center;
    font-family: "Pluto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 6.24px;
    text-transform: uppercase;
    background: var(--KV-BLK-FRD, linear-gradient(97deg, #EA582B 6.2%, #F4C75A 44%, #A63D1D 98.08%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.texto-normal-condicoes {
    display: block;
    color: var(--white, #FFFDFD);
    font-family: "Pluto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
}

.divisor {
    width: 1px;
    height: 43px;
    background: #FCED00;
}


/* RESPONSIVIDADE */

@media (max-width: 768px) {
    .container-banner-vic {
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: 210px;
    background: url("../images/bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.chave-esquerda, .chave-direita {
    display: none;
}

.conteudos-banner-black {
    flex-direction: column;
    margin-top: -20px;
}

.container-titulo {
    margin: 0;
    gap: 20px;
}

.condicoes-blk-vic h2, .texto-destaque-condicoes {
    font-size: 14px;
    letter-spacing: 0.42px;
}
}

/* header {
    margin-top: 85px; 
}

@media (max-width: 768px) {
    header {
        margin-top: 210px; 
    }
} */