.recipe-single-card {
    background-color: white;
    border-radius: 10px;
    display: inline-block;
    width: 310px;
    height: 258px;
    text-decoration: none;
    position: relative;
}

.recipe-single-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.recipe-single-card-header {
    text-align: center;
    padding: 15px 20px; /* Adiciona espaço interno */
}

.recipe-single-text-category {
    color: #707070;
    font-family: "space-grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.recipe-single-title {
    color: #094DA4;
    font-family: Lobster, sans-serif;
    font-size: 25px;
    font-weight: 400;
    margin: 0; /* Remove margem padrão */
}

.recipe-single-card-image-container {
    width: 100%;
    height: 180px;
}

.recipe-single-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.recipe-single-card-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 80px;
    background: #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 10px;
}

.recipe-single-card-overlay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.recipe-single-card-overlay-item img {
    width: 24px;
    height: 28.591px;
}

.recipe-single-card-overlay-item p {
    color: #707070;
    font-family: "space-grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.recipe-single-card-separator {
    width: 1px;
    height: 50px;
    background: #D5D5D5;
}

@media screen and (min-width: 768px) {
    .recipe-single-card {
        width: 400px;
        height: 309px;
    }


    .recipe-single-card-image-container {
        height: 180px;
        overflow: hidden;
    }

    .recipe-single-card-image-container img{
        transition: transform 0.3s ease;
    }

    .recipe-single-card-image-container:hover img{
        transform: scale(1.1);
    }

    .recipe-single-title {
        font-size: 25px;
    }

    .recipe-single-card-overlay {
        width: 260px;
        height: 80px;
        bottom: -48px;
        display: flex;
        justify-content: space-between;
    }
}