/* VARIÁVEIS PARA CORES DO PROJETO */
:root {
    --cor-fundo: #f1e9f3;
    --cor-clara: #f9f9f9;
    --cor-principal-rgb10: rgba(119, 37, 131, 0.1);
    --cor-principal-rgb40: rgba(119, 37, 131, 0.4);
    --cor-principal-rgb60: rgba(119, 37, 131, 0.6);
    --cor-principal: #772583;
    --cor-principal-clara: #ad7cb5;
}

@media screen and (max-width: 1200px) {
    .container {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-top: 50px;

        /* DIMENSIONAMENTO */
        width: 100%;
    }

    /* CARROSEL DE PRODUTOS */
    .produtos {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-bottom: 20px;

        /* DIMENSIONAMENTO */
        width: 100%;
        height: 600px;
    }

    .produtos .titulo {
        /* POSICIONAMENTO */
        margin-bottom: 20px;

        /* DIMENSIONAMENTO */
        width: 90%;
        text-align: center;
    }

    .produtos .carrosel-produtos {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;

        /* DIMENSIONAMENTO */
        width: 100%;
        height: 520px;
    }

    .produtos .carrosel-produtos .carrosel-cell {
        /* POSICIONAMENTO */
        margin-right: 30px;

        /* DIMENSIONAMENTO */
        height: 450px;
    }
    /* CARROSEL DE PRODUTOS */
}

@media screen and (min-width: 1200px) {
    .container {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-top: 50px;

        /* DIMENSIONAMENTO */
        width: 100%;
    }

    /* CARROSEL DE PRODUTOS */
    .produtos {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-bottom: 20px;

        /* DIMENSIONAMENTO */
        width: 100%;
        height: 600px;
    }

    .produtos .titulo {
        /* POSICIONAMENTO */
        margin-bottom: 20px;

        /* DIMENSIONAMENTO */
        width: 90%;
        text-align: center;
    }

    .produtos .carrosel-produtos {
        /* POSICIONAMENTO */
        display: flex;
        flex-direction: column;

        padding-bottom: 10px;

        /* DIMENSIONAMENTO */
        width: 100%;
        height: 520px;
    }

    .produtos .carrosel-produtos .carrosel-cell {
        /* POSICIONAMENTO */
        margin-right: 30px;

        /* DIMENSIONAMENTO */
        height: 480px;
    }
    /* CARROSEL DE PRODUTOS */
}

.produtos .titulo {
    /* DIMENSIONAMENTO */
    font-size: 16px;

    /* APARÊNCIA */
    font-family: "Press Start 2P", cursive;
    background-color: transparent;
}

.carrosel-produtos {
    /* APARÊNCIA */
    background: transparent;
}

.carrosel-cell {
    /* APARÊNCIA */
    background-color: transparent;
}
