/* =========================================
   BENEFICIOS
========================================= */
.benefits-section {
    padding: 100px 20px;
    background: #f8fafc;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.benefit-card {
    position: relative;
    min-height: 280px;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: #d7dce2;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 40px;
    height: 3px;
    background: #c81919;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity .25s ease;
}
.benefit-card:hover::before {
    opacity: 1;
}

/* ICON */
.benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #fff7f7;
    border: 1px solid rgba(200, 25, 25, 0.12);
    border-radius: 14px;
    color: var(--primary);
}
.benefit-icon i {
    line-height: 1;
    font-size: 22px;
}

/* TEXT */
.benefit-card h3 {
    margin: 0 0 14px;
    color: #1e293b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}
.benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 600px) {
    .benefits-section {
        padding: 75px 20px;
    }
    .benefits-header {
        margin-bottom: 45px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        min-height: auto;
        padding: 28px 24px;
    }
}