html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
}

/* Header centralizado */
.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    /*padding: 10px 20px;*/
    box-sizing: border-box;
}

/* Logo */
.logosite{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.logosite img {
    display: block;
    width: 200px;
    /*max-width: 80%;*/
    height: auto;
    padding: 20px;
    margin-bottom: 80px;
    transition: all 0.6s;
}

/* Texto */
.brevemente-txt {
    text-align: center;
    font-size: 1.6rem;
    color: #ddd;
    line-height: 1.5;
    padding: 0 3px;
    transition: all 0.6s;
}

/* Responsividade */
@media screen and (max-width: 56em) {
    .logosite{gap: 0;}
    .logosite img {width: 150px;}
    .brevemente-txt {font-size: 1.1rem;}
}

/* Borda fixa ao redor da tela */
.frame-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #e5993c;
    box-sizing: border-box;
    pointer-events: none; /* não bloqueia cliques */
    z-index: 9999;
}