/* Remove scroll apenas na home */
body.page-home {
    overflow: hidden;
}

/* hero ocupa a tela inteira e centraliza conteudo */
.page-home .hero {
    min-height: 100vh;
    padding-top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.page-home .hero-icon {
    width: 56px;
    margin-bottom: 0.25rem;

    opacity: 0.9;
    image-rendering: pixelated;
}

.page-home .hero h1 {
    font-family: "Monocraft", monospace;
    font-size: 2.6rem;
    margin: 0;
}

/* texto da home */
.page-home .hero p {
    max-width: 560px;
    margin-top: 0.75rem;

    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* footer flutuante apenas na home */
.page-home footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 0.75rem;
    text-align: center;

    background: transparent;
    backdrop-filter: blur(4px);

    z-index: 5;
}
