@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');

/* Reset e configurações globais */
* {
    color: #402C14;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Classe padrão para centralizar algo */
.centralize {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.Container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    font-family: "Poppins", serif;
}

div.backgroundFixed {
    position: relative;
    /* Garante que o pseudo elemento fique atrás */
    height: 200vh;
    /* Para permitir a rolagem e testar o efeito */
    padding: 0;
    margin: 0;
}

div.backgroundFixed::before {
    content: "";
    position: fixed; /* Fixa o fundo na viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/background/newBackground.png');
    background-size: cover;
    filter: blur(5px); /* Adiciona o efeito de desfoque */
    z-index: -1; /* Coloca o fundo atrás do conteúdo */
}



div.title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 5% 0%;
}

div.title h1 {
    font-weight: bold;
    margin: 1.5rem 0rem;
}

h1 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1rem;
}

h3,
h5 {
    font-weight: bold;
    text-align: center;
}

figure {
    margin: 8rem;
}


/* Estilos para telas menores que 768 pixels (geralmente dispositivos móveis) */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
    }

    .mobileAlign {
        display: flex;
        flex-direction: column;
    }

    section.Container {
        padding-top: 0px;
    }

}

@media (min-width: 769px) {

    /* Garante que a figure mobile esteja escondida em desktops (caso algum outro CSS a esteja mostrando) */
    .infoCenterMobile {
        display: none !important;
    }
}