/* ==========================================================================
   Dicas do Altivo - tema custom (layout estilo WhatsApp)
   Importado do Claude Design. Verde da marca: #00a884
   ========================================================================== */

:root {
    --da-green: #00a884;
    --da-green-dark: #06846b;
    --da-green-deep: #008069;
    --da-wa: #25d366;
    --da-wa-ink: #06281b;
    --da-bg: #f0f2f5;
    --da-bg-2: #d1d7db;
    --da-chat-bg: #efeae2;
    --da-ink: #111b21;
    --da-ink-2: #3b4a54;
    --da-muted: #667781;
    --da-muted-2: #8696a0;
    --da-line: #e9edef;
    --da-field: #d1d7db;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--da-bg-2);
    color: var(--da-ink);
}

input,
button,
textarea,
select {
    font-family: inherit;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 3px;
}

@keyframes da-pop {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes da-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================ AUTH (login / cadastro) ===================== */

.da-auth {
    min-height: 100vh;
    width: 100%;
    background: var(--da-bg);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.da-auth__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 222px;
    background: var(--da-green);
}

.da-auth--cadastro .da-auth__band {
    height: 200px;
}

.da-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 0 26px;
}

.da-brand__badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.da-brand__name {
    color: #f8fdfb;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.da-foot {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    text-align: center;
    font-size: 12.5px;
    color: var(--da-muted);
    line-height: 1.7;
    padding: 0 24px;
}

.da-foot span {
    color: var(--da-muted-2);
}

/* ---- Login card ---- */
.da-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(11, 20, 26, .15), 0 6px 30px rgba(11, 20, 26, .12);
    overflow: hidden;
    animation: da-pop .25s ease both;
}

.da-card--login {
    width: min(1000px, calc(100% - 48px));
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.da-card--cadastro {
    width: min(760px, calc(100% - 40px));
}

.da-hero {
    padding: 44px 44px 40px;
    border-right: 1px solid var(--da-line);
}

.da-hero__who {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.da-hero__avatar img {
    width: 76px;
    height: 76px;
    flex: none;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px var(--da-green);
}

.da-hero__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--da-ink);
    line-height: 1.1;
}

.da-hero__role {
    font-size: 14px;
    color: var(--da-muted);
    margin-top: 4px;
}

.da-hero__title {
    font-size: 27px;
    line-height: 1.25;
    color: var(--da-ink);
    font-weight: 700;
    margin: 0 0 16px;
    text-wrap: balance;
}

.da-hero__lead {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--da-ink-2);
    margin: 0 0 22px;
}

.da-checks {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
}

.da-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.da-check__mark {
    color: var(--da-green);
    flex: none;
    margin-top: 1px;
    font-weight: 700;
}

.da-check span {
    font-size: 14.5px;
    color: var(--da-ink-2);
    line-height: 1.5;
}

.da-login {
    padding: 44px 40px 40px;
    background: #fbfbfb;
}

.da-login__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--da-ink);
    margin: 0 0 4px;
}

.da-login__sub {
    font-size: 14px;
    color: var(--da-muted);
    margin: 0 0 24px;
}

.da-login__split {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--da-line);
    text-align: center;
}

.da-login__split p {
    font-size: 13px;
    color: var(--da-muted-2);
    margin: 0 0 12px;
}

/* ---- Botoes ---- */
.da-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--da-green);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 9px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .06);
    text-decoration: none;
    transition: background .15s ease;
}

.da-btn:hover {
    background: var(--da-green-dark);
}

.da-btn--block {
    width: 100%;
}

.da-btn--sm {
    font-size: 15.5px;
    padding: 14px;
}

.da-btn--wa {
    background: var(--da-wa);
    color: var(--da-wa-ink);
}

.da-btn--wa:hover {
    background: #1fbe5b;
}

.da-btn--ghost {
    background: transparent;
    color: var(--da-green);
    box-shadow: none;
    padding: 0;
    font-size: 14px;
}

.da-btn--ghost:hover {
    background: transparent;
    color: var(--da-green-dark);
}

.da-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--da-green);
    text-decoration: none;
    font-weight: 600;
}

.da-link--muted {
    color: var(--da-muted);
    font-weight: 400;
    font-size: 13.5px;
}

/* ---- Campos (form real do Zend recebe estas classes via CSS de contexto) ---- */
.da-field {
    margin-bottom: 18px;
}

.da-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--da-ink-2);
    margin-bottom: 7px;
}

.da-req {
    color: #e34d4d;
}

.da-input,
.da-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--da-field);
    border-radius: 8px;
    font-size: 15px;
    color: var(--da-ink);
    outline: none;
    background: #fff;
}

.da-input:focus,
.da-select:focus {
    border-color: var(--da-green);
}

/* Estiliza o form gerado pelo Zend dentro dos containers de auth */
.da-login form input[type="text"],
.da-login form input[type="email"],
.da-login form input[type="password"],
.da-login form input[type="tel"],
.da-cad form input[type="text"],
.da-cad form input[type="email"],
.da-cad form input[type="password"],
.da-cad form input[type="tel"],
.da-cad form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--da-field);
    border-radius: 8px;
    font-size: 15px;
    color: var(--da-ink);
    outline: none;
    background: #fff;
    margin-bottom: 14px;
}

.da-login form input:focus,
.da-cad form input:focus,
.da-cad form select:focus {
    border-color: var(--da-green);
}

.da-login form label,
.da-cad form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--da-ink-2);
    margin-bottom: 7px;
}

.da-login form .btn,
.da-login form button[type="submit"],
.da-login form input[type="submit"],
.da-cad form .btn,
.da-cad form button[type="submit"],
.da-cad form input[type="submit"] {
    width: 100%;
    background: var(--da-green);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.da-login form .btn:hover,
.da-cad form .btn:hover {
    background: var(--da-green-dark);
}

.da-login form input[type="submit"]:hover,
.da-cad form input[type="submit"]:hover {
    background: var(--da-green-dark);
}

/* Reset da estrutura legada do Zend (fieldset/dl/dd) dentro dos cards de auth.
   Sem isto os <fieldset> aparecem com a borda padrao do navegador. */
.da-login form fieldset,
.da-cad form fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.da-login form legend,
.da-cad form legend {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--da-green-deep);
    margin: 22px 0 10px;
}

.da-login form dl,
.da-cad form dl {
    margin: 0;
    padding: 0;
}

.da-login form dt,
.da-cad form dt {
    margin: 0;
}

.da-login form dd,
.da-cad form dd {
    margin: 0 0 2px;
}

.da-login form input,
.da-login form select,
.da-cad form input,
.da-cad form select {
    box-sizing: border-box;
}

/* Anula larguras inline (style="width:NNpx") do form legado -> campos full-width */
.da-cad form input[type="text"],
.da-cad form input[type="email"],
.da-cad form input[type="password"],
.da-cad form input[type="tel"],
.da-cad form select {
    width: 100% !important;
    max-width: 100%;
}

/* Checkbox/radio nao recebem o box de campo: ficam inline com o label */
.da-cad form dd.checkbox,
.da-login form dd.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 10px;
}

.da-cad form dd.checkbox input[type="checkbox"],
.da-cad form input[type="radio"] {
    width: auto !important;
    margin: 0;
}

.da-cad form label.checkbox-label,
.da-cad form dd.checkbox label {
    display: inline;
    margin: 0;
    font-weight: 500;
    color: var(--da-muted);
}

/* ---- Cadastro ---- */
.da-cad__head {
    padding: 28px 40px 22px;
    border-bottom: 1px solid #eef1f3;
}

.da-cad__title {
    font-size: 25px;
    font-weight: 700;
    color: var(--da-ink);
    margin: 0 0 6px;
}

.da-cad__sub {
    font-size: 14.5px;
    color: var(--da-muted);
    margin: 0;
}

.da-cad__body {
    padding: 8px 40px 32px;
}

.da-cad__section {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--da-green-deep);
    margin: 26px 0 16px;
}

.da-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--da-muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 14px;
    text-decoration: none;
}

/* ---- Sucesso do cadastro ---- */
.da-done {
    padding: 56px 44px;
    text-align: center;
}

.da-done__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #d9fdd3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.da-done h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--da-ink);
    margin: 0 0 12px;
}

.da-done p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--da-ink-2);
    margin: 0 auto 8px;
    max-width: 460px;
}

.da-done p.muted {
    font-size: 14px;
    color: var(--da-muted);
    margin-bottom: 30px;
}

/* ============================ BLOG (estilo WhatsApp) ===================== */

.da-blog {
    height: 100vh;
    width: 100%;
    background: var(--da-bg-2);
    padding: 19px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.da-blog__shell {
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 31% 1fr;
    background: #fff;
    box-shadow: 0 1px 3px rgba(11, 20, 26, .26);
    overflow: hidden;
    height: 100%;
    min-height: 0;
}

/* Sidebar */
.da-side {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--da-line);
    min-width: 0;
    background: #fff;
    height: calc(100% - 38px);
}

.da-side__head {
    height: 60px;
    flex: none;
    background: var(--da-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.da-side__id {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.da-side__avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.da-side__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--da-ink);
    line-height: 1.1;
}

.da-side__tag {
    font-size: 11.5px;
    color: var(--da-muted);
}

.da-side__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.da-iconbtn {
    border: none;
    background: transparent;
    color: #54656f;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
}

.da-iconbtn:hover {
    background: #e3e6e8;
}

.da-search {
    padding: 8px 12px;
    flex: none;
    background: #fff;
}

.da-search__box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--da-bg);
    border-radius: 8px;
    padding: 7px 14px;
}

.da-search__box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--da-ink);
    width: 100%;
}

.da-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    max-height: calc(100vh - 110px);
}

.da-list__label {
    padding: 14px 24px 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--da-green-deep);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.da-item {
    display: flex;
    gap: 13px;
    padding: 12px 16px 13px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--da-bg);
    align-items: flex-start;
    background: #fff;
}

.da-item:hover {
    background: #f5f6f6;
}

.da-item.is-active {
    background: var(--da-bg);
}

.da-item__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.da-item__body {
    flex: 1;
    min-width: 0;
}

.da-item__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.da-item__name {
    font-size: 14px;
    color: var(--da-ink-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.da-item__time {
    font-size: 11.5px;
    color: var(--da-muted);
    flex: none;
}

.da-item__preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    color: var(--da-ink);
    font-weight: 500;
    margin-top: 4px;
    text-wrap: pretty;
}

.da-chip {
    font-size: 11px;
    font-weight: 600;
    color: #027eb5;
    background: #e7f3fb;
    border-radius: 10px;
    padding: 1px 9px;
    display: inline-block;
    margin-top: 7px;
}

.da-list__foot {
    text-align: center;
    font-size: 12px;
    color: var(--da-muted-2);
    padding: 20px 16px 28px;
    line-height: 1.6;
}

.da-loading {
    text-align: center;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@keyframes da-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.da-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--da-green);
    border-radius: 50%;
    animation: da-spin 0.8s linear infinite;
}

/* Painel de leitura */
.da-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    background: var(--da-chat-bg);
    height: 100%;
}

.da-main__bg {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-color: var(--da-chat-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23d8d1c4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='28' y='30' width='40' height='34' rx='3'/%3E%3Cpath d='M28 42h40M48 30v12'/%3E%3Cpath d='M150 36h26l16 16-26 26-16-16z'/%3E%3Ccircle cx='168' cy='52' r='4'/%3E%3Cpath d='M40 150h8l6 26h34l6-20H52'/%3E%3Ccircle cx='62' cy='184' r='4'/%3E%3Ccircle cx='88' cy='184' r='4'/%3E%3Cpath d='M180 150l4 11 12 1-9 8 3 12-10-7-10 7 3-12-9-8 12-1z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 380px;
}

.da-main__head {
    position: relative;
    z-index: 2;
    height: 60px;
    flex: none;
    background: var(--da-bg);
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 16px;
    border-left: 1px solid var(--da-line);
}

.da-main__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.da-main__id {
    flex: 1;
    min-width: 0;
}

.da-main__name {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--da-ink);
    line-height: 1.15;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.da-main__meta {
    font-size: 12.5px;
    color: var(--da-muted);
}

.da-wa-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--da-wa);
    color: var(--da-wa-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 20px;
}

.da-thread {
    position: relative;
    z-index: 2;
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 0;
    padding: 22px 8%;
    max-height: calc(100vh - 60px - 38px - 60px - 18px);
}

.da-thread__date {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.da-thread__date span {
    background: #fff;
    color: #54656f;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(11, 20, 26, .1);
}

.da-thread__lock {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.da-thread__lock span {
    background: #ffeecd;
    color: #7a6320;
    font-size: 11.5px;
    padding: 5px 16px;
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
    line-height: 1.5;
}

.watermark {
    width: 100%;
    z-index: 2;
    background: var(--da-bg);
}

.watermark__text {
    font-size: 13px;
    color: var(--da-muted);
    text-align: center;
    padding-bottom: 2px;
    margin: 0;
}

.watermark__link {
    color: var(--da-green);
    text-decoration: none;
}

.da-q {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4px;
}

.da-q__who {
    font-size: 12px;
    color: var(--da-muted);
    margin: 0 0 5px 4px;
    font-weight: 600;
}

.da-bubble {
    max-width: 80%;
    box-shadow: 0 1px 1px rgba(11, 20, 26, .1);
    animation: da-fade .2s ease both;
}

.da-bubble--in {
    background: #fff;
    border-radius: 0 9px 9px 9px;
    padding: 9px 13px 8px;
}

.da-bubble--in .da-bubble__txt {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--da-ink);
    line-height: 1.4;
    text-wrap: pretty;
}

.da-bubble--in .da-bubble__time {
    text-align: right;
    font-size: 11px;
    color: var(--da-muted-2);
    margin-top: 4px;
}

.da-a__who {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-end;
    margin: 18px 4px 6px 0;
}

.da-a__who span {
    font-size: 12px;
    color: var(--da-muted);
    font-weight: 600;
}

.da-a__who img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.da-arow {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.da-arow:last-child {
    margin-bottom: 0px;
}

.da-bubble--out {
    background: #d9fdd3;
    border-radius: 9px 0 9px 9px;
    padding: 8px 13px 7px;
}

.da-bubble--out .da-bubble__txt {
    font-size: 14.7px;
    color: var(--da-ink);
    line-height: 1.5;
}

.da-bubble__txt ul,
.da-bubble__txt ol {
    padding-left: 22px;
}

.da-bubble__txt a {
    color: #027eb5;
    text-decoration: underline;
    word-break: break-word;
}

.da-bubble__txt * {
    margin: 0;
}

.da-bubble--out .da-bubble__time {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 3px;
    font-size: 11px;
    color: var(--da-muted);
}

.da-ticks {
    font-size: 13px;
    color: #53bdeb;
    line-height: 1;
}

.da-compose {
    width: 100%;
    z-index: 2;
    flex: none;
    background: var(--da-bg);
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
}

.da-compose__field {
    flex: 1;
    background: #fff;
    border-radius: 22px;
    padding: 11px 18px;
}

.da-compose__field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14.5px;
    color: var(--da-ink);
    background: transparent;
}

.da-compose__send {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--da-green);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.da-compose__send:hover {
    background: var(--da-green-dark);
}

.label-danger {
    color: #e34d4d;
    font-weight: 600;
}

.label-alert {
    color: #f0ad4e;
    font-weight: 600;
}

.label-success {
    color: #5cb85c;
    font-weight: 600;
}

.messageError {
    border-left: 3px solid #e34d4d;
    background: #ffbbbb;
    padding: 8px 12px;
}

.messageAlert {
    border-left: 3px solid #f0ad4e;
    background: #fff3cd;
    padding: 8px 12px;
}

.messageSuccess {
    border-left: 3px solid #5cb85c;
    background: #dff0d8;
    padding: 8px 12px;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, .3) !important;
}

.d-none {
    display: none !important;
}

ul.errors li {
    color: #e34d4d;
    margin-bottom: 4px;
}

.hint+input {
    margin-bottom: 0 !important;
}

.hint {
    margin-top: -10px;
    font-size: 12px
}

/* ============================ Modal Pergunta ================= */
#modalPergunta .modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(11, 20, 26, .18);
    overflow: hidden;
}

#modalPergunta .modal-header {
    background: var(--da-green);
    border-bottom: none;
    padding: 16px 20px;
}

#modalPergunta .modal-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

#modalPergunta .modal-header .close {
    color: #fff;
    opacity: .8;
    text-shadow: none;
    font-size: 24px;
}

#modalPergunta .modal-header .close:hover {
    opacity: 1;
}

#modalPergunta .modal-body {
    padding: 24px 24px 20px;
}

#modalPergunta .zend_formbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
}

#modalPergunta .form-group {
    margin-bottom: 16px;
    width: 100%;
}

#modalPergunta .form-group.uf {
    width: calc(30% - 4px);
}

#modalPergunta .form-group.cidade {
    width: calc(70% - 4px);
}

#modalPergunta label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--da-ink-2);
    margin-bottom: 6px;
}

#modalPergunta .form-control {
    border: 1px solid var(--da-field);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14.5px;
    color: var(--da-ink);
    box-shadow: none;
    transition: border-color .15s;
    width: 100%;
}

#modalPergunta .form-control:focus {
    border-color: var(--da-green);
    box-shadow: 0 0 0 2px rgba(0, 168, 132, .12);
}

#modalPergunta .form-control[name="nome"] {
    width: 100%;
}

#modalPergunta textarea.form-control {
    resize: vertical;
    min-height: 90px;
    width: 100%;
}

#modalPergunta input[type="submit"],
#modalPergunta .btn-primary {
    width: 100%;
    background: var(--da-green);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 6px;
    transition: background .15s;
}

#modalPergunta input[type="submit"]:hover,
#modalPergunta .btn-primary:hover {
    background: var(--da-green-dark);
}

#modalPergunta fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

#modalPergunta .fieldset-elements {
    padding: 0;
}

#modalPergunta .inputHidden {
    display: none;
}

/* ============================ Responsivo ===================== */
@media (max-width: 820px) {
    .da-card--login {
        grid-template-columns: 1fr;
    }

    .da-hero {
        border-right: none;
        border-bottom: 1px solid var(--da-line);
    }

    .da-blog {
        height: auto;
        min-height: 100vh;
        padding: 0;
    }

    .da-blog__shell {
        grid-template-columns: 1fr;
    }

    .da-main {
        display: none;
    }

    .da-blog__shell.show-thread .da-side {
        display: none;
    }

    .da-blog__shell.show-thread .da-main {
        display: flex;
        height: 100vh;
    }

    .da-side {
        height: 100vh;
    }

    .da-thread {
        max-height: calc(100vh - 60px - 60px);
    }

    .da-iconbtn {
        display: block !important;
    }
}