.if-benefits-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
gap: 16px;
padding: 20px 50px 15px;
background: #ff7f27;
color: #ffffff;
text-align: center;
border-radius: 20px;
box-sizing: border-box;
}

.if-benefit-item {
flex: 1 1 110px;
max-width: 140px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 13px;
line-height: 1.3;
box-sizing: border-box;
}

.if-benefit-icon img {
display: block;
max-width: 40px;
height: auto;
margin-bottom: 8px;
transition-duration: 0.7s;
}

.if-benefit-icon img:hover {
transform: scale(1.3);
}

.if-benefit-label {
font-weight: 500;
}

.if-benefits-block h2 {
font-family: "Roboto", Sans-serif;
font-size: 20px;
font-weight: 600;
color: #009ec3;
margin-bottom: 20px;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
.if-benefits-wrapper {
gap: 12px;
padding: 12px 16px;
}

.if-benefit-item {
flex: 1 1 45%;
max-width: none;
}

}
