.section-valori-light{
    background: #f7f8fb;
    padding-top: 50px;
    padding-bottom: 100px;
}

.valori-header{
	text-align: center;	
}

.valori-slider-wrapper{
    position: relative;
    margin-top: 60px;
}

.valori-slider{
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.valore-card{
    flex: 0 0 33.333%;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 35px;
    border: 1px solid #e5e7eb;
    transition: all .35s ease;
}

.valore-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.valore-icon{
    font-size: 50px;
    color: #485693;
    margin-bottom: 25px;
    text-align: center;
}

.valore-card h3{
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.valore-subtitle{
    font-weight: 600;
    margin-bottom: 12px;
}

.valore-card p{
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* Frecce */
.valori-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.valori-prev{ left: -20px; }
.valori-next{ right: -20px; }

.valori-arrow:hover{
    background: #485693;
    color: #ffffff;
}

/* Responsive */
@media(max-width: 992px){
    .valore-card{
        flex: 0 0 80%;
    }

    .valori-prev,
    .valori-next{
        display: none;
    }
}