* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sidebar-bg: #17243a;
    --sidebar-dark: #111c2e;
    --sidebar-hover: #213451;
    --sidebar-active: #2e78d2;

    --page-bg: #f3f5f8;
    --card-bg: #ffffff;
    --topbar-bg: #ffffff;

    --text-main: #263238;
    --text-secondary: #7b8794;
    --text-light: #d8e0ea;

    --border: #e5e9ef;
    --accent: #2e78d2;

    --sidebar-width: 245px;
    --topbar-height: 64px;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: var(--page-bg);
    color: var(--text-main);
}

/* =========================================================
   ESTRUTURA PRINCIPAL
   ========================================================= */

.app-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;

    background: var(--sidebar-bg);
    color: white;

    display: flex;
    flex-direction: column;

    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
    z-index: 20;
}

.sidebar-brand {
    height: 74px;

    display: flex;
    align-items: center;

    padding: 0 24px;

    background: var(--sidebar-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.account-box {
    padding: 22px 24px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8fa0b5;
}

.account-name {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;

    padding: 16px 12px;
    gap: 5px;
}

.menu-item {
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 0 15px;

    color: var(--text-light);
    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.menu-item:hover {
    background: var(--sidebar-hover);
    color: #ffffff;
}

.menu-item.active {
    background: var(--sidebar-active);
    color: #ffffff;
}

.menu-icon {
    width: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================================================
   ÁREA PRINCIPAL
   ========================================================= */

.main-area {
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;

    margin-left: var(--sidebar-width);
}

/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    height: var(--topbar-height);

    background: var(--topbar-bg);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 10;
}

.topbar-title {
    font-size: 15px;
    font-weight: 600;
    color: #536171;
}

.topbar-account {
    display: flex;
    align-items: center;
}

.login-button {
    border: 1px solid var(--accent);
    background: transparent;

    color: var(--accent);

    padding: 8px 19px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.login-button:hover {
    background: var(--accent);
    color: white;
}

/* =========================================================
   CONTEÚDO
   ========================================================= */

.content {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 30px;
}

.page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.page-heading h1 {
    font-size: 25px;
    font-weight: 600;

    margin-bottom: 5px;
}

.page-heading p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* =========================================================
   CARDS
   ========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 28px;
}

.stat-card {
    min-height: 145px;

    background: var(--card-bg);

    border: 1px solid var(--border);
    border-radius: 7px;

    padding: 22px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 2px 7px rgba(25, 40, 60, 0.04);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    color: var(--text-secondary);
}

.stat-value {
    font-size: 32px;
    line-height: 1;

    margin-top: 17px;
    margin-bottom: 10px;

    font-weight: 600;
    color: #263238;
}

.stat-description {
    font-size: 12px;
    color: #9aa5b1;

    margin-top: auto;
}

.status-offline {
    color: #d45b5b;
    font-size: 22px;
}

/* =========================================================
   ÁREA DOS BOTS
   ========================================================= */

.bots-section {
    background: var(--card-bg);

    border: 1px solid var(--border);
    border-radius: 7px;

    box-shadow: 0 2px 7px rgba(25, 40, 60, 0.04);

    overflow: hidden;
}

.section-header {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border-bottom: 1px solid var(--border);
}

.section-header h2 {
    font-size: 17px;
    font-weight: 600;

    margin-bottom: 4px;
}

.section-header p {
    font-size: 12px;
    color: var(--text-secondary);
}

.empty-bots {
    min-height: 310px;

    padding: 50px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.empty-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #eef3f9;
    color: #8fa5bd;

    font-size: 28px;
}

.empty-bots h3 {
    font-size: 17px;
    font-weight: 600;

    margin-bottom: 8px;
}

.empty-bots p {
    max-width: 460px;

    font-size: 13px;
    line-height: 1.6;

    color: var(--text-secondary);
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --sidebar-width: 72px;
    }

    .sidebar-brand {
        justify-content: center;
        padding: 0;
    }

    .brand-title {
        font-size: 0;
    }

    .brand-title::after {
        content: "EB";
        font-size: 18px;
    }

    .account-box {
        display: none;
    }

    .sidebar-menu {
        padding: 15px 8px;
    }

    .menu-item {
        justify-content: center;
        padding: 0;
    }

    .menu-item span:last-child {
        display: none;
    }

    .menu-icon {
        width: auto;
    }

    .content {
        padding: 20px 15px;
    }

    .topbar {
        padding: 0 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .page-heading h1 {
        font-size: 22px;
    }

    .topbar-title {
        display: none;
    }

    .topbar {
        justify-content: flex-end;
    }
}


/* =========================================================
   HOME V2
   ========================================================= */

/* SVGs */

.menu-icon svg,
.stat-card-icon svg,
.bot-card-icon svg,
.empty-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-icon svg {
    width: 19px;
    height: 19px;
}


/* TOPO DOS CARDS */

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.stat-card-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px;

    border-radius: 8px;

    background: #eef4fb;
    color: var(--accent);
}

.stat-value {
    margin-top: 15px;
}


/* CONTADOR DOS BOTS */

.bots-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 28px;

    padding: 0 11px;

    border: 1px solid #dce3eb;
    border-radius: 14px;

    background: #f7f9fb;

    color: #7b8794;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;
}


/* GRID DOS BOTS */

.bots-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    padding: 22px;
}


/* CARD DO BOT */

.bot-card {
    min-height: 190px;

    display: flex;
    gap: 18px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: #ffffff;
}

.bot-card-preview {
    border-style: dashed;
    background: #fafbfd;
}

.bot-card-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 11px;

    border-radius: 10px;

    background: #eaf2fb;
    color: var(--accent);
}

.bot-card-content {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
}

.bot-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 10px;
}

.bot-card-title-row h3 {
    font-size: 16px;
    font-weight: 600;
}

.bot-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 0 9px;

    border-radius: 12px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.bot-status.locked {
    background: #f0f2f5;
    color: #8b96a3;
}

.bot-card-content > p {
    max-width: 480px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.6;
}

.bot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: auto;
    padding-top: 20px;

    color: #9aa5b1;

    font-size: 11px;
}

.bot-card-footer button {
    min-width: 72px;
    height: 32px;

    border: 1px solid #d8dee6;
    border-radius: 5px;

    background: #f1f3f6;
    color: #9ca6b1;

    font-size: 12px;
    font-weight: 600;

    cursor: not-allowed;
}


/* ESTADO VAZIO COMPACTO */

.compact-empty {
    min-height: 190px;

    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: #ffffff;
}

.compact-empty .empty-icon {
    width: 48px;
    height: 48px;

    padding: 11px;

    margin-bottom: 13px;
}

.compact-empty h3 {
    font-size: 15px;
}

.compact-empty p {
    max-width: 360px;

    font-size: 12px;
}


/* RESPONSIVIDADE V2 */

@media (max-width: 950px) {
    .bots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .section-header {
        align-items: flex-start;
        gap: 15px;
    }

    .bots-grid {
        padding: 15px;
    }

    .bot-card {
        flex-direction: column;
    }

    .bot-card-title-row {
        align-items: flex-start;
    }

    .bot-card-footer {
        align-items: flex-end;
    }
}


/* =========================================================
   BUY BOT - NORMAL BOT
   ========================================================= */

.menu-group {
    display: flex;
    flex-direction: column;
}

.buy-bot-parent {
    position: relative;
}

.menu-arrow {
    margin-left: auto;
    font-size: 15px;
    color: #aab7c6;
}

.submenu {
    display: flex;
    flex-direction: column;

    padding: 4px 0 8px 50px;
}

.submenu-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 32px;

    color: #9fb0c3;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition:
        color 0.16s ease,
        background 0.16s ease;
}

.submenu-item:hover {
    color: #ffffff;
}

.submenu-item.active {
    color: #ffffff;
    font-weight: 600;
}

.submenu-item.active::before {
    content: "";

    position: absolute;
    left: -19px;
    top: 7px;

    width: 3px;
    height: 18px;

    border-radius: 2px;

    background: #25c878;
}


/* CONTEÚDO */

.pricing-content {
    max-width: 1250px;
}

.pricing-heading {
    margin-bottom: 28px;
}


/* GRID */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


/* CARD */

.pricing-card {
    min-height: 650px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e9ef;

    box-shadow: 0 3px 12px rgba(25, 40, 60, 0.05);

    overflow: hidden;
}


/* CABEÇALHOS */

.pricing-plan-header {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.8px;

    color: rgba(30, 40, 50, 0.72);
}

.plan-basic .pricing-plan-header {
    background: #3491d0;
}

.plan-medium .pricing-plan-header {
    background: #df1111;
}

.plan-master .pricing-plan-header {
    background: #f3c431;
}


/* PREÇO */

.pricing-price {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background: #f8f8f8;

    border-bottom: 1px solid #eeeeee;
}

.pricing-price .currency {
    font-size: 18px;
    font-weight: 500;

    color: #4d555d;
}

.pricing-price strong {
    font-size: 38px;
    font-weight: 300;

    color: #30373e;
}


/* LISTA DE RECURSOS */

.pricing-features {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 17px 0;

    background: #ffffff;
}

.feature-placeholder {
    position: relative;

    min-height: 43px;

    border-left: 3px solid transparent;

    transition:
        background 0.16s ease,
        border-color 0.16s ease;
}

.feature-placeholder:hover {
    background: #e9e9e9;
    border-left-color: #25c878;
}

/*
   Esse pseudo-elemento serve apenas para deixar visualmente
   o espaço onde futuramente aparecerá o nome da função.
*/

.feature-placeholder::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 58%;
    height: 1px;

    transform: translate(-50%, -50%);

    background: #f1f2f4;
}

.feature-placeholder:hover::after {
    background: #dadde1;
}


/* RODAPÉ / COMPRAR */

.pricing-footer {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;

    background: #ffffff;
}

.buy-plan-button {
    min-width: 98px;
    height: 38px;

    padding: 0 21px;

    border: 0;
    border-radius: 20px;

    background: #25c878;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 2px 5px rgba(37, 200, 120, 0.22);

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.buy-plan-button:hover {
    background: #20b76d;
    transform: translateY(-1px);
}


/* RESPONSIVIDADE */

@media (max-width: 1050px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .pricing-card {
        min-height: 560px;
    }
}

@media (max-width: 760px) {
    .submenu {
        display: none;
    }

    .menu-arrow {
        display: none;
    }

    .pricing-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* =========================================================
   ATIVACAO
   ========================================================= */

.activation-content {
    max-width: 1450px;
}

.activation-panel {
    width: 100%;
    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 6px;

    box-shadow: 0 2px 8px rgba(25, 40, 60, 0.04);
}

.activation-panel-header {
    padding: 18px 20px;

    display: flex;
    align-items: baseline;
    gap: 8px;

    border-bottom: 1px solid var(--border);
}

.activation-panel-header h2 {
    font-size: 15px;
    font-weight: 600;
    color: #43505d;
}

.activation-panel-header span {
    font-size: 11px;
    color: #99a3ae;
}


/* FORMULARIO */

.activation-form {
    padding: 18px 20px 22px;
}

.activation-field {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-bottom: 15px;
}

.activation-field label {
    font-size: 12px;
    font-weight: 600;
    color: #566270;
}

.activation-field input,
.activation-field select {
    width: 100%;
    height: 40px;

    padding: 0 12px;

    border: 1px solid #d9dfe6;
    border-radius: 3px;

    background: #ffffff;
    color: #4b5866;

    font-size: 13px;

    outline: none;
}

.activation-field input:focus,
.activation-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(46, 120, 210, 0.08);
}

.activation-field input::placeholder {
    color: #a8b1bb;
}


/* CAPTCHA - SOMENTE VISUAL NESTA ETAPA */

.activation-captcha {
    width: 310px;
    min-height: 78px;

    margin-top: 20px;
    margin-bottom: 14px;

    display: flex;
    align-items: center;

    padding: 12px 14px;

    border: 1px solid #d8dde3;
    border-radius: 3px;

    background: #fafafa;
}

.captcha-checkbox {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    margin-right: 13px;

    border: 2px solid #69737d;
    border-radius: 2px;

    background: #ffffff;
}

.captcha-text {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.captcha-text strong {
    font-size: 12px;
    font-weight: 500;
    color: #303840;
}

.captcha-text span {
    font-size: 9px;
    color: #929aa3;
}

.captcha-logo {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #4f83c2;

    font-size: 21px;
    font-weight: 700;
}


/* BOTAO DE ATIVACAO */

.activation-button {
    min-width: 145px;
    height: 38px;

    padding: 0 18px;

    border: 0;
    border-radius: 4px;

    background: #22b89a;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.activation-button:hover {
    background: #1fa78c;
}

.activation-button:active {
    transform: translateY(1px);
}


/* INFORMACOES */

.activation-info {
    margin: 0 20px 20px;
    padding: 14px 0 2px;

    border-top: 1px solid var(--border);
}

.activation-info strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 600;

    color: #65717e;
}

.activation-info p {
    max-width: 850px;

    font-size: 11px;
    line-height: 1.5;

    color: #858f99;
}


/* RESPONSIVO */

@media (max-width: 600px) {

    .activation-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .activation-captcha {
        width: 100%;
    }

    .activation-button {
        width: 100%;
    }

}


/* =========================================================
   LOGIN DA CONTA EMPIREBOT
   ========================================================= */

.site-login-page {
    margin: 0;
    min-height: 100vh;

    background: #f4f5f7;

    font-family: Arial, Helvetica, sans-serif;

    color: #505963;
}

.site-login-wrapper {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 70px 20px 40px;
}

.site-login-box {
    width: 100%;
    max-width: 310px;

    text-align: center;
}


/* MARCA */

.site-login-brand {
    margin-bottom: 14px;
}

.site-login-logo {
    font-size: 82px;
    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -7px;

    color: #e3e5e8;

    user-select: none;
}

.site-login-brand-name {
    margin-top: 8px;

    font-size: 13px;
    font-weight: 700;

    color: #45515d;
}


/* TITULO */

.site-login-heading {
    margin-bottom: 14px;
}

.site-login-heading h1 {
    margin: 0 0 6px;

    font-size: 14px;
    font-weight: 600;

    color: #505963;
}

.site-login-heading p {
    margin: 0;

    font-size: 11px;

    color: #7d8791;
}


/* FORMULARIO */

.site-login-form {
    width: 100%;
}

.site-login-input {
    box-sizing: border-box;

    display: block;

    width: 100%;
    height: 36px;

    margin-bottom: 10px;

    padding: 0 12px;

    border: 1px solid #d8dde2;
    border-radius: 2px;

    background: #ffffff;

    color: #4c5660;

    font-size: 12px;

    outline: none;
}

.site-login-input::placeholder {
    color: #9ba3ab;
}

.site-login-input:focus {
    border-color: #29b89d;

    box-shadow: 0 0 0 2px rgba(41, 184, 157, 0.08);
}


/* CAPTCHA VISUAL */

.site-login-captcha {
    box-sizing: border-box;

    width: 100%;
    min-height: 74px;

    margin: 12px 0;

    padding: 11px 12px;

    display: flex;
    align-items: center;

    text-align: left;

    border: 1px solid #d5d9dd;
    border-radius: 2px;

    background: #fafafa;
}

.site-login-captcha-checkbox {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    margin-right: 12px;

    border: 2px solid #626a72;
    border-radius: 2px;

    background: #ffffff;
}

.site-login-captcha-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.site-login-captcha-text strong {
    font-size: 11px;
    font-weight: 500;

    color: #333a41;
}

.site-login-captcha-text span {
    font-size: 8px;

    color: #9199a1;
}

.site-login-captcha-logo {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #4d82c0;

    font-size: 20px;
    font-weight: 700;
}


/* ENTRAR */

.site-login-submit {
    width: 100%;
    height: 37px;

    border: 0;
    border-radius: 2px;

    background: #21b99b;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: background 0.18s ease;
}

.site-login-submit:hover {
    background: #1ca88d;
}


/* SEPARADOR */

.site-login-separator {
    position: relative;

    margin: 18px 0 16px;

    text-align: center;
}

.site-login-separator::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background: #e0e3e6;
}

.site-login-separator span {
    position: relative;

    display: inline-block;

    padding: 0 10px;

    background: #f4f5f7;

    color: #9199a1;

    font-size: 9px;
}


/* CRIAR CONTA / RECUPERAR SENHA */

.site-login-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.site-login-secondary {
    min-height: 58px;

    padding: 8px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1px solid #e0e3e6;
    border-radius: 28px;

    background: #ffffff;

    color: #555f69;

    font-size: 10px;
    line-height: 1.3;

    cursor: pointer;

    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}

.site-login-secondary:hover {
    border-color: #cbd2d8;
    background: #fafafa;
}

.site-login-action-icon {
    font-size: 15px;
    font-weight: 700;

    color: #737d86;
}


/* VOLTAR */

.site-login-back {
    display: inline-block;

    margin-top: 22px;

    color: #8c959e;

    font-size: 10px;

    text-decoration: none;
}

.site-login-back:hover {
    color: #21a98e;
}


/* MOBILE */

@media (max-width: 480px) {

    .site-login-wrapper {
        padding-top: 42px;
    }

    .site-login-box {
        max-width: 300px;
    }

    .site-login-logo {
        font-size: 70px;
    }

}


/* =========================================================
   CADASTRO DA CONTA EMPIREBOT
   ========================================================= */

.register-code-label {
    margin: 2px 0 8px;

    text-align: center;

    font-size: 10px;
    font-weight: 600;

    color: #626d77;
}

.register-login-text {
    margin-top: 16px;
    margin-bottom: 8px;

    text-align: center;

    font-size: 9px;

    color: #8a939c;
}

.register-login-button {
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 36px;

    border: 1px solid #dfe3e7;
    border-radius: 2px;

    background: #ffffff;

    color: #69737c;

    font-size: 10px;
    font-weight: 500;

    text-decoration: none;

    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}

.register-login-button:hover {
    border-color: #cbd2d8;
    background: #fafafa;
}

/* =========================================================
   REGISTER - MENSAGEM DE ERRO
   ========================================================= */

.register-error {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #e4a3a3;
    border-radius: 5px;
    background: #fff1f1;
    color: #b42318;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
}

/* =========================================================
   BASIC - TEXTO DAS FUNCIONALIDADES
   ========================================================= */

.plan-basic .pricing-features .feature-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    padding: 0 10px;
    box-sizing: border-box;
}



/* =========================================================
   BASIC - REMOVE LINHA CENTRAL DOS ITENS COM TEXTO
   ========================================================= */

.plan-basic .pricing-features .feature-placeholder:not(:empty)::after {
    display: none;
}


.activation-success {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #9eddbb;
    border-radius: 5px;
    background: #edf9f2;
    color: #16794a;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
}


/* =========================================================
   HOME - FREE TRIAL ATIVO
   ========================================================= */

.status-online {
    color: #20b96b;
}

.free-trial-card {
    border-color: #d9e5df;
}

.free-trial-card .bot-card-icon {
    background: #edf9f2;
}

.free-trial-card .bot-card-icon svg {
    stroke: #20b96b;
}

.bot-status.available {
    background: #edf9f2;
    color: #16814c;
}

.trial-bot-details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #68717d;
}

.trial-bot-details strong {
    color: #353d48;
    font-weight: 600;
}

.trial-countdown {
    font-weight: 600;
    white-space: nowrap;
}

.free-trial-card .bot-card-footer button:disabled {
    cursor: default;
    opacity: 0.7;
}


/* =========================================================
   BUY BOT - MODAL BASIC
   ========================================================= */

.buy-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(20, 25, 30, 0.58);
}

.buy-modal-overlay.open {
    display: flex;
}

.buy-modal {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid #d7dce1;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.buy-modal-x {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #aeb4ba;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.buy-modal-icon {
    width: 64px;
    height: 64px;
    margin: 25px auto 4px;
    color: #d3d6d9;
}

.buy-modal-icon svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.buy-modal h2 {
    margin: 5px 20px 23px;
    color: #555d66;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.buy-modal-divider {
    height: 1px;
    background: #e3e6e9;
}

.buy-modal-body {
    padding: 17px 25px 22px;
    background: #fafbfc;
}

.buy-modal-help {
    margin: 0 0 7px;
    color: #4e5964;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.buy-modal-warning {
    margin: 0 0 17px;
    color: #89919a;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.buy-modal-body label {
    display: block;
    margin: 12px 0 6px;
    color: #505963;
    font-size: 12px;
    font-weight: 500;
}

.buy-modal-body input,
.buy-modal-body select {
    display: block;
    width: 100%;
    height: 38px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #d9dde1;
    border-radius: 2px;
    outline: none;
    background: #ffffff;
    color: #525b65;
    font-size: 12px;
}

.buy-modal-body input:focus,
.buy-modal-body select:focus {
    border-color: #77c7bb;
}

.buy-modal-plan-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e6e9ec;
    color: #67717c;
    font-size: 12px;
}

.buy-modal-plan-info strong {
    color: #26a98f;
    font-size: 13px;
}

.buy-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid #e3e6e9;
    background: #ffffff;
}

.buy-modal-footer button {
    min-width: 78px;
    height: 34px;
    padding: 0 14px;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
}

.buy-modal-close {
    border: 1px solid #d6dbe0;
    background: #ffffff;
    color: #68727c;
}

.buy-modal-confirm {
    border: 1px solid #26aa91;
    background: #26aa91;
    color: #ffffff;
}

.buy-modal-confirm:hover {
    background: #22977f;
}


/* =========================================================
   BUY BOT - CRÉDITOS INSUFICIENTES
   ========================================================= */

.insufficient-credit-modal {
    max-width: 430px;
}

.insufficient-credit-icon {
    width: 62px;
    height: 62px;
    margin: 27px auto 5px;
    color: #e3b34d;
}

.insufficient-credit-icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.insufficient-credit-modal h2 {
    margin-bottom: 22px;
}

.insufficient-credit-body {
    padding: 22px 28px 24px;
    background: #fafbfc;
    text-align: center;
}

.insufficient-credit-body > p {
    margin: 0;
    color: #59636e;
    font-size: 12px;
    line-height: 1.55;
}

.credit-summary {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 22px 0;
    padding: 17px 0;
    border-top: 1px solid #e5e8eb;
    border-bottom: 1px solid #e5e8eb;
}

.credit-summary div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.credit-summary span {
    color: #90979f;
    font-size: 11px;
}

.credit-summary strong {
    color: #4e5963;
    font-size: 14px;
}

.credit-summary div:last-child strong {
    color: #26a98f;
}

.insufficient-credit-body .credit-contact-text {
    color: #7e8790;
    font-size: 11px;
}


/* =========================================================
   BUY BOT - COMPRA BASIC CONCLUÍDA
   ========================================================= */

.basic-success-modal {
    max-width: 430px;
}

.basic-success-icon {
    width: 62px;
    height: 62px;
    margin: 27px auto 5px;
    color: #26a98f;
}

.basic-success-icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.basic-success-modal h2 {
    margin-bottom: 22px;
}

.basic-success-body {
    padding: 22px 28px 24px;
    background: #fafbfc;
    text-align: center;
}

.basic-success-body > p {
    margin: 0;
    color: #59636e;
    font-size: 12px;
    line-height: 1.55;
}

.basic-success-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 22px;
    padding: 17px 0;
    border-top: 1px solid #e5e8eb;
    border-bottom: 1px solid #e5e8eb;
}

.basic-success-summary div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.basic-success-summary span {
    color: #90979f;
    font-size: 11px;
}

.basic-success-summary strong {
    color: #4e5963;
    font-size: 13px;
}

.basic-success-summary div:last-child strong {
    color: #26a98f;
}


/* =========================================================
   BASIC BOT - FERRAMENTAS
   ========================================================= */

.bot-configure-button {
    min-width: 92px;
    height: 34px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2e78d2;
    border-radius: 5px;

    background: #ffffff;
    color: #2e78d2;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.bot-configure-button:hover {
    background: #2e78d2;
    color: #ffffff;
    transform: translateY(-1px);
}


.basic-back-link {
    margin-right: 12px;

    color: #647383;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.basic-back-link:hover {
    color: var(--accent);
}


.basic-tools-content {
    max-width: 1320px;
}

.basic-tools-heading {
    margin-bottom: 18px;
}


.basic-binding-card {
    display: flex;
    gap: 50px;

    margin-bottom: 22px;
    padding: 15px 20px;

    border: 1px solid #e3e8ee;
    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 2px 7px rgba(25, 40, 60, 0.035);
}

.basic-binding-card > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.basic-binding-label {
    color: #929daa;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.55px;
}

.basic-binding-card strong {
    color: #3d4955;
    font-size: 13px;
    font-weight: 600;
}


.tool-list-panel {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 3px 12px rgba(25, 40, 60, 0.04);
}


.tool-list-header {
    padding: 20px 23px;

    border-bottom:
        1px solid var(--border);
}

.tool-list-header h2 {
    margin-bottom: 4px;

    font-size: 17px;
    font-weight: 600;
}

.tool-list-header p {
    color: var(--text-secondary);
    font-size: 12px;
}


.tool-module-card {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding: 25px 26px;

    background: #ffffff;
}


.tool-module-main {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 20px;
}


.tool-module-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 13px;

    border-radius: 12px;

    background: #edf4fc;
    color: #2e78d2;
}

.tool-module-icon svg,
.tool-settings-button svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.tool-module-info {
    min-width: 0;
}


.tool-module-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 7px;
}


.tool-module-title-row h3 {
    font-size: 18px;
    font-weight: 650;

    color: #2f3b47;
}


.tool-module-info > p {
    max-width: 650px;

    color: #7d8996;

    font-size: 12px;
    line-height: 1.6;
}


.tool-runtime-detail {
    margin-top: 10px;

    color: #9aa4af;
    font-size: 11px;
}


.tool-runtime-pill {
    min-height: 25px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    border-radius: 14px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}


.tool-runtime-pill.offline {
    background: #fff0f0;
    color: #dc4f4f;
}

.tool-runtime-pill.online {
    background: #eaf9f0;
    color: #1fa866;
}

.tool-runtime-pill.connecting {
    background: #fff8e8;
    color: #c98a19;
}


.tool-runtime-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            currentColor 12%,
            transparent
        );
}


.tool-module-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 27px;
}


.tool-switch-block {
    min-width: 130px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 11px;
}


.tool-switch-label {
    min-width: 55px;

    text-align: right;

    font-size: 12px;
    font-weight: 700;
}


.tool-switch-label.offline {
    color: #d85353;
}

.tool-switch-label.online {
    color: #20a767;
}

.tool-switch-label.connecting {
    color: #c98a19;
}


.runtime-switch {
    border: 0;
    background: transparent;

    cursor: pointer;

    padding: 0;
}

.runtime-switch:disabled {
    cursor: wait;
    opacity: 0.7;
}


.runtime-switch-track {
    width: 54px;
    height: 28px;

    display: block;
    position: relative;

    border-radius: 20px;

    background: #e05a5a;

    box-shadow:
        inset 0 0 0 1px
        rgba(0, 0, 0, 0.06);

    transition:
        background 0.22s ease;
}


.runtime-switch-thumb {
    width: 22px;
    height: 22px;

    position: absolute;

    top: 3px;
    left: 3px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.23);

    transition:
        left 0.22s ease,
        transform 0.22s ease;
}


.runtime-switch.online
.runtime-switch-track {
    background: #27b76f;
}


.runtime-switch.online
.runtime-switch-thumb {
    left: 29px;
}


.runtime-switch.connecting
.runtime-switch-track {
    background: #d9a33a;
}


.runtime-switch.connecting
.runtime-switch-thumb {
    left: 16px;
}


.tool-settings-button {
    min-width: 112px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 15px;

    border: 1px solid #d6dde5;
    border-radius: 6px;

    background: #ffffff;
    color: #566473;

    text-decoration: none;

    font-size: 12px;
    font-weight: 650;

    transition:
        border-color 0.17s ease,
        color 0.17s ease,
        background 0.17s ease;
}


.tool-settings-button svg {
    width: 16px;
    height: 16px;
}


.tool-settings-button:hover {
    border-color: #2e78d2;

    background: #f5f9fd;
    color: #2e78d2;
}


/* =========================================================
   BAROES - SETTINGS BASE
   ========================================================= */

.barons-settings-shell {
    max-width: 1320px;
}


.settings-coming-panel {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;

    text-align: center;
}


.settings-coming-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 12px;

    background: #edf4fc;
    color: #2e78d2;

    font-size: 26px;
}


.settings-coming-panel h2 {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 650;
}


.settings-coming-panel p {
    max-width: 570px;

    color: #85909c;

    font-size: 12px;
    line-height: 1.7;
}


@media (max-width: 850px) {

    .tool-module-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .tool-module-actions {
        width: 100%;

        justify-content: space-between;
    }

    .basic-binding-card {
        flex-direction: column;
        gap: 12px;
    }

}


@media (max-width: 560px) {

    .tool-module-main {
        align-items: flex-start;
    }

    .tool-module-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .tool-switch-block {
        justify-content: flex-start;
    }

}


/* =========================================================
   BAROES - SETTINGS COMPLETO
   ========================================================= */

.barons-settings-shell {
    max-width: 1180px;
}

.barons-settings-heading {
    margin-bottom: 20px;
}

.barons-settings-alert {
    margin-bottom: 18px;
    padding: 13px 16px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;
}

.barons-settings-alert.success {
    border: 1px solid #bfe8d2;
    background: #edf9f2;
    color: #198754;
}

.barons-settings-alert.error {
    border: 1px solid #f1c6c6;
    background: #fff2f2;
    color: #c74f4f;
}

.barons-settings-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.barons-settings-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 3px 12px
        rgba(25, 40, 60, 0.035);
}

.barons-settings-card-header {
    padding: 19px 22px;

    border-bottom:
        1px solid var(--border);
}

.barons-settings-card-header h2 {
    margin-bottom: 4px;

    color: #303b47;

    font-size: 16px;
    font-weight: 650;
}

.barons-settings-card-header p {
    color: #8a95a1;

    font-size: 11px;
    line-height: 1.5;
}

.barons-settings-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 24px;

    padding: 23px;
}

.barons-field {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.barons-field-full {
    grid-column: 1 / -1;
}

.barons-field > label,
.barons-single-kingdom > label {
    color: #4c5966;

    font-size: 11px;
    font-weight: 700;
}

.barons-field input,
.barons-field select,
.barons-single-kingdom select {
    width: 100%;
    height: 40px;

    padding: 0 12px;

    border: 1px solid #d8dee6;
    border-radius: 6px;

    outline: none;

    background: #ffffff;
    color: #394552;

    font-family: inherit;
    font-size: 12px;

    transition:
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.barons-field input:focus,
.barons-field select:focus,
.barons-single-kingdom select:focus {
    border-color: #2e78d2;

    box-shadow:
        0 0 0 3px
        rgba(46, 120, 210, 0.09);
}

.barons-field-help {
    color: #98a2ad;

    font-size: 10px;
    line-height: 1.5;
}

.barons-password-wrap {
    position: relative;
}

.barons-option-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}

.barons-radio-card {
    cursor: pointer;
}

.barons-radio-card input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.barons-radio-ui {
    min-height: 58px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px 13px;

    border: 1px solid #dce2e9;
    border-radius: 7px;

    background: #ffffff;

    transition:
        border-color 0.16s ease,
        background 0.16s ease,
        box-shadow 0.16s ease;
}

.barons-radio-ui strong {
    margin-bottom: 2px;

    color: #46525f;

    font-size: 12px;
}

.barons-radio-ui small {
    color: #929da8;

    font-size: 10px;
}

.barons-radio-card input:checked
+ .barons-radio-ui {
    border-color: #2e78d2;

    background: #f3f8fe;

    box-shadow:
        0 0 0 2px
        rgba(46, 120, 210, 0.07);
}

.barons-radio-card input:checked
+ .barons-radio-ui strong {
    color: #2e78d2;
}

.barons-kingdom-config {
    display: flex;
    flex-direction: column;

    gap: 18px;

    padding: 22px;
}

.barons-check-card {
    cursor: pointer;
}

.barons-check-card input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.barons-check-ui {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 14px 15px;

    border: 1px solid #dce2e9;
    border-radius: 7px;

    background: #ffffff;
}

.barons-check-box {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    position: relative;

    margin-top: 1px;

    border: 1px solid #c9d1da;
    border-radius: 4px;

    background: #ffffff;
}

.barons-check-ui strong {
    display: block;

    margin-bottom: 3px;

    color: #46525f;

    font-size: 12px;
}

.barons-check-ui small {
    display: block;

    color: #929da8;

    font-size: 10px;
    line-height: 1.5;
}

.barons-check-card input:checked
+ .barons-check-ui {
    border-color: #2e78d2;

    background: #f3f8fe;
}

.barons-check-card input:checked
+ .barons-check-ui
.barons-check-box {
    border-color: #2e78d2;
    background: #2e78d2;
}

.barons-check-card input:checked
+ .barons-check-ui
.barons-check-box::after {
    content: "";

    width: 8px;
    height: 4px;

    position: absolute;

    left: 4px;
    top: 4px;

    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(-45deg);
}

.barons-single-kingdom {
    max-width: 430px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    transition: opacity 0.16s ease;
}

.barons-single-kingdom.disabled {
    opacity: 0.45;
}

.barons-single-kingdom select:disabled {
    cursor: not-allowed;

    background: #f5f6f8;
}

.barons-settings-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 11px;

    padding-bottom: 30px;
}

.barons-settings-secondary,
.barons-settings-save {
    min-width: 145px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    border-radius: 6px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 650;

    text-decoration: none;

    cursor: pointer;
}

.barons-settings-secondary {
    border: 1px solid #d8dee6;

    background: #ffffff;
    color: #687583;
}

.barons-settings-secondary:hover {
    border-color: #bfc8d2;

    background: #f8f9fa;
}

.barons-settings-save {
    border: 1px solid #2e78d2;

    background: #2e78d2;
    color: #ffffff;
}

.barons-settings-save:hover {
    background: #266bbd;
    border-color: #266bbd;
}

@media (max-width: 850px) {

    .barons-settings-grid {
        grid-template-columns: 1fr;
    }

    .barons-field-full {
        grid-column: auto;
    }

}

@media (max-width: 560px) {

    .barons-option-row {
        grid-template-columns: 1fr;
    }

    .barons-settings-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .barons-settings-secondary,
    .barons-settings-save {
        width: 100%;
    }

}



/* =========================================================
   CONSOLE GLOBAL
   ========================================================= */

.console-page {
    max-width: 1320px;
}

.console-heading {
    margin-bottom: 20px;
}

.console-panel {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 3px 12px
        rgba(25, 40, 60, 0.04);
}

.console-toolbar {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 20px;

    border-bottom:
        1px solid var(--border);
}

.console-runtime-info {
    display: flex;
    align-items: center;

    gap: 18px;
}

.console-meta-label {
    display: block;

    margin-bottom: 4px;

    color: #99a3ae;

    font-size: 9px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.55px;
}

#console-tool-name {
    color: #36424e;

    font-size: 13px;
    font-weight: 650;
}

.console-status {
    min-height: 25px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    border-radius: 14px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.console-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: currentColor;
}

.console-status.offline {
    background: #fff0f0;
    color: #dc4f4f;
}

.console-status.online {
    background: #eaf9f0;
    color: #1fa866;
}

.console-status.connecting {
    background: #fff8e8;
    color: #c98a19;
}

.console-actions {
    display: flex;
    align-items: center;

    gap: 13px;
}

.console-autoscroll {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #778390;

    font-size: 11px;

    cursor: pointer;
}

.console-autoscroll input {
    accent-color: #2e78d2;
}

.console-copy-button {
    height: 36px;

    padding: 0 14px;

    border: 1px solid #d6dde5;
    border-radius: 6px;

    background: #ffffff;
    color: #586674;

    font-family: inherit;
    font-size: 11px;
    font-weight: 650;

    cursor: pointer;
}

.console-copy-button:hover {
    border-color: #2e78d2;

    background: #f5f9fd;
    color: #2e78d2;
}

.console-output {
    height: 560px;
    overflow-y: auto;

    padding: 19px 21px 28px;

    background: #17202a;

    color: #dce5ee;

    font-family:
        "Consolas",
        "Courier New",
        monospace;

    font-size: 12px;
    line-height: 1.72;
}

.console-empty {
    padding-top: 8px;

    color: #72808e;
}

.console-line {
    display: flex;

    gap: 13px;

    min-height: 21px;
}

.console-time {
    flex: 0 0 70px;

    color: #768696;
}

.console-message {
    min-width: 0;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.console-line.kingdom
.console-message {
    margin-top: 8px;

    color: #84b9f0;

    font-weight: 700;
}

.console-line.success
.console-message {
    color: #80d6a6;
}

.console-line.warning
.console-message {
    color: #e4c578;
}

.console-line.error
.console-message {
    color: #ee9393;
}

@media (max-width: 760px) {

    .console-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .console-actions {
        width: 100%;

        justify-content: space-between;
    }

    .console-output {
        height: 480px;
    }

}


/* ==========================================================
   EMPIREBOT_CONSOLE_LIVE_V2
   Painel operacional visual.
   Nao altera runtime/orquestra.
   ========================================================== */

.console-live-dashboard {
    padding: 18px 20px;

    border-bottom:
        1px solid var(--border);

    background: #f8fafc;
}

.console-live-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 15px;
}

#console-live-kingdom {
    display: block;

    color: #344454;

    font-size: 16px;
    font-weight: 750;
}

.console-live-stage {
    padding: 6px 10px;

    border-radius: 14px;

    background: #edf4fb;
    color: #2e78d2;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.console-live-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;
}

.console-live-card {
    min-width: 0;

    padding: 12px 13px;

    border:
        1px solid #e1e7ed;

    border-radius: 7px;

    background: #ffffff;
}

.console-live-card span {
    display: block;

    margin-bottom: 6px;

    color: #8995a1;

    font-size: 9px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.console-live-card strong {
    color: #344454;

    font-size: 21px;
    font-weight: 750;
}

.console-live-current {
    margin-top: 12px;

    padding: 11px 13px;

    border:
        1px solid #e1e7ed;

    border-radius: 7px;

    background: #ffffff;
}

.console-live-current strong {
    display: block;

    color: #596978;

    font-size: 12px;
    font-weight: 600;
}

.console-history-title {
    padding: 11px 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    background: #17202a;
    color: #8fa0b0;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}

@media (max-width: 1050px) {

    .console-live-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {

    .console-live-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .console-live-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}



/* BARON_DESKTOP_MOVEMENT_MODEL_V1 */
.console-live-movements {
    margin-top: 12px;
    padding: 11px 13px;
    border: 1px solid #e1e7ed;
    border-radius: 7px;
    background: #ffffff;
}

.console-live-movements pre {
    margin: 7px 0 0;
    max-height: 180px;
    overflow: auto;
    white-space: pre;
    color: #344454;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    line-height: 1.55;
}

/* ==========================================================
   BARON_CONSOLE_SIMPLE_VISUAL_V1
   Somente visual.
   Mantém todo o DOM/JavaScript funcionando em segundo plano.
   ========================================================== */

/* Remove visualmente todo o painel "Execução atual". */
#console-live-dashboard {
    display: none !important;
}

/* Remove visualmente o quadro "Movimentos ativos". */
.console-live-movements {
    display: none !important;
}

