body {
    font-family: "Roboto Light", "Helvetica Neue", Helvetica, Roboto, sans-serif;
    line-height: 1.5;
    margin: 12px;
    color: #333;
}

h1 {
    color: #001d3e;
    font-size: xx-large;
}

h2 {
    color: #003470;
    font-size: x-large;
}

h3 {
    color: #e65d46;
    font-size: larger;
}

h5 {
    color: #004ca3;
    font-size: small;
    font-weight: bold;
    text-align: left;
}

h6 {
    color: #005ecc;
    font-size: small;
    font-style: italic;
    font-weight: bold;
    text-align: left;
}

p, li {
    text-align: justify;
}

.section {
    margin-bottom: 24px;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.navbar, .navbar-brand, .nav-link {
    color: #ffffff;
    background-color: #001d3e;
    text-decoration: none;
}

.navbar-brand:hover,
.nav-link:hover {
    color: #d3d3d3; /* cinza claro */
}

.bi {
    color: #001d3e;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.footer {
    color: #ffffff;
    background-color: #001d3e;
    text-decoration: none;
}

.footer-text {
    font-size: 0.75rem; /* fonte menor */
    color: #0d4d6a; /* cor pedida */
}

.message-area {
    position: fixed;
    top: 50px;
    width: 60%;
    z-index: 1050;
    display: none;
    font-size: small;
    justify-content: center;
}

.accordion-button:not(.collapsed) {
    background-color: #deecff;
    color: #0b1d60;
}

.accordion-button {
    transition: background-color 400ms ease, border 400ms ease;
}

/* Estado EXPANDIDO (clicado) */
.accordion-button:not(.collapsed) {
    background-color: #f0f8ff; /* Exemplo: azul claro */
    color: #0d6efd; /* Texto azul Bootstrap */
    border: 2px solid #0d6efd; /* Nova borda */
    border-radius: 6px;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 70vh;
    border: 1px solid #ccc; /* cinza claro */
    border-radius: 8px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 85%;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.message.user {
    background-color: #d1e7dd;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    text-align: right;
}

.message.bot {
    background-color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 0;
    border: 1px solid #dee2e6;
    text-align: left;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-input {
    border-top: 1px solid #dee2e6;
    padding: 0.75rem;
    background-color: #fff;
}

.chat-input textarea {
    resize: none;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    height: auto;
    min-height: 42px;
    max-height: 120px;
    overflow-y: auto;
}

.chat-input button {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    padding: 0;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }
}


.rsmr-a{
    text-decoration: none;
    color: #393939;
}

.fa-eye{
    color: #393939;
}