@font-face {
    font-family: 'BabyPop';
    src: url('Baby-Pop.otf');
}

body {
    background-image: url("SekaiBG.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #2F324B;
    font-family: 'BabyPop';
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border: 3px solid #713EA8;
    background-color: #2F2F43;
    color: #F8FAFB;
    padding: 20px;
    text-align: center;
}

header h1 span {
    color: #713EA8;
}

.imagem-logo{
    height: 80px;
    width: auto;
}

footer {
    background-color: #2F2F43;
    color: #F8FAFB;
    padding: 20px 40px;
    border-top: 3px solid #713EA8;
    font-size: 14px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: right;
}

.texto-footer {
    max-width: 60%; /* Evita que o disclaimer fique largo demais */
    display: flex;
    flex-direction: column;
    gap: 4px; /* Diminui o espaço entre as linhas verticalmente */
}

.texto-footer p {
    margin: 0;
}

.disclaimer {
    font-size: 11px;
    margin-top: 10px !important;
    opacity: 0.8;
}

.imagem-IFRN {
    height: 120px;
    width: auto;
    display: block;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#apresentacao {
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
}

.imagem-grupo{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

.caixa-login{
    background-color: #2F2F43;
    color: #F8FAFB;
    padding: 40px;
    border: 3px solid #713EA8;
    width: 100%;
    max-width: 400px;
}

input, button {
    font-family: 'BabyPop';
    padding: 10px;
    margin: 5px 0;
}

button {
    background-color: #713EA8;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

hr {
    border: none;
    border-top: 2px solid #713EA8;
    width: 100%;
    margin: 10px 0;
    opacity: 1;
}

#tela-chat {
    display: none;
    color: #F8FAFB;
    background-color: #2F2F43;
    border: 3px solid #713EA8;
    width: 90%;
    max-width: 800px;
}

#area-mensagens {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.balao-chat {
    color: white;
    padding: 8px 12px;
    margin: 5px 0;
    width: fit-content;
    max-width: 80%;
    border: 1px solid #F8FAFB;
}

.contatos-topo {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #713EA8;
}

.btn-contato {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2F2F43;
    border: 2px solid #713EA8;
    color: white;
    cursor: pointer;
    font-size: 18px;
    background-size: cover;
    background-position: center;
}

#btn-geral {
    background-image: url('geral.webp'); 
}
#btn-k {
    background-image: url('k.webp'); 
}
#btn-yuki { 
    background-image: url('yuki.webp'); 
}
#btn-enanan { 
    background-image: url('enanan.webp'); 
}
#btn-amia { 
    background-image: url('amia.webp'); 
}
#btn-mimmarcelo { 
    background-image: url('mimmarcelo.png');
    display: none;
}

.btn-contato:hover {
    border-color: #F8FAFB;
}