section.Home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    background-image: url("../assets/background/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

div.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #402C14;
    position: relative;
    bottom: 3rem;
    color: #FDFBEE;
    width: 100%;
    padding: 0.4rem 0rem;
    font-family: "Playfair Display SC", serif !important;
}


figure {
    position: relative;
    bottom: 3rem;
}

.infoCenterMobile {
    visibility: visible;
}

@media (max-width: 768px) {
    section.Home {
        background-image: url("../assets/background/bgMobile.png");
        height: 100vh;
        padding-bottom: 10rem;
    }

    figure.infoCenterMobile {
        position: relative;
        bottom: 7rem;
    }

    /* Esconde a primeira figure (com a imagem info_center.svg) */
    figure:not(.infoCenterMobile) {
        display: none;
    }

    /* Mostra a figure com a classe infoCenterMobile */
    .infoCenterMobile {
        display: block !important;
        /* Usamos !important para garantir que sobrepõe o atributo hidden */
    }

    

    section.Home {
        padding: 0;
    }
}
