:root {
    --primary-color: #203169;    /* Azul CotaCap */
    --secondary-color: #2F8852;  /* Verde CotaCap */
    --accent-color: #2F8852;
    --background-light: #f4f7f6;
    --text-dark: #1e293b;
    --hero-bg: #030a1e;          /* Fundo escuro do Hero conforme imagem */
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 12px;
    
    /* Sidebar Variables - Dark Style */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 70px;
    --sidebar-primary: #2F8852;  /* Verde para destaque no dark */
    --sidebar-bg: #1a1c23;       /* Fundo Dark */
    --sidebar-text: #9ca3af;     /* Texto cinza para contraste */
}

body {
  --sb-track-color: #f4f7f6;
  --sb-thumb-color: #6baf8d;
  --sb-size: 5px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/* Landing Page Specific Styles */
.landing-page .navbar {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    border: none;
    box-shadow: none;
    padding-top: 20px;
}

.landing-page .navbar-item, .landing-page .navbar-link {
    color: white !important;
    font-weight: 500;
}



/* Hero Section */
.landing-hero {
    background: linear-gradient(rgba(3, 10, 30, 0.75), rgba(3, 10, 30, 0.85)), url('../img/bg-hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.hero-visual-elements {
    position: relative;
    height: 500px;
    background: url('https://www.transparenttextures.com/patterns/circuit-board.png');
    background-size: cover;
    opacity: 0.4; /* Reduced to show the new background image better */
}

.node-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px; /* Sharp geometry for technical feel */
    padding: 20px;
    backdrop-filter: none; /* No glassmorphism as per rules */
    text-align: center;
    min-width: 150px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-element:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #4facfe;
}

.node-element i {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    color: #4facfe;
}

.node-element span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.node-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.4), transparent);
    height: 2px;
    z-index: 1;
}

.hero-node-label {
    position: absolute;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid #4facfe;
    color: #4facfe;
    padding: 6px 16px;
    border-radius: 2px; /* Sharp edges */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.2);
}

/* Steps Section */
.steps-section {
    margin-top: -80px;
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
}

.step-card {
    background: white;
    border-radius: 4px; /* Sharp technical geometry */
    padding: 50px 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    height: 100%;
    text-align: left; /* Alinhamento à esquerda conforme design premium */
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s ease;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    border-color: rgba(47, 136, 82, 0.2);
}

.step-card:hover::before {
    height: 100%;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 2px; /* Sharp icon container */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
    color: white;
}

.step-card h3 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #475569;
}

.step-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.step-card ul li::before {
    content: '→';
    margin-right: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}

.steps-banner {
    background: #0f172a;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-align: center;
    margin-top: 50px;
    font-size: 1.1rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Infrastructure Section refinement */
.infra-card {
    background: white;
    border-radius: 4px; /* Sharp technical geometry */
    padding: 60px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.infra-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.infra-visual img {
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.infra-card:hover .infra-visual img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* Transparency Section refinement */
.transparency-section {
    background: linear-gradient(rgba(3, 10, 30, 0.75), rgba(3, 10, 30, 0.85)), url('../img/bg-hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.transparency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
}

.compliance-badge {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 4px; /* Sharp technical geometry */
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.compliance-badge:hover {
    background: rgba(255,255,255,0.05);
    border-color: #4facfe;
    transform: translateY(-5px);
}

.compliance-badge i {
    transition: transform 0.3s ease;
}

.compliance-badge:hover i {
    transform: scale(1.2);
}

/* For Whom Section refinement */
.industry-card {
    position: relative;
    border-radius: 4px; /* Sharp technical geometry */
    overflow: hidden;
    height: 350px;
    margin-bottom: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 10, 30, 0.8), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.industry-card:hover::after {
    opacity: 0.8;
}

.industry-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    padding: 10px 25px;
    color: white;
    font-weight: 800;
    border-radius: 2px; /* Sharp edges */
    font-size: 1rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-label {
    transform: translateY(-10px);
    background: white;
    color: var(--primary-color);
}

/* Login Split Layout */
.login-body .navbar,
.register-body .navbar {
    display: none !important;
}
.login-body .content-area,
.reggister-body .content-area {
    padding: 0;
}
body.register-body {
    background: url('../img/bg-hero.png') no-repeat center center;
    background-size: cover;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.login-split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-visual-column {
    flex: 1;
    position: relative;
    background: url('../img/bg-hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 49, 105, 0.8), rgba(3, 10, 30, 0.9));
}

.login-visual-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
}

.login-form-column {
    width: 450px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 360px;
}

.border-top-light {
    border-top: 1px solid #f1f5f9;
}

@media screen and (max-width: 1024px) {
    .login-form-column {
        width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .login-visual-column {
        display: none;
    }
    .login-form-column {
        width: 100%;
        padding: 20px;
    }
}

/* Sidebar Tooltips - Technical & Precise */
.sidebar.collapsed [data-tooltip] {
    position: relative;
}

.sidebar.collapsed [data-tooltip]:before,
.sidebar.collapsed [data-tooltip]:after {
    line-height: 1;
    font-size: .75rem;
    pointer-events: none;
    position: absolute;
    box-sizing: border-box;
    display: block; /* Use opacity for transition */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10000;
}

.sidebar.collapsed [data-tooltip]:before {
    content: "";
    border: 5px solid transparent;
    border-right-color: #1e293b; /* Dark technical background */
    top: 50%;
    margin-top: -5px;
    left: 80%; /* Start slightly inside for animation */
}

.sidebar.collapsed [data-tooltip]:after {
    content: attr(data-tooltip);
    text-align: center;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 2px; /* Sharp geometry */
    background: #1e293b; /* Dark technical background */
    color: #f8fafc;
    font-weight: 600;
    box-shadow: 4px 4px 0px var(--primary-color); /* Offset technical shadow */
    top: 50%;
    left: calc(80% + 5px);
    transform: translateY(-50%);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar.collapsed [data-tooltip]:hover:before,
.sidebar.collapsed [data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

.sidebar.collapsed [data-tooltip]:hover:before {
    left: 100%;
}

.sidebar.collapsed [data-tooltip]:hover:after {
    left: calc(100% + 8px);
}

footer{
 background-color: #1a1c23 !important;
}

footer img {
    opacity: .4;
}

/* Stats Section refinement */
.stats-banner {
    background: white;
    border-radius: 4px; /* Sharp technical geometry */
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

body:not(.landing-page):not(.auth-page) {
    display: flex;
}

body.landing-page, body.auth-page {
    display: block;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero.is-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.card {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.button.is-primary {
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.button.is-primary:hover {
    background-color: #096f99;
}

.button.is-secondary {
    background-color: var(--secondary-color);
    transition: background-color 0.3s ease;
    color:white;
        border: 0;
}

.button.is-secondary:hover {
    background-color: #14d861;
    color: white;
}

.feature-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Sidebar Wrapper */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: none;
}

body.ready .sidebar {
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
    overflow: visible !important;
}

.sidebar.collapsed .sidebar-menu {
    overflow: visible !important;
}

.sidebar-header {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    transition: none;
    display: flex;
    align-items: center;
}

body.ready .sidebar-logo {
    transition: opacity 0.3s;
}

.sidebar.collapsed .sidebar-logo {
    opacity: 0;
    width: 0;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--sidebar-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
}

.sidebar-toggle:hover {
    background-color: rgba(255,255,255,0.05);
    color: white;
}

.sidebar-menu {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: var(--sidebar-text);
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.menu-item:hover, .menu-item.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--sidebar-primary);
}

.menu-item i {
    width: 20px;
    margin-right: 15px;
    font-size: 1.1rem;
    text-align: center;
    color: inherit;
}

.sidebar.collapsed .menu-item span,
.sidebar.collapsed .menu-label {
    display: none;
}

.sidebar.collapsed .menu-item i {
    margin-right: 0;
}

.sidebar.collapsed .menu-item {
    justify-content: center;
    padding: 1rem 0;
}

.sidebar-menu {
  --sb-track-color: #232E33;
  --sb-thumb-color: #484d5c;
  --sb-size: 5px;
}

.sidebar-menu::-webkit-scrollbar {
  width: var(--sb-size)
}

.sidebar-menu::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .sidebar-menu {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

hr {
    background-color: rgba(255,255,255,0.05) !important;
}

/* Main Content Layout */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.auth-page .main-wrapper {
    margin-left: 0;
    width: 100%;
}

body.ready .main-wrapper {
    transition: all 0.3s ease;
}

.sidebar.collapsed + .main-wrapper {
    margin-left: var(--sidebar-collapsed-width);
    width: calc(100% - var(--sidebar-collapsed-width));
}

.header-logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    transition: opacity 0.3s ease;
}

/* Hide header logo when sidebar is open (not collapsed) on desktop */
@media screen and (min-width: 769px) {
    .sidebar:not(.collapsed) + .main-wrapper .header-logo-link {
        opacity: 0;
        pointer-events: none;
    }
}

/* Hide header logo when sidebar is open on mobile */
@media screen and (max-width: 768px) {
    .sidebar.mobile-active + .main-wrapper .header-logo-link {
        opacity: 0;
        pointer-events: none;
    }
}

.top-nav {
    background-color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        position: fixed;
    width: 100%;
    left: 0;
    z-index: 20;
}
.top-nav-left {
        padding-left: 85px
    }

body.auth-page .top-nav,
body.auth-page footer {
    display: none;
}

.content-area {
    padding: 8rem 2rem 2rem;
    min-height:84vh
}

footer hr.has-background-grey-lighter {
    background-color: #373a47 !important;
}

body.profile-page .content-area {
    padding: 5rem 1rem 1rem !important ;
}

.wiki .content-area {
    padding-top: 1rem;
}

.erro-404 .content-area {
    padding: 0 !important;
}

/* Mobile Adjustments */
.mobile-only {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: inline-flex !important;
    }
    .sidebar {
        left: -var(--sidebar-width);
        box-shadow: none;
        z-index: 10001;
        visibility: hidden;
        opacity: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    visibility 0.4s, 
                    opacity 0.4s ease;
    }
    .sidebar.mobile-active {
        left: 0;
        visibility: visible;
        opacity: 1;
        box-shadow: 10px 0 25px rgba(0,0,0,0.2);
    }
    .sidebar-toggle.mobile-only {
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        z-index: 1001;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .sidebar-toggle.mobile-only:active {
        transform: scale(0.9);
    }
    .main-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* Overlay visível apenas no mobile quando ativo */
    #sidebar-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
    }
    body.sidebar-open #sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }

    .top-nav {
        padding: 0 1rem;
    }
    .top-nav-left {
        padding-left: 0px
    }

    .content-area {
        padding: 8rem 1rem 1rem;
    }
}

/* Quotation Card Overlay Styles */
.quotation-card .card-image {
    position: relative;
}

.company-logo-overlay {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.status-badge-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.quotation-card .card-content {
    padding-top: 35px;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* Sidebar Overlay - Oculto por padrão no Desktop */
#sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
}

/* Quotation Cards */
.quotation-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quotation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.quotation-card .card-image {
    position: relative;
}

.status-badge-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.h-100 {
    height: 100% !important;
}

/* Global Chat Styles */
#chat-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    z-index: 2000;
    pointer-events: none;
}

.chat-window {
    width: 300px;
    background: white;
    border: 1px solid #dbdbdb;
    border-radius: 8px 8px 0 0;
    margin-left: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    transition: height 0.3s;
}

.chat-header {
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #dbdbdb;
}

.message-bubble {
    max-width: 80%;
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    position: relative;
}

.message-mine {
    align-self: flex-end;
    background: #00d1b2; /* Turquesa/Verde para as minhas mensagens */
    color: white;
    border-bottom-right-radius: 2px;
    text-align: right;
    margin-left: 20%;
}

.message-mine .message-info {
    text-align: right;
}

.message-others {
    align-self: flex-start;
    background: #ffffff;
    color: #363636;
    border-bottom-left-radius: 2px;
    border: 1px solid #dbdbdb;
    margin-right: 20%;
}

.message-others .message-info {
    text-align: left;
}

.message-info {
    font-size: 0.7rem;
    margin-bottom: 2px;
    opacity: 0.8;
}

.chat-minimized .chat-body,
.chat-minimized .chat-footer {
    display: none;
}

.chat-minimized {
    height: auto !important;
}

@media screen and (max-width: 768px) {
    #chat-container {
        right: 10px;
        left: 10px;
        flex-direction: column;
    }
    .chat-window {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}


.w-100 {
        width: 100% !important;
    }

    .checkbox-card {
        display: block;
        position: relative;
        cursor: pointer;
        height: 100%;
    }

    .checkbox-card input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-card .card-content {
        background: #fff;
        border: 2px solid #eee;
        border-radius: 12px;
        padding: 1.25rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .checkbox-card:hover .card-content {
        border-color: #dbdbdb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .checkbox-card input:checked + .card-content {
        border-color: #485fc7;
        background-color: #f6f8ff;
        box-shadow: 0 4px 15px rgba(72, 95, 199, 0.1);
    }

    .checkbox-card .icon-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .checkbox-card .status-badge {
        font-size: 0.65rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 2px 8px;
        border-radius: 4px;
        background: #f5f5f5;
        color: #7a7a7a;
    }

    .checkbox-card input:checked + .card-content .status-badge {
        background: #485fc7;
        color: #fff;
    }

    .checkbox-card .card-title {
        font-weight: 700;
        font-size: 1rem;
        color: #363636;
        margin-bottom: 0.5rem;
    }

    .checkbox-card .card-desc {
        font-size: 0.85rem;
        color: #7a7a7a;
        line-height: 1.4;
    }

    /* Animation for the icon when checked */
    .checkbox-card input:checked + .card-content .icon i {
        animation: pulse-icon 0.5s ease;
    }

    @keyframes pulse-icon {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    #notif-list {
            max-height: 60vh;
    overflow-y: scroll;
    }

    .navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
    background-color: inherit !important;
    color:#3e8ed0 !important
}