html, body {
    height: 100%; /* Faz com que o body ocupe 100% da altura da tela */
    margin: 0; /* Remove margens padrão */
}

body {
    display: flex;
    flex-direction: column; /* Organiza os elementos em coluna */
}

main {
    padding-top: 70px;
    padding-bottom: 60px;
    flex: 1;
    overflow-x: hidden;
}

#container {
    flex: 1; /* Faz com que o contêiner principal ocupe o espaço restante */
    display: flex;
    flex-direction: column; /* Organiza os elementos em coluna */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
}

#content-initial-1, #content-initial-2 {
    text-align: center; /* Centraliza o texto dentro dos blocos de conteúdo */
}

/* 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;
}

.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;
 }

.title {
    font-size: 40px;
    font-weight: 400;
    margin-top: 50px;
    padding: 15px;
    text-align: center;
 }

 .title-center {
    font-size: 25px;
    padding: 15px;
    text-align: center;
}

.description {
    font-size: 15px;
    margin-top: 50px;
    align-items: center;
    text-align: center;
}


