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

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

.c-cel__btns {
    grid-area: btns;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.c-cel__btn {
    font-size: 4vw;
    font-weight: 700;
    line-height: normal;
    padding: 16px 8px;
    color: #86888C;
    border-bottom: 2px solid var(--bg-lightGray);
    transition: all .3s ease;
}

.c-cel__btn:hover {
    color: var(--blue);
}

.c-cel__btn.active {
    color: #313235;
    border-bottom: 2px solid var(--blue);
}

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

.c-cel__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.c-cel__shop {
    display: inline-block;
    border-radius: 60px;
    padding: 8px 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: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 0;
}


.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: none !important;
    grid-area: imgs;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.c-cel__imgs.active {
    display: flex !important;
}

.c-cel__link {
    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;
    overflow: hidden;
}

.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;
}



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

@media screen and (min-width:768px) {
    .c-cel__grid {
        grid-template-columns: 330px minmax(0, 1fr);
        grid-template-areas:
            "btns btns"
            "msj msj"
            "slide slide"
            "msj2 imgs";
    }

    .c-cel__msj {
        align-self: center;
    }

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

    .c-cel__mjs2 br {
        display: none;
    }

    .c-cel__btns {
        gap: 20px;
    }
}



/* CSS FILTRO */

.c-cel__msjbtns {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    gap: 12px;
    margin-top: 24px;
    max-width: 330px;
}

.title-fixed {
    padding: 20px 60px;
    position: relative;
    border-radius: 0 50px 50px 0;
    background-color: #003847;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    overflow: hidden;
    width: 100%;
    text-align: left;
    max-width: max-content;
    margin-bottom: 30px;
    margin-top: 30px;
    padding-right: 120px;
}

.title-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 50px 50px 0;
    padding: 2px;
    /* Adjust thickness of the border */
    background: linear-gradient(to right, #00ffcc, #007bff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.title-fixed span {
    font-weight: bold;
}

.title-fixed h2 {
font-size: 18px;
}

.section-promo-mov {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}
.section-promo-mov-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}
.section-promo-mov-banner img {
    width: 100%;
    height: auto;
}
.section-promo-mov-banner picture {
    width: 100%;
    height: auto;
}
.section-general{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}
.icn-arrow-line-right-light{
    display: block;
    position: absolute;
    right: 39px;
    background-color: #0D2738;
    padding: 10px;
    border-radius: 50%;
    border: solid 1px #019DF4;
    top: 36%;
}
.icn-arrow-back-light{
    display: block;
    position: absolute;
    left: 39px;
    background-color: #0D2738;
    padding: 10px;
    border-radius: 50%;
    border: solid 1px #019DF4;
    top: 36%;
}
.sect-customize .c-cel__slidecontrol{
    display: none;
}
.sub-title-sect-celulares{
    width: 100%;
    max-width: 1440px;
    padding: 30px 0;
    margin: 0 auto;
    padding-left: 62px;
    color: #fff;
}