body {
    background-color: #f6f7f8;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
    background-image: url(../imagens/imgs/bg.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 420px;
}
#div-header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#div-header img {
    width: 128px ;
    height: 128px ;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
#div-header img:hover {
    scale: 1.05;
    transition: 0.5;
}
#div-header h1 {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    margin-top: 20px;
}
#span1 {
    color: white;
}
#span2 {
    background-color: rgb(25, 192, 25);
    padding: 4px 16px 4px 16px;
    border-radius: 5px;
    color: white;
    margin-top: 20px;
}
main {
    display: grid;
    grid-column: 1;
    gap: 10px;
    margin: auto;
    max-width: 1280px;
}
@media (min-width: 768px) {
    main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 900px) {
    main {
        max-width: 1000px;
        gap: 40px;
    }
}
section {
    display: grid;
    grid-column: 1;
    gap: 10px;
    margin: auto;
    max-width: 1280px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 900px) {
    section {
        max-width: 1000px;
        gap: 40px;
    }
    p {
        font-size: 20px;
    }
}
h2 {
    text-align: center;
}
@media (min-width: 750px) {
    h2 {
        font-size: 40px;
    }
}
p {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 5px;
}
.produtos {
    display: flex;
    gap: 5px;
    margin: 0 10px 20px 10px ;
}
.produtos img {
    width: 80px ;
    height: 80px;
    border-radius: 5px;
}
.produtos img:hover {
    scale: 1.05;
    transition: 0.5;
    transition-duration: 0.4s;
    transform: rotate(-2deg);
}
.pd-titulo {
    font-weight: bold;
    font-size: 14px;
}
.pd-paragrafo {
    font-size: 12px;
}
.preco {
    font-size: 14px;
    font-weight: bold;
}
.add-to-cart-btn{
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.904);
    border-radius: 5px;
    padding: 0 7px 0 7px;
}
button {
    border: none;
}
.preco-btn-add {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer {
    text-align: center;
    background-color: red;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
#cart-btn {
    background-color: red;
    color: white;
    padding: 5px;
    font-weight: bold;
    gap: 2px;
    font-size: 17px;
}
#cart-modal {
    background-color: rgba(0, 0, 0, 0.644);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    align-items: center;
    justify-content: center;
}
#modal {
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    min-width: 90%;
}
#modal h2 {
    font-size: 20px;
}
@media (min-width: 768px) {
    #modal {
        min-width: 600px;
    }
}
#cart-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#total {
    font-weight: bold;
}
#endereco {
    font-weight: bold;
}
input {
    width: 98%;
    border-radius: 5px;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.329);
    text-align: center;
    margin: 3px;
    height: 30px;
}
#address-warn {
    color: red;
    margin-left: 10px;
    display: none;
}
#checkout-btn {
    background-color: rgb(19, 209, 19);
    color: white;
    padding: 4px;
    border-radius: 4px;
}
.address-warn-js {
    display: flex;
}
#botoes {
    display: flex;
    justify-content: space-between;
    margin: 5px;
}
.style-pedido {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin: 5;
    flex-direction: column;
}
.style-js-titulo {
    font-weight: bold;
}
.style-js-pd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.style-js-paragrafo {
   color: rgba(0, 0, 0, 0.712);
}