.lojas {
    padding: 60px 10px;
}
.lojas-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    align-items: center;
    gap: 55px;
}
.lojas-grid > div:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}
.lojas-grid > div:nth-child(2) {
    display: grid;
    gap: 55px;
}
.lojas-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3em;
    margin-bottom: 50px;
}
.lojas-title span {
    color: #E30613;
    font-weight: 600;
}


@media only screen and (min-width:550px) and (max-width:1130px) {

    .lojas-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 35px;
    }

    .lojas-grid > div:nth-child(1) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .lojas-grid > div:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
}
@media only screen and (min-width:401px) and (max-width:549px) {

    .lojas-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .lojas-grid > div:nth-child(1) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .lojas-grid > div:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
}
@media only screen and (min-width:0px) and (max-width:400px) {

    .lojas-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .lojas-grid > div:nth-child(1) {
        display: grid;
        grid-template-columns: 1fr ;
        gap: 10px;
    }
    .lojas-grid > div:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr ;
        gap: 10px;
    }
    
}
.mapouter {
    height: 440px;
    width: 470px;
    box-shadow: 0px 0px 0px 20px #000;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.mapouter iframe {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.unidades {
    padding: 0px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 60px;
    margin-top: 50px;
}

.loja1 {
    display: grid;
    justify-items: center;
}

.loja1 > div:nth-child(1) {
    display: grid;
    justify-items: center;
    color: #E30613;
    text-align: center;
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 600;
}
.loja1 > a {
    background-color: #E30613;
    max-width: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    padding: 20px 35px;
    text-align: center;
    position: relative;
    bottom: 45px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: .3s;
}
.loja1 > a:hover {
    box-shadow: 0px 0px 0px 3px #000;
    color: #FFED00;
}

@media only screen and (min-width: 570px) and (max-width: 1090px) {

    .unidades {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
}
@media only screen and (min-width: 466px) and (max-width: 569px) {

    .unidades {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mapouter {
        height: 380px;
        max-width: 370px;
    }
    .mapouter iframe {
        width: 100%;
        border-radius: 25px;
    }
    
}
@media only screen and (min-width: 401px) and (max-width: 465px) {

    .unidades {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mapouter {
        height: 280px;
        max-width: 270px;
    }
    .mapouter iframe {
        width: 100%;
        border-radius: 25px;
    }
    
}
@media only screen and (min-width: 335px) and (max-width: 400px) {

    .unidades {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mapouter {
        height: 230px;
        max-width: 220px;
    }
    .mapouter iframe {
        width: 100%;
        border-radius: 25px;
    }

    .loja1 > a {
        border-radius: 20px;
        padding: 10px 25px;
        bottom: 35px;
        font-size: 1rem;
    }
    
}
@media only screen and (min-width: 0px) and (max-width: 334px) {

    .unidades {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mapouter {
        height: 200px;
        max-width: 190px;
        box-shadow: 0px 0px 0px 10px #000;
    }
    .mapouter iframe {
        width: 100%;
        border-radius: 25px;
    }

    .loja1 > a {
        border-radius: 20px;
        padding: 8px 20px;
        bottom: 35px;
        font-size: .75rem;
    }
    .loja1 > div:nth-child(1) {
        font-size: 1.4rem;
    }
    .lojas-title {
        text-align: center;
        font-size: 1.3rem;
    }
    
}