.map{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    margin: 75px 10vw;
    background-color: #F7EEEB;
    padding: 35px 35px;
}

.h-map{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.img-map{
    width: 250px;
    height: auto;
    max-width: 90vw;
    max-height: 90vw;
    margin-right: 50px;
    margin-bottom: 30px;
}

.infos-map{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pname-map{
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.p-map{
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

.mid-map{
    width: 100%;
    height: 500px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 40px;
}

.mid-map iframe{
    width: 100%;
    height: 500px;
}

/*Aqui começa o codigo da pagina de presentes*/

.botoes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

.products{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;;
    margin-bottom: 75px;
    background-color: #fff;
    padding: 35px 35px;
    gap: 30px;
}

.product-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 220px;
    height: 415px;
    background-color: #F7EEEB;
    padding: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-infos{
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name{
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    max-width: 220px;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 2px;
}

.product-price{
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
    max-width: 220px;
    text-align: left;
}

.bnt-map{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


@media screen and (max-width: 840px) {
    .map{
        margin: 40px 10vw;
        padding: 40px 20px;
    }
    .h-map{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .img-map{
        width: 250px;
        height: auto;
        max-width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .pname-map{
        text-align: center;
    }
    .mid-map{
        height: 250px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .mid-map iframe{
        height: 250px;
    }

    .botoes{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        gap: 4px;
    }

    .products{
        padding: 35px 0px;
        gap: 20px;
    }

    .product-card{
        max-width: 180px;
        height: 380px;
    }

    .product-name{
        font-size: .9rem;
        font-weight: 500;
    }
    
    .product-price{
        font-family: 'Noto Sans', sans-serif;
        font-size: 1.5rem;
        color: #333;
        font-weight: 700;
        max-width: 220px;
        text-align: left;
    }

}

@media screen and (max-width: 400px){
    .products{
        padding: 35px 0px;
        gap: 15px;
    }

    .product-card{
        max-width: 160px;
        height: 340px;
    }

    .product-name{
        font-size: .9rem;
        font-weight: 500;
    }
    
    .product-price{
        font-family: 'Noto Sans', sans-serif;
        font-size: 1.5rem;
        color: #333;
        font-weight: 700;
        max-width: 220px;
        text-align: left;
    }
}