.artwork-service-row {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 30px 20px 30px;
    display: flex;
    margin-bottom: 0px !important;
    align-items: center;
    transition: all 0.4s ease;
    /*background-color: #f9f7f2;  Colore di base come da screen */
}

/* La tenda bianca */
.service-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.artwork-service-row:hover .service-bg-overlay {
    transform: translateY(0);
}

.service-content {
    position: relative;
    z-index: 2; /* Sopra la tenda */
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.service-left {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.service-left img {
    width: 200px !important;
    height: auto;
    object-fit: cover;
}

.service-left h2 {
    font-size: 6rem;
    color: #2b2e44;
    margin: 0;
    font-weight: 400;
    padding-bottom: 20px
}

.service-btn {
    padding: 20px 25px;
    border-radius: 20px;
    background: #FFF;
    color: #333 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.artwork-service-row:hover .service-btn {
    background: #333333; /* Cambia colore quando lo sfondo diventa bianco */
    color: #FFF !important;
}
