.espacamento {
    margin-top: 5rem;
}

.sombra-personalizada {
    box-shadow: 5px 6px 8px rgba(0, 0, 0, 0.356), 3px 3px 5px rgba(0, 0, 0, 0.356);
}

.product-item2 {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.432);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item2 a {
    text-decoration: none;
    color: black;
}

.product-item2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-item2 h4 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}


.description2 {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.description2 p {
    font-size: 12px;
    text-align: justify;
}

