body {
    margin: 0;
    padding: 0;
    background-color: #e9e9e9; /* Cor de fundo de fallback */
}

.bg-1 {
    background-image: url('../img/bg1.png');
    background-repeat: repeat; /* Repete a imagem horizontal e verticalmente */
    background-size: auto; /* Mantém o tamanho original da imagem */
    width: 100%; /* Define a largura da div igual à largura da janela */
    height: 100vh; /* Define a altura da div igual à altura da janela */
}

.bg-2 {
    background-image: url('../img/bg2.png');
    background-repeat: repeat; /* Repete a imagem horizontal e verticalmente */
    background-size: auto; /* Mantém o tamanho original da imagem */
    width: 100%; /* Define a largura da div igual à largura da janela */
    height: 100vh; /* Define a altura da div igual à altura da janela */
}

.left {
    float: left;
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

.right {
    float: right;
    width: 35%; /* Define a largura da div igual à largura da janela */
    height: 100vh; /* Define a altura da div igual à altura da janela */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background-image: url('../img/bg-right.png');
    background-repeat: repeat; /* Repete a imagem horizontal e verticalmente */
    background-size: contain; /* Mantém o tamanho original da imagem */
}

.logo-mooveplus img {
    width: 450px;
    max-width: 300px !important;
    height: auto;
    margin-bottom: 10rem;
    margin-left: 1rem;
}


.itens-left {
    width: 48%;
    height: auto;
    display: flex;
    float: left;
}
.itens-right {
    width: 48%;
    height: auto;
    display: flex;
    float: right;
}

.itens {
    width: 100%;
    margin: 3%;
    display: block;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer {
    display: flex;
    width: 100%;
    padding-top: 10rem;
}

.footer-left {
    width: 48%;
    height: auto;
    display: flex;
    float: left;
}
.footer-right {
    width: 48%;
    height: auto;
    display: flex;
    float: right;
    text-align: right;
    justify-content: right;
    align-items: end;
}
.store{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;

}

.store-responsive {
    max-width: 337;
    max-height: 70px;
    padding-right: 10px;
    height: auto;
}



/* Oculta a div "right" em resoluções menores que 768px (um exemplo de tamanho de tela móvel) */
@media (max-width: 768px) {
    .right {
        display: none;
    }

    .left {
        width: 100%;
    }

    .itens {
        width: 95%;
        margin: 3%;
        display: block;
    }

    .footer {
        display: none;
    }

    .footer-mobile {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .centered-div {
        text-align: center;
    }
    
    .inner-div {
        width: 300px;
        height: 100px;
        margin: 10px;
    }
    
}