﻿.section-beneficios {
    --titulo-font-size: 12px;
    --image-width: 80px;
    width: 100%;
    padding-bottom: calc(var(--titulo-font-size) * 2);
    background-color: #FFFFFF;
}

    .section-beneficios .title {
        font-family: 'Montserrat-Bold';
        font-size: var(--titulo-font-size);
        display: flex;
        text-align: center;
        padding: var(--titulo-font-size) 0px;
        justify-content: center;
    }

    .section-beneficios .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: calc(var(--titulo-font-size) * 2);
        grid-row-gap: calc(var(--titulo-font-size) * 2);
        width: 90%;
    }
        .section-beneficios .grid .cell-1 { grid-area: 1 / 1 / 2 / 2; }
        .section-beneficios .grid .cell-2 { grid-area: 1 / 2 / 2 / 3; }
        .section-beneficios .grid .cell-3 { grid-area: 1 / 3 / 2 / 4; }
        .section-beneficios .grid .cell-4 { grid-area: 1 / 4 / 2 / 5; }

        .section-beneficios .grid .cell {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            gap: calc(var(--titulo-font-size) * 1);
            font-family: Montserrat-Bold;
            font-size: calc(var(--titulo-font-size) * .8);
        }

        .section-beneficios .grid .cell img {
            width: var(--image-width);
        }

/* modo mobile 360px */
@media (min-width: 0px) and (max-width: 480px) {
    .section-beneficios {
        --titulo-font-size: 13px;
        --image-width: 27px;
    }
}

/* modo tablet 800px */
@media (min-width: 481px) and (max-width: 1000px) {
    .section-beneficios {
        --titulo-font-size: 19px;
        --image-width: 48px;
    }
}

/* modo laptop 1280px */
@media (min-width: 1001px) and (max-width: 1500px) {
    .section-beneficios {
        --titulo-font-size: 32px;
        --image-width: 81px;
    }
}

/* modo pc 1920px */
@media (min-width: 1501px) and (max-width: 2100px) {
    .section-beneficios {
        --titulo-font-size: 32px;
        --image-width: 81px;
    }
}

/* modo 4k */
@media (min-width: 2101px) {
    .section-beneficios {
        --titulo-font-size: 32px;
        --image-width: 81px;
    }
}

/* grilla */
@media (min-width: 0px) and (max-width: 1500px) {
    .section-beneficios .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
        .section-beneficios .grid .cell-1 { grid-area: 1 / 1 / 2 / 2; }
        .section-beneficios .grid .cell-2 { grid-area: 1 / 2 / 2 / 3; }
        .section-beneficios .grid .cell-3 { grid-area: 2 / 1 / 3 / 2; }
        .section-beneficios .grid .cell-4 { grid-area: 2 / 2 / 3 / 3; }
}