.cabecaForno > h1 {
    color: white;
}
.cabecaForno {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    height: 200px;
}
.cabecaForno > img {
    height: 50%;
}

.FornoConteiner {
    width: 100%;
    max-width: 1500px;
    margin-bottom: 0px;
}
.ScrollForno {
    background-color: rgb(0, 0, 0);

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.BlocoBurguer {
    height: 400px;
    width: 290px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-flow: column nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 10px;
    max-width: 290px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
}
.BlocoBurguer:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}
.InfoBurguer {
    height: 45%;
    background-color: transparent;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 15px;
    padding-top: 15px;
    font-weight: 600;
    z-index: 1;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


.BlocoBurguer:hover .InfoBurguer {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    color: rgb(0, 0, 0);
}

.promocionalBurguer {
    height: 55%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: transparent;
    border-radius: 0px;
    z-index: 1;
}


/* Fundo absoluto em relação ao .BlocoBurguer para expandir e preencher todo o card no hover */
.fundo {
    background-color: yellow;
    width: 85%;
    height: 55%;
    border-top-left-radius: 130.5px;
    border-top-right-radius: 130.5px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.3s ease;
    z-index: 0;
}
.BlocoBurguer:hover .fundo {
    transform: translateX(-50%) scale(3.4);
}
.BlocoBurguer:hover .promocionalBurguer > img {
    transform: translateX(10px) translateY(-5px) scale(1.06);
}
.promocionalBurguer > img {
    position: absolute;
    width: 23%;
    max-width: 250px;
    min-width: 200px;
    transform: translateX(10px) translateY(35px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.promocionalBurguer > img.SoBurguer {
    transform: translateX(0px) translateY(35px);
}

.BlocoBurguer:hover .promocionalBurguer > img.SoBurguer {
    transform: translateX(0px) translateY(-5px) scale(1.06);
}