.container-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    /* Limite de largura para telas grandes */
    margin: auto;
    /* Centraliza a container */
}

.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    width: calc(25% - 40px);
    /* Ajusta a largura do produto */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    /* Efeito de hover */
    font-family: 'Oswald', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;

    /* Adições para alinhar o preço no fim */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Altura mínima opcional */
}

.product:hover {
    transform: scale(1.05);
    /* Aumenta um pouco ao passar o mouse */
    cursor: pointer;
}

.product img {
    max-width: 100%;
    height: auto;
}

.price {
    color: #145671;
    font-weight: bold;
    margin-top: auto; /* Isso faz o preço ir para o fim */
    font-family: 'Oswald', sans-serif;
    text-align: center;
}


/* Responsividade */
@media (max-width: 1024px) {
    .product {
        width: calc(33.33% - 40px);
        /* 3 produtos por linha */
    }
}

@media (max-width: 768px) {
    .product {
        width: calc(50% - 40px);
        /* 2 produtos por linha */
    }
}

@media (max-width: 480px) {
    .product {
        width: calc(100% - 40px);
        /* 1 produto por linha */
    }
}

.bokor-regular {
    font-family: "Bokor", system-ui;
    font-weight: 400;
    font-style: normal;
}




.ver-mais {

    border: 2px solid black;
    border-radius: 35px;
    color: black;
    background-color: white;
    width: 5vh;
    height: 5vh;
    margin: 0 auto;
}

.dropdown {
    position: absolute;
    display: inline-block;
}

.dropdown-child {
    display: none;

}

.dropdown:hover .dropdown-child {
    display: block;

}


.path-text {
    font-family: "Bokor", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #638592;
    font-size: 3vh;
    margin-left: 20%;
    position: absolute;
    margin-top: 1vh;

}