@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Open+Sans:wght@600&display=swap');

:root {
    --red: #BC0000;
    --yellow: #E3A01D;
    --white: #F0F0F0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Baloo 2', sans-serif;
}

body {
    background-image: url(../../assets/svg/background-pattern.svg);
    background-repeat: repeat;
}

.header-container {
    width: 100%;
    height: 65px;
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 10px white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    position: fixed;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 8px 0 28px 0;
    color: var(--white);
}

.products-container {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 70px;
}

.type-of-product .line {
    height: 2px;
    width: 300px;
    background-color: var(--white);
}

.salgados {
    background-color: #BC0000;
    width: 320px;
    height: 162px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 10px white;
}

.image-product {
    width: 125px;
    height: 162px;
}

.infor-product {
    width: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.name-and-price {
    text-align: center;
    line-height: 20px;
}

.name-and-price h3 {
    font-size: 28px;
    color: var(--yellow);
}

.name-and-price p {
    font-size: 15px;
    font-weight: bold;
}

.infor-product ul {
    list-style-type: disc;
    color: var(--white);
    font-size: 13px;
    margin-left: 10px;
}

#btn-pedir-salgado {
    width: 145px;
    height: 32px;
    background-color: var(--yellow);
    color: var(--white);
    outline: 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

#btn-pedir-salgado:hover {
    opacity: .9;
}

#fade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
}

#modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 180px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

#modal p {
    color: black;
    text-align: center;
    font-weight: 600;
}

.btns-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-prosseguir,
#btn-cancel {
    width: 120px;
    height: 40px;
    outline: 0;
    border: none;
    border-radius: 30px;
    color: var(--white);
    cursor: pointer;
}

#btn-cancel {
    background-color: var(--red);
}

#btn-cancel:hover {
    opacity: .8;
}

.btn-prosseguir {
    background-color: var(--yellow);
}

.btn-prosseguir:hover {
    opacity: .9;
}