/* Section */
.benefits-section {
    padding: 80px 5%;
    background: #f5f5f7;
}

/* Título */
.benefits-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 40px;
    text-align: left;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Hover Apple */
.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Título do card */
.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

/* Texto */
.benefit-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #6e6e73;
}

@media screen and (max-width: 1170px) {

    .benefits-title {
        text-align: center;
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 28px;
    }
}
