/* =========================================================
   BENEFÍCIOS DA LINHA — OMG TÊXTIL
========================================================= */

.linha-beneficios {
    width: 100%;
    padding: 24px 0 40px;
}


/* =========================================================
   GRID
========================================================= */

.linha-beneficios-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    width: 100%;

    gap: 12px;
}


/* =========================================================
   CARD
========================================================= */

.linha-beneficio-card {
    display: flex;

    min-width: 0;
    min-height: 76px;

    align-items: center;

    gap: 12px;

    padding: 14px 15px;

    border: 1px solid #e2e7ee;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 6px 20px
        rgba(15, 23, 42, 0.04);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   HOVER
========================================================= */

.linha-beneficio-card:hover {
    transform: translateY(-2px);

    border-color: #ccd7e5;

    box-shadow:
        0 9px 24px
        rgba(15, 23, 42, 0.065);
}


/* =========================================================
   ÍCONE
========================================================= */

.linha-beneficio-icone {
    display: inline-flex;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(37, 211, 102, 0.12);

    color: #168542;
}

.linha-beneficio-icone svg {
    display: block;

    width: 18px;
    height: 18px;
}


/* =========================================================
   TEXTO
========================================================= */

.linha-beneficio-conteudo {
    display: block;

    min-width: 0;
}

.linha-beneficio-conteudo strong {
    display: block;

    margin: 0;

    color: #17191e;

    font-size: 14px;
    font-weight: 750;
    line-height: 1.25;
}

.linha-beneficio-conteudo small {
    display: block;

    margin-top: 3px;

    color: #6d7480;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}


/* =========================================================
   NOTEBOOK / TABLET
========================================================= */

@media screen and (max-width: 1050px) {

    .linha-beneficios-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .linha-beneficios {
        padding: 20px 0 32px;
    }

    .linha-beneficios-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .linha-beneficio-card {
        min-height: 70px;

        gap: 9px;

        padding: 11px 10px;

        border-radius: 13px;
    }

    .linha-beneficio-icone {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        border-radius: 9px;
    }

    .linha-beneficio-icone svg {
        width: 15px;
        height: 15px;
    }

    .linha-beneficio-conteudo strong {
        font-size: 12px;
    }

    .linha-beneficio-conteudo small {
        margin-top: 2px;

        font-size: 9px;
        line-height: 1.3;
    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media screen and (max-width: 380px) {

    .linha-beneficio-card {
        min-height: 66px;

        padding: 9px 8px;
    }

    .linha-beneficio-icone {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

    .linha-beneficio-icone svg {
        width: 14px;
        height: 14px;
    }

    .linha-beneficio-conteudo strong {
        font-size: 11px;
    }

    .linha-beneficio-conteudo small {
        font-size: 8.5px;
    }

}