@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Manrope:300,400,500,600,700&display=swap&subset=latin-ext");

:root {
    --body-bg-color: #f8fafc;
    --theme-bg-color: #ffffff;
    --settings-icon-hover: #8a93a0;
    --developer-color: #f9fafb;
    --input-bg: #f8f9fc;
    --input-chat-color: #8a93a0;
    --border-color: #e6ebf5;
    --body-font: "Manrope", sans-serif;
    --body-color: #1e293b;
    --settings-icon-color: #94a3b8;
    --msg-message: #64748b;
    --chat-text-bg: #f1f5f9;
    /*--theme-color: #0a72f2;*/
    --theme-color: #0a0a1a;
    --msg-date: #94a3b8;
    --button-bg-color: #e7f5ff;
    --button-color: var(--theme-color);
    --detail-font-color: #64748b;
    --msg-hover-bg: rgba(241, 245, 249, 0.6);
    --active-conversation-bg: linear-gradient(
            to right,
            rgba(231, 245, 255, 0.3) 0%,
            rgba(231, 245, 255, 0) 100%
    );
    --overlay-bg: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 65%,
            rgba(255, 255, 255, 1) 100%
    );
    --chat-header-bg: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 78%,
            rgba(255, 255, 255, 0) 100%
    );
}

* {
    outline: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    background-color: var(--body-bg-color);
    font-family: var(--body-font);
    color: var(--body-color);
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.mb-0 {margin-bottom: 0 !important;}

.page-template-template-listar {
    margin: 0 !important;
}

.app {
    display: flex;
    flex-direction: column;
    background-color: var(--theme-bg-color);
    /*max-width: 1600px;*/
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

.header {
    height: 80px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #0a0a1a;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

/*.app .header .logo .menu-icon{*/
/*    display: none;*/
/*}*/

.wrapper {
    width: 100%;
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.conversation-area {
    width: 200px;
    flex-shrink: 0;
}

.detail-area {
    position: absolute;
    background: var(--theme-bg-color);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    right: 20px;
    padding: 30px 30px 0 30px;
    flex-direction: column;
    overflow: auto;
    width: 50%;
    max-height: 80%;
    flex-shrink: 0;
    z-index: 999;
}

.chat-area {
    flex-grow: 1;
}

.logo>a{
    flex-shrink: 0;
    padding: 15px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--body-color);
}
.logo a:visited{
    color: var(--body-color) !important;
}
.logo>a>div{
    line-height: 1;
    margin-left: 5px;
}
.logo img{
    width: 70px;
}
.logo h1{
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}
.chat-top-question{
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}
.chat-top-question button{
    cursor: pointer;
    background: #e7f5ff;
    border-radius: 8px;
    border: 1px solid #d0ebff;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 13px;
    color: #0178f8;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chat-top-question button:hover {
    background: #d0ebff;
    transform: translateY(-1px);
}
.user-settings {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.user-settings > * + * {
    margin-left: 14px;
}

.user-profile { font-size: 45px; }
.user-profile .fa{ color: white; }
.user-profile .user-initials { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #3b54b9;
    font-size: 18px;
    font-weight: bold;
}
.settings {
    color: var(--settings-icon-color);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.conversation-area {
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.msg-profile {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.msg-profile.group {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--border-color);
}

.msg-profile.group svg {
    width: 60%;
}

#btn-biochat-plus,
#btn-agree{
    background-color: var(--theme-color);
    color: white;
    border: none;
    cursor: pointer;
    margin: 15px;
}

.conversation {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.conversation:hover {
    background-color: var(--msg-hover-bg);
    transform: translateY(-1px);
}

.conversation.active {
    background: var(--active-conversation-bg);
    border-left: 4px solid #0a72f2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.conversation.online:before {
    content: "";
    position: absolute;
    background-color: #23be7e;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid var(--theme-bg-color);
    left: 50px;
    bottom: 19px;
}

.conversation-title {
    width: 128px;
    max-height: 50px;
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
}

.conversation-last-message {
    font-size: 11px;
    color: var(--msg-date);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-detail {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.conversation-actions {
    position: absolute;
    right: 0;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.conversation:hover .conversation-actions {
    opacity: 1;
}

.btn-edit-title, .btn-delete-chat {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    padding: 2px;
}

.btn-edit-title:hover {
    color: #4a8cff;
}

.btn-delete-chat:hover {
    color: #ff4a4a;
}

.converstion-detail {
    overflow: hidden;
}

.msg-content {
    font-weight: 500;
    font-size: 13px;
    display: flex;
}

.msg-message {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--msg-message);
}

.msg-date {
    font-size: 14px;
    color: var(--msg-date);
    margin-left: 3px;
}

.msg-date:before {
    content: "•";
    margin-right: 2px;
}

.add {
    position: sticky;
    bottom: 25px;
    background-color: var(--theme-color);
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3e%3cpath d='M12 5v14M5 12h14'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 28px;
    box-shadow: 0 0 16px var(--theme-color);
    margin: auto auto -55px;
    flex-shrink: 0;
    z-index: 1;
    cursor: pointer;
}

.overlay {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 340px;
    flex-shrink: 0;
    background: var(--overlay-bg);
    height: 80px;
}

.chat-area {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.chat-area-header {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    background: var(--chat-header-bg);
}

.chat-area-profile {
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-area-title {
    font-size: 18px;
    font-weight: 600;
}

.chat-area-main {
    flex-grow: 1;
}

.chat-msg-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    font-size: 38px;
    color: var(--input-chat-color);
}
.chat-msg-img i{
    position: relative;
    margin-top: -10px;
}

.chat-msg-profile {
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: -20px;
    position: relative;
}

.chat-msg-date {
    position: absolute;
    left: calc(100% + 12px);
    bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--msg-date);
    white-space: nowrap;
}
.chat-msg-options{
    position: absolute;
    padding: 0 12px;
    display: flex;
    right: calc(100% + 150px);
    bottom: 0;
    top: 12px;
    background: #e7f5ff;
    gap: 12px;
    border-radius: 8px;
    border: 1px solid #d0ebff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.chat-msg-options button{
    background: none;
    color: #004080;
    cursor: pointer;
    border: none;
    padding: 0;
}
.chat-msg-options button:hover{
    background: none;
    color: var(--theme-color);
    opacity: 1;
}
.chat-msg-options .chat-btn-copy{
    white-space: nowrap;
    padding: 5px 10px;
    font-size: 12px;
}

.chat-msg {
    display: flex;
    padding: 0 20px 45px;
}

.chat-msg-content {
    margin-left: 12px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chat-msg-text {
    background-color: var(--chat-text-bg);
    padding: 16px;
    border-radius: 18px 18px 18px 4px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-msg-text + .chat-msg-text {
    margin-top: 10px;
}

/*.chat-msg-text {*/
/*    color: var(--chat-text-color);*/
/*}*/

.chat-bio {
    flex-direction: row-reverse;
}

.chat-bio .chat-msg-content {
    margin-left: 0;
    margin-right: 12px;
    align-items: flex-end;
}

.chat-bio .chat-msg-text {
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 1px 2px rgba(1, 120, 248, 0.2);
}

.chat-bio .chat-msg-date {
    left: auto;
    right: calc(100% + 12px);
}

.chat-msg-text img {
    max-width: 300px;
    width: 100%;
}

.chat-area-footer {
    display: flex;
    border-top: 1px solid var(--border-color);
    width: 100%;
    padding: 15px 20px;
    align-items: center;
    background-color: var(--theme-bg-color);
    position: sticky;
    bottom: 0;
    left: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
    /*flex-direction: column;*/
}
.chat-area-footer .control-send{
    flex: 1;
    margin-right: 20px;
}
.chat-area-footer textarea {
    border: 1px solid #e0e4e8;
    color: var(--body-color);
    background-color: var(--input-bg);
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    /*margin: 0 12px;*/
    /*width: 95%;*/
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
    min-height: 44px;
    max-height: 25dvh;
    overflow-y: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.chat-area-footer textarea:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px rgba(1, 120, 248, 0.1);
    outline: none;
}
.chat-area-footer small {
    font-size: 11px;
}
.chat-area-footer .control-btn{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 0;
    flex-direction: column;
    align-self: flex-start;
}
.chat-area-footer button{
    border: 0;
    cursor: pointer;
    font-size: 20px;
    padding: 6px 10px;
}
.chat-area-footer .control-btn .btn-sugestion{
    font-size: 10px;
    padding: 4px 5px;
    margin-top: 6px;
}

.chat-area-footer input::placeholder {
    color: var(--input-chat-color);
}

.detail-area-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-area-header .msg-profile {
    margin-right: 0;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.detail-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-color);
    opacity: 0.7;
}

.detail-button {
    border: 0;
    background-color: #0178f8;
    padding: 10px 14px;
    border-radius: 5px;
    color: #ffffff !important;
    font-size: 14px;
    flex-grow: 1;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.detail-button svg {
    width: 18px;
    margin-right: 10px;
}

.detail-button:not(:last-child) {
    margin-right: 8px;
}

.detail-buttons {
    margin-top: 20px;
    display: flex;
    width: 100%;
}

.detail-area input {
    /*background-color: transparent;*/
    border: none;
    width: 100%;
    color: var(--body-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.detail-area input::placeholder {
    color: var(--detail-font-color);
}

.detail-changes {
    margin: 40px 0;
}

.detail-change {
    color: var(--detail-font-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    display: flex;
}

.detail-change svg {
    width: 16px;
    margin-left: auto;
}

.colors {
    display: flex;
    margin-left: auto;
}

.color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
}

.color.selected {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.color:not(:last-child) {
    margin-right: 4px;
}

.detail-photo-title {
    display: flex;
    align-items: center;
}

.detail-photo-title svg {
    width: 16px;
}

.detail-photos {
    margin-top: 30px;
    text-align: center;
}

.detail-photo-title {
    color: var(--detail-font-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.detail-photo-title svg {
    margin-right: 8px;
}

.detail-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-rows: repeat(3, 60px);
}

.detail-photo-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}

.view-more {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 15px;
    margin: 25px 0;
}

.chat-area-group {
    flex-shrink: 0;
    display: flex;
}

.chat-area-group * {
    border: 2px solid var(--theme-bg-color);
}

.chat-area-group * + * {
    margin-left: -5px;
}

.chat-area-group span {
    width: 32px;
    height: 32px;
    background-color: var(--button-bg-color);
    color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.chat-suggestions{
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.chat-suggestions.open{
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.chat-suggestions .close-suggestions {
    display: none;
    position: absolute;
    top: -10px;
    right: 10px;
    background: none;
    border: none;
    color: black;
    font-size: 28px;
    cursor: pointer;
}
.chat-suggestions.open .close-suggestions {
    display: block;
}
.chat-suggestions .chat-suggestions-category select {
    width: 100%;
}
.chat-suggestions .chat-suggestions-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.chat-suggestions .suggestion{
    flex-grow: 1;
    width: 33%;
    padding: 10px;
}
.chat-suggestions .suggestion button{
    background: #f4f4f4;
    color: var(--body-color);
    border: 1px solid #eef2f4;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: left;
    line-height: normal;
    width: 100%;
    height: 100%;
}

.chat-suggestions-category {
    font-family:
            'Roboto','Helvetica','Arial',sans-serif;
    position: relative;
    width: 420px;
}

.chat-suggestions-category .select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 350px;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
    cursor: pointer;
}

/* Remove focus */
.chat-suggestions-category .select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0,0,0, 0);
}

/* Use custom arrow */
.chat-suggestions-category .select-text {
    appearance: none;
    -webkit-appearance:none
}

.chat-suggestions-category:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}


/* LABEL ======================================= */
.chat-suggestions-category .select-label {
    color: rgba(0,0,0, 0.26);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label,
.select-text:valid ~ .select-label {
    color: var(--theme-color);
    top: -20px;
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.chat-suggestions-category .select-bar {
    position: relative;
    display: block;
    width: 350px;
}

.chat-suggestions-category .select-bar:before,
.chat-suggestions-category .select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #2F80ED;
    transition: 0.2s ease all;
}

.chat-suggestions-category .select-bar:before {
    left: 50%;
}

.chat-suggestions-category .select-bar:after {
    right: 50%;
}

/* active state */
.chat-suggestions-category .select-text:focus ~ .chat-suggestions-category .select-bar:before,
.chat-suggestions-category .select-text:focus ~ .chat-suggestions-category .select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.chat-suggestions-category .select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.6);
}
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto 10%;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 1200px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}
.modal-header {
    padding: 2px 16px;
    min-height: 50px;
    border-top: 5px solid var(--theme-color);
}
.modal-header h2{
    float: left;
    margin-bottom: 0;
}
.modal-body {
    padding: 2px 16px;
}
.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-loading{
    display: none;
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
}
/* Modal Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@media (max-width: 1120px) {
    .detail-area {
        display: none;
    }
}

.detail-area .progress-area {
    margin-top: 20px;
    min-width: 200px;
    text-align: center;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 1px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    transition: width 0.4s ease;
}

.chat-bar {
    background-color: #2196f3; /* Azul para o chat */
}

.geral-bar {
    background-color: #ff9800; /* Laranja para o geral */
}

.progress-label {
    font-size: 10px;
    margin-bottom: 5px;
    color: var(--body-color);
    opacity: 0.7;
}



.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}
.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}
.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}
.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}

/* ACF */
.acf-field label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.acf-field {
    margin-bottom: 1rem;
}
.acf-field input,
.acf-field textarea,
.acf-field select {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.ai-options {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    margin: 0 20px 15px 0;
}
.ai-options select{
    line-height: 1.4;
}

/*adaptacao celular*/
@media (max-width: 575px) {
    .app .header .chat-top-question { display: none; }
    .chat-suggestions{
        width: 90%;
        max-height: 200px;
        overflow: auto;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    .chat-suggestions-category{ width: auto; }
    .chat-suggestions .suggestion{ width: 50%; }
    .chat-suggestions .suggestion button {
        font-size: 13px;
        padding: 10px;
        border-radius: 8px;
    }
    .detail-area {
        width: 100%;
        right: 0;
        padding: 20px;
        border-radius: 0;
    }
    .acf-field-66ebe44e93597,
    .acf-field-66ebe45d93598{
        width: 100% !important;
    }
    .chat-area-footer {
        padding: 12px 15px;
    }
    .chat-area-footer textarea {
        width: 100%;
        padding: 12px;
    }
}
@media screen and (max-width: 768px) {
    .app .header .logo {
        display: flex;
        align-items: center;
        z-index: 999;
    }
    .app .header .logo .menu-icon{
        display: block;
        margin-left: 20px;
    }
    .app .header .logo .menu-icon button{
        padding: 8px;
        background-color: var(--theme-color);
        color: white;
        border: none;
        border-radius: 4px;
        box-shadow: 0px 0px 1px 1px;
        -ms-transition: all 400ms;
        -o-transition: all 400ms;
        transition: all 400ms;
    }
    .chat-area-footer .control-send small{ display: none }
    .wrapper {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }
    
    .conversation-area {
        width: 100%;
        height: auto;
        overflow: hidden;
        transition: all 0.3s ease;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        position: fixed;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--theme-bg-color);
        flex-direction: row;
    }
    
    .conversation-area.active {
        max-height: 80vh;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

    .conversation-list{
        padding: 10px 5px 8px;
    }
    
    .chat-area {
        position: relative;
        height: calc(100vh - 280px);
        width: 100%;
    }
    
    .chat-area-header {
        padding: 10px;
    }
    
    .chat-area-footer {
        padding: 10px !important;
    }
    
    .chat-area-main {
        padding: 10px !important;
        margin-top: 70px;
    }
    
    .control-btn {
        flex-direction: column;
        gap: 10px;
    }
    
    .new-message-button {
        width: 100%;
        height: 40px;
        margin-top: 5px;
    }
    
    .btn-sugestion {
        width: 100%;
        font-size: 14px;
        padding: 8px 5px;
        white-space: normal;
    }
    
    .questions {
        width: 100%;
        border-bottom: none;
        padding: 10px 5px 0px;
    }
    
    .questions header {
        margin-bottom: 0px;
    }

    .question-list-header {
        padding: 8px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f8f9fa;
        border-bottom: 1px solid var(--border-color);
        margin: 0;
    }
    
    .question-list-header button,
    .conversation-list button {
        padding: 4px 8px;
        background: transparent;
        border: 1px solid #dee2e6;
        color: #495057;
        cursor: pointer;
    }
    
    .question-list-header span {
        font-weight: 600;
        font-size: 16px;
    }
    
    .question-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 10px;
        gap: 5px;
        background-color: #f8f9fc;
        border-bottom: 1px solid var(--border-color);
    }
    
    .question-list .question-id {
        margin: 5px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        font-size: 14px;
        font-weight: 600;
        background-color: #e9ecef;
        border: 1px solid #dee2e6;
        color: #495057;
        text-decoration: none;
    }
    
    .question-list .question-id.active {
        background-color: var(--theme-color);
        color: white;
        border-color: var(--theme-color);
    }
    
    .question-list .question-id.respondida {
        background-color: #d4edda;
        color: #155724;
        border-color: #c3e6cb;
    }
    
    .question-list .question-id.respondida.active {
        background-color: #28a745;
        color: white;
        border-color: #28a745;
    }
    
    .mobile-questions-toggle {
        display: none;
    }
    
    .table-responsive {
        border: 0;
        width: 100%;
        overflow-x: auto;
    }
    
    .priorization-options table {
        min-width: 100%;
    }
    
    .priorization-options th,
    .priorization-options td {
        padding: 8px 5px !important;
        font-size: 14px;
    }
    
    /* Esconder overlay em mobile */
    .overlay {
        display: none;
    }
    
    /* Melhor apresentação do cabeçalho da pergunta em dispositivos móveis */
    .question .question-header {
        padding: 12px;
        flex-direction: column;
    }
    
    .question .question-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .question .question-header .statement {
        width: 100%;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(0,0,0,0.1);
        font-size: 15px;
        line-height: 1.4;
    }
    
    .question .question-header .question-id {
        margin-bottom: 5px;
    }
}

@media (max-width: 1199px) {
    .app .header .logo a>div { display: none; }
}
