/* ================================================
   PortalGOS – Custom styles & Keen Theme Overrides
   ================================================ */

/* --- GOS Brand Variables --- */
:root {
    --gos-primary: #E97619;
    --gos-primary-light: #f5924e;
    --gos-primary-dark: #c96010;
}

/* --- Card hover com cor da empresa --- */
.card.card-hover {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.card.card-hover:hover {
    border-color: var(--gos-primary) !important;
    box-shadow: 0 4px 16px rgba(233, 118, 25, 0.18) !important;
    transform: translateY(-2px);
}

/* --- Logo container padronizado --- */
.logo-container {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-logo {
    max-width: 80px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* --- Category section headings --- */
.category-heading {
    color: #5e6278;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gos-primary);
    margin-bottom: 1rem;
}

.category-heading i {
    color: var(--gos-primary);
}

/* --- System card text --- */
.system-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: #181c32;
    margin-bottom: 2px;
}

.system-card-desc {
    font-size: 0.75rem;
    color: #a1a5b7;
    line-height: 1.3;
}

/* --- Banner BeeHome --- */
.beehome-banner-card {
    overflow: hidden;
}

.beehome-banner-card img {
    width: 100%;
    display: block;
}

/* --- Drag-and-drop visual feedback --- */
.sortable-ghost {
    opacity: 0.4;
}

.sortable-chosen {
    box-shadow: 0 0 0 2px var(--gos-primary) !important;
}

/* --- Scrollbar slim (optional cosmetic) --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 3px;
}
