body {
    overflow-x: hidden; /* Evita rolagem horizontal, mas permite rolagem vertical */
}

.initial-container {
    background-color: #dee3e1;
}

.content1, .content2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Garante que o conteúdo tenha no mínimo a altura da tela */
}

/* Deixa o <nav> fixo no topo */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Deixa o <footer> fixo na parte inferior */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* Ajusta a posição da <main> para deixar espaço para o <nav> e o <footer> */
main {
    overflow-y: auto;
    height: calc(100vh - 120px);
}



.footer-container {
    background-color: rgb(78, 78, 78);
    height: 60px;    
    margin-bottom: 0;
    margin-top: auto;
}

.footer-center {
    display: grid;
    align-items: center;
    text-align: center;
    color: black;
}

.h-footer {
    height: 60px;
    align-items: center;
}

 .logos-rs {
     max-height: 40px;
 }

 .p-menu {
    margin-inline: 10px;
 }

 .logo-nav{
    width: 83px;
    height: 35;
 }