/* ===================== BENEFICIOS ===================== */
.beneficios {
    width: 100%;
    background: var(--color-bg);
    padding: clamp(18px, 3vw, 30px) 0;

    margin-top: 5rem;
}

.beneficios__container {
    width: min(1500px, calc(100% - 18px));
    /* casi full, margen mínimo */
    margin: 0 auto;
}

.beneficios__list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    gap: clamp(14px, 2.2vw, 28px);

    /* border-radius: 14px; */
    padding: clamp(14px, 2.5vw, 22px);

    /* look premium */
    background:
        radial-gradient(800px 140px at 50% 0%,
            rgba(231, 76, 60, 0.10),
            rgba(231, 76, 60, 0.00) 60%),
        var(--color-white);

    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.beneficios__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;

    padding: 8px 10px;
    border-radius: 12px;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.beneficios__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(231, 76, 60, 0.10);
    border: 1px solid rgba(231, 76, 60, 0.20);
    box-shadow: 0 10px 22px rgba(231, 76, 60, 0.10);
}

.beneficios__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-black);
    opacity: 0.92;
    transition: fill .2s ease, opacity .2s ease;
}

.beneficios__text {
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
}

/* Separadores verticales (como la imagen, pero más finos y elegantes) */
.beneficios__sep {
    width: 1px;
    height: 26px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.00),
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.00));
}

/* Interacción premium */
.beneficios__item:hover {
    transform: translateY(-1px);
    background: rgba(231, 76, 60, 0.06);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

.beneficios__item:hover .beneficios__icon {
    background: rgba(231, 76, 60, 0.14);
    border-color: rgba(231, 76, 60, 0.35);
}

.beneficios__item:hover .beneficios__icon svg {
    fill: var(--color-primary);
    opacity: 1;
}

/* Línea inferior larga (como en tu captura) */
.beneficios__rule {
    margin: clamp(18px, 2.2vw, 26px) auto 0;
    width: min(1200px, 100%);
    height: 1px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.00),
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.00));
}

/* ===================== RESPONSIVE ===================== */
/* Tablet: reduce separadores y deja más aire */
@media (max-width: 900px) {
    .beneficios__list {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 10px;
    }

    .beneficios__sep {
        display: none;
    }

    .beneficios__item {
        width: 100%;
        justify-content: flex-start;
    }

    .beneficios__rule {
        width: 100%;
    }
}

/* Mobile: icono un poquito más compacto */
@media (max-width: 480px) {
    .beneficios__icon {
        width: 38px;
        height: 38px;
    }

    .beneficios__icon svg {
        width: 17px;
        height: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .beneficios__item,
    .beneficios__icon svg {
        transition: none !important;
    }
}