.c-cel {
    padding: 0rem 16px 2rem;
}

.c-cel__grid {
    display: grid;
    width: 100%;
    margin: 2rem auto;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "msj"
        "slide"
        "msj2"
        "imgs";
    place-content: center;
    max-width: 1200px;
}


.c-cel__posTitle {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.c-cel__title {
    margin: 0 auto;
    width: 85%;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-align: center;
}

.c-cel__shop {
    display: inline-block;
    border-radius: 60px;
    padding: 6px 32px;
    text-align: center;
    max-width: 160px;
    /* margin-top: 24px; */
}

.c-cel__msj {
    grid-area: msj;
}

.c-cel__info {
    display: none;
}

.c-cel__info.active {
    display: block;
}

.c-cel__listPhone {
    grid-area: slide;
    display: none;
    flex-direction: column;
    min-width: 0;
}

.c-cel__listPhone.active {
    display: flex;
}

.c-cel__mjs2 {
    grid-area: msj2;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

.c-cel__mjs2 br {
    display: block;
}

.c-cel__imgs {
    display: grid;
    grid-template-columns: repeat(8, 90px);
    grid-area: imgs;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    overflow-x: scroll;
}

.c-cel__imgs::-webkit-scrollbar{
    background-color: #DDDDDD;
    overflow: hidden;
    border-radius: 8px;
    height: 5px;
}

.c-cel__imgs::-webkit-scrollbar-thumb{
    background-color: var(--blue);
    border-radius: 8px;
}

.c-cel__link {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    height: 60px;
    width: 90px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid #F5F5F5;
    color: #525252;
}

.c-cel__link:hover{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.c-cel__link img {
    filter: brightness(47%) contrast(70%) saturate(0);
    transition: all .3s ease;
}

.c-cel__link i {
    font-size: 35px;
}

.c-cel__link i.text-logo {
    font-size: 45px;
}

.c-cel__link i.logo-grande {
    font-size: 30px;
}

.c-cel__link:hover {
    box-shadow: 0px 5.35714px 23.57143px 0px rgba(11, 39, 57, 0.12),
        0px 7.5px 8.57143px 0px rgba(11, 39, 57, 0.02);
    color: var(--blue);
}

.c-cel__link:hover img {
    filter: grayscale(0%);
}

.c-cel__link.outlet {
    flex-direction: column;
    color: var(--blue);
    position: relative;
    line-height: normal;
}

.c-cel__link.outlet small {
    color: #86888C;
    font-size: 9px;
}

.c-cel__link.outlet::after {
    content: ".";
    font-size: 4rem;
    position: absolute;
    top: -2px;
    right: 10px;
    line-height: 0;
    color: #E63780;
}

.c-cel__msjbtns {
    margin: 15px auto 0;
    max-width: 330px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    place-content: center;
    align-items: center;
    gap: 12px;
}

@media screen and (min-width:500px) {
    .c-cel__btn {
        font-size: 18px;
    }
}

@media screen and (min-width:768px) {
    .c-cel{
        padding: 1rem 16px 2rem;
    }
    .c-cel__grid {
        grid-template-columns: 300px minmax(0, 1fr);
        grid-template-areas:
            "msj msj"
            "slide slide"
            "msj2 imgs";
            column-gap: 0px;
            row-gap: 60px;
    }

    .c-cel__msj {
        max-width: 231px;
        align-self: center;
        justify-self: end;
    }

    .c-cel__mjs2 {
        text-align: left;
    }

    .c-cel__mjs2 br {
        display: none;
    }
    .c-cel__listPhone{
        max-width: 740px;
    }
    
}

@media screen and (min-width: 940px) {
    .c-cel__grid {
        margin: 1rem auto;
        grid-template-areas:
            "msj slide"
            "msj2 imgs";
        place-items: inherit;
        column-gap: 30px;
    }

    .c-cel__imgs {
        padding-right: 25px;
        justify-content: flex-end;
        display: flex;
        padding-right: 25px;
        justify-content: flex-end;
        overflow-x: auto;
    }
    .c-cel__title {
        margin: 0;
        width: 100%;
        font-size: 25px;
        line-height: 35px;
        text-align: left;
    }
    .c-cel__msjbtns{
        justify-items: flex-start;
    }
}