html,
body {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

p,
span {
    color: #ffffff;
}

h1 {
    color: #ffffff;
    font-size: 28px;
}

h2 {
    color: #333333;
    font-size: 22px;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0px 10px 0px;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: transparent;
    color: #333;
}

.texto-branco {
    color: #ffffff;
}

.borda-branca {
    border: solid 1px #fff;
}

.borda-preta {
    border: solid 1px #333;
}

button {
    background-color: #7ab829;
    cursor: pointer;
    color: #fff;
}

button:hover {
    background-color: #6ea22c;
}

::placeholder {
    color: #333333;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #333333;
}

::-ms-input-placeholder {
    color: #333333;
}

.topo {
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    padding: 20px 0px 10px 0px;
}

.logo {
    width: 50px;
    float: left;
    margin-left: 40px;
}

.menu {
    float: right;
    margin-right: 40px;
}

.menu li {
    display: inline;
    float: left;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.menu a {
    text-decoration: none;
    padding: 14px 16px;
    color: #333;
}

.menu a:hover {
    color: #268fd0;
}

.conteudo-destaque {
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.esquerda {
    float: left;
    background-color: #268fd0;
    width: 60%;
    height: 100%;
}

.direita {
    float: right;
    background-color: #2a9ee2;
    width: 40%;
    height: 100%;
}

.informacoes,
.contato {
    margin: 100px 40px 40px 40px;
}

.contato-principal {
    margin: 0px 60px 60px 40px;
}

.chamada {
    margin-top: 30px;
    margin-left: 20px;
}

.video {
    margin: 40px;
}

.video img {
    max-width: 100%;
    max-height: 100%;
}

.conteudo-pagina {
    width: 100%;
    height: 100%;
    text-align: center;
    margin-bottom: 100px;
}

.titulo-pagina {
    padding: 100px 0px 60px 0px;
    background-color: #2a9ee2;
    text-align: center;
}

.titulo-pagina-2 {
    padding: 70px 0px 10px 0px;
    margin-bottom: 10px;
    background-color: #2a9ee2;
    text-align: center;
}

.informacao-pagina {
    text-align: center;
    margin-top: 30px;
}

.informacao-pagina p {
    color: #333;
}

.rodape {
    width: 100%;
}

.redes-sociais,
.area-contato,
.localizacao {
    width: 33.333%;
    border-top: solid 1px #ccc;
    float: left;
    text-align: center;
    background-color: #f8f8f8;
    height: 250px;
}

.redes-sociais,
.area-contato,
.localizacao p,
span {
    color: #333333;
}

.redes-sociais img {
    margin: 0px 15px 0px 15px;
}

.pagination li {
    display: inline;
    margin-left: 5px;
    margin-right: 5px;
}

.pagination ul {
    list-style-type: none;
}

.form-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin: auto;
    flex-direction: column;
}

.link-padrao {
    color: #1351b4;
    text-decoration: underline;
    font-size: 14px;
    text-align: start;
    font-weight: 400;
}

/* Estilo do botão fixo na lateral */
#chatbot-btn {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px; 
    right: 20px;
    bottom: 20px;
    background-color: #007bff;
    color: white;
    border: none;   
    border-radius: 50%;
    cursor: pointer;
}

/* Estilo da janela do chatbot */
#chatbot-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 640px;
    height: 320px;
    overflow: hidden;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Cabeçalho do chatbot */
#chatbot-header {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border-bottom: 1px solid #ccc;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    font-weight: bold;
}

/* Corpo do chat */
#chat-body{
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    color: #000 !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #f9f9f9;
    width: 100%; /* Mantém a largura responsiva */
}

#chat-body p {
    color: #000 !important;
}

/* Campo de entrada e botão de envio */
#chatbot-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
}

#chat-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#send-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 100em;
    cursor: pointer;
    width: 100px;
}


.close-chat {
    width: auto;
    padding: 8px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
    font-size: 16px;
}

.close-chat:hover {
    color: #1351b4;
}

.portal-noticia {
    display: flex;
    flex-direction: column;
    padding: 56px;
    justify-content: flex-start;   
}

.portal-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 8px;
    align-items: center;
    text-align: start;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: auto;
}

.portal-body {
    display: flex;
    padding: 16px;
}

#chat-input:focus {
    outline: 2px solid #007bff;
}