/* ========= LOJA ========= */

#loja {
    background-color: #000;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.4s ease-in-out; /* animação suave */
}

/* animação */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

#loja .section-titlee {
    color: #8126c9;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.loja-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    width: 90%;
}

.loja-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
}

/* IMAGENS PEQUENAS */
.loja-img-small {
    width: 330px;
    border-radius: 10px;
    box-shadow: none !important;
    transition: 0.35s ease-in-out;
}

/* HOVER das imagens pequenas */
.loja-img-small:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

/* IMAGEM GRANDE */
.loja-img-big {
    width: 420px;
    border-radius: 10px;
    transition: 0.35s ease-in-out;
}

/* HOVER imagem grande */
.loja-img-big:hover {
    transform: scale(1.04);
    filter: brightness(1.12);
}

/* FRASE CENTRALIZADA E NO MEIO */
.loja-centerbox {

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px 0;*/
}

.loja-text {
    color: white;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
}

/* BOTÃO CENTRALIZADO */
.btn-loja {
    background-color: #8126c9;
    padding: 14px 34px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.btn-loja:hover {
    transform: scale(1.07);
    opacity: 0.85;
}

/* ========= RESPONSIVO ========= */

@media screen and (max-width: 1170px) {
    #loja {
        text-align: center;
    }

    .loja-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .loja-img-small {
        width: 85%;
        max-width: 420px;
    }

    .loja-img-big {
        width: 85%;
        max-width: 440px;
    }

    .btn-loja {
        font-size: 1.25rem;
    }

    .loja-text {
        font-size: 1.9rem;
    }
}
