/* *****************************************************
 *
 *  USMIM Theme — Custom Stylesheet
 *  Brand Color: #1a3297 (Azul Profundo)
 *  Parent Theme: Nexus (WHMCS 9.x)
 *
 *  Este arquivo sobrescreve as CSS variables do Nexus
 *  para aplicar a identidade visual USMIM.
 *
 ***************************************************** */

:root {
    --white: #fff;

    /* ============================================
     * USMIM Brand Palette
     * Base: #1a3297
     * ============================================ */

    /* Neutral shades (ligeiramente frios para harmonizar com o azul) */
    --neutral-50: #f8f9fc;
    --neutral-100: #f0f2f8;
    --neutral-200: #e1e4ef;
    --neutral-300: #c8cde0;
    --neutral-400: #8f97b3;
    --neutral-500: #636d8c;
    --neutral-600: #4a5270;
    --neutral-700: #353b54;
    --neutral-800: #1f2438;
    --neutral-900: #0f1220;
    --neutral-950: #070910;

    /* Primary shades (USMIM Blue) */
    --primary-50: #eef1fb;
    --primary-100: #d5dcf5;
    --primary-200: #a8b4ea;
    --primary-300: #7b8ddf;
    --primary-400: #4f6bd6;
    --primary-500: #2d4abf;
    --primary-600: #1a3297;
    --primary-700: #152a7d;
    --primary-800: #102063;
    --primary-900: #0b1649;
    --primary-950: #060d30;

    /* Primary semantic */
    --primary: #1a3297;
    --primary-lifted: #2240b8;
    --primary-accented: #12236b;

    /* Secondary */
    --secondary: #636d8c;
    --secondary-lifted: #4a5270;
    --secondary-accented: #353b54;

    /* Success */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info (alinhado com brand) */
    --info: #2d4abf;
    --info-lifted: #1a3297;
    --info-accented: #152a7d;

    /* Notice */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral semantic */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Extra colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.375rem;
    --rounding-md: 0.625rem;
    --rounding-lg: 0.875rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}


/* ============================================
 * HEADER — Branding USMIM
 * ============================================ */

header.header {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary);
}

header.header .topbar {
    background-color: var(--primary);
}

header.header .topbar .btn {
    color: rgba(255, 255, 255, 0.8);
}

header.header .topbar .btn:hover {
    color: #fff;
}

header.header .topbar .active-client .input-group-text {
    color: rgba(255, 255, 255, 0.85);
}

header.header .topbar .active-client .btn {
    color: rgba(255, 255, 255, 0.8);
}

header.header .topbar .active-client .btn.btn-active-client span {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Navbar */
header.header .navbar a {
    color: var(--neutral-700);
    transition: color 0.2s ease;
}

header.header .navbar a:hover {
    color: var(--primary);
}

header.header .main-navbar-wrapper {
    border-bottom: 1px solid var(--border-muted);
}

header.header .toolbar .nav-link {
    border-color: var(--border);
    color: var(--neutral-500);
    transition: all 0.2s ease;
}

header.header .toolbar .nav-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Search */
header.header .search {
    border-color: var(--border);
    border-radius: var(--rounding-md);
    transition: border-color 0.2s ease;
}

header.header .search:focus-within {
    border-color: var(--primary);
}

/* Logo */
header.header .logo-img {
    max-height: 40px;
    max-width: 180px;
}


/* ============================================
 * BREADCRUMB
 * ============================================ */

.master-breadcrumb {
    background-color: var(--primary-50);
    border-bottom: 1px solid var(--primary-100);
}

.master-breadcrumb .breadcrumb {
    background-color: transparent;
}

.master-breadcrumb .breadcrumb a {
    color: var(--primary);
}

.master-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--neutral-600);
}


/* ============================================
 * BUTTONS
 * ============================================ */

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-lifted);
    border-color: var(--primary-lifted);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 50, 151, 0.3);
}

.btn-primary:active,
.btn-primary.active {
    background-color: var(--primary-accented);
    border-color: var(--primary-accented);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    transition: all 0.2s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 50, 151, 0.25);
}


/* ============================================
 * LINKS
 * ============================================ */

a {
    color: var(--primary);
    transition: color 0.15s ease;
}

a:hover {
    color: var(--primary-lifted);
}


/* ============================================
 * CARDS & PANELS
 * ============================================ */

.primary-content .card {
    border: 1px solid var(--border-muted);
    border-radius: var(--rounding-md);
    box-shadow: 0 1px 3px rgba(15, 18, 32, 0.06);
    transition: box-shadow 0.2s ease;
}

.primary-content .card:hover {
    box-shadow: 0 4px 12px rgba(15, 18, 32, 0.1);
}

.primary-content .card-title {
    color: var(--neutral-800);
}


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

.sidebar .list-group-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.sidebar .list-group-item:hover:not(.active) {
    background-color: var(--primary-50);
    color: var(--primary);
}


/* ============================================
 * FOOTER
 * ============================================ */

footer.footer {
    background-color: var(--primary-950);
    color: rgba(255, 255, 255, 0.8);
}

footer.footer .nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

footer.footer .nav-link:hover {
    color: #fff;
}

footer.footer .copyright {
    color: rgba(255, 255, 255, 0.45);
}

footer.footer .btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

footer.footer .btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}


/* ============================================
 * BADGES & STATUS
 * ============================================ */

.badge-dark {
    background-color: var(--primary);
}

.badge-primary {
    background-color: var(--primary);
}


/* ============================================
 * HOMEPAGE ACTION ICONS
 * ============================================ */

.action-icon-btns a {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-icon-btns a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 18, 32, 0.12);
}


/* ============================================
 * FORMS
 * ============================================ */

.form-control:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 0.2rem rgba(26, 50, 151, 0.15);
}


/* ============================================
 * TABLES
 * ============================================ */

.table thead th {
    border-bottom-color: var(--primary-200);
    color: var(--neutral-700);
}

.table-hover tbody tr:hover {
    background-color: var(--primary-50);
}


/* ============================================
 * PAGINATION
 * ============================================ */

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link {
    color: var(--primary);
}

.page-link:hover {
    color: var(--primary-lifted);
}


/* ============================================
 * MODALS
 * ============================================ */

.modal .modal-header {
    background-color: var(--primary-50);
    border-bottom-color: var(--primary-100);
}


/* ============================================
 * ALERTS — brand-aligned refinements
 * ============================================ */

.alert-info {
    background-color: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-800);
}


/* ============================================
 * MICRO-ANIMATIONS
 * ============================================ */

.card,
.btn,
.nav-link,
.list-group-item,
.form-control {
    transition: all 0.2s ease;
}

.sidebar .list-group-item {
    transition: background-color 0.15s ease, color 0.15s ease;
}


/* ============================================
 * USMIM PREMIUM HIGHLIGHT CARDS (CMS)
 * ============================================ */

.home-highlights .card {
    border: 1px solid var(--neutral-200) !important;
    border-top: 4px solid var(--primary) !important;
    border-radius: var(--rounding-lg) !important;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(26, 50, 151, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Hover overlay strip */
.home-highlights .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Card Hover Elevation */
.home-highlights .card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-300) !important;
    box-shadow: 0 20px 40px rgba(26, 50, 151, 0.1) !important;
}

.home-highlights .card:hover::after {
    opacity: 1;
}

/* Circular Icon Container */
.home-highlights .ico-container {
    width: 80px;
    height: 80px;
    margin: 10px auto 25px !important;
    background-color: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em !important;
    color: var(--primary) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--primary-100);
}

/* Rotate and Fill Icon Container on Card Hover */
.home-highlights .card:hover .ico-container {
    background-color: var(--primary);
    color: var(--white) !important;
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 8px 20px rgba(26, 50, 151, 0.25);
    border-color: var(--primary);
}

/* Dynamic Card Title */
.home-highlights .card-title {
    color: var(--neutral-900) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    transition: color 0.3s ease;
}

.home-highlights .card:hover .card-title {
    color: var(--primary) !important;
}

/* Dynamic Card Body Description */
.home-highlights .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-500) !important;
    min-height: 60px;
}

/* Button Elevation inside Highlights */
.home-highlights .card .btn-primary {
    border-radius: var(--rounding-md);
    font-weight: 600;
    padding: 8px 24px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(26, 50, 151, 0.12);
}

.home-highlights .card:hover .btn-primary {
    background-color: var(--primary-lifted);
    border-color: var(--primary-lifted);
    box-shadow: 0 6px 16px rgba(26, 50, 151, 0.28);
}


/* ============================================
 * CONVERSION LAYOUTS: PRICING TABLE
 * ============================================ */

.pricing-card {
    border: 1px solid var(--neutral-200);
    border-radius: 16px !important;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 86, 179, 0.12);
    border-color: var(--primary);
}

.pricing-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 15px;
}

.pricing-card .pricing-features-list ul {
    margin: 0;
    padding: 0;
}

.pricing-card .pricing-features-list li {
    font-size: 0.95rem;
    color: var(--neutral-600);
    padding: 10px 0;
    border-bottom: 1px dashed var(--neutral-200);
}

.pricing-card .pricing-features-list li:last-child {
    border-bottom: none;
}

/* Featured/Popular Card Styling */
.popular-card {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 10px 25px rgba(26, 50, 151, 0.08);
}

.popular-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(26, 50, 151, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.35);
    z-index: 10;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Button glow pulse effect */
.btn-glow {
    box-shadow: 0 4px 12px rgba(26, 50, 151, 0.3);
    position: relative;
    transition: all 0.3s ease;
}
.btn-glow:hover {
    box-shadow: 0 8px 20px rgba(26, 50, 151, 0.45);
    background-color: var(--primary-lifted) !important;
    border-color: var(--primary-lifted) !important;
}


/* ============================================
 * CONVERSION LAYOUTS: FAQ ACCORDION
 * ============================================ */

.faq-accordion .panel {
    transition: all 0.3s ease;
}

.faq-accordion .panel-heading a {
    text-decoration: none !important;
    transition: all 0.2s ease;
    color: var(--neutral-800) !important;
}

.faq-accordion .panel-heading a:not(.collapsed) {
    color: var(--primary) !important;
    background-color: rgba(0, 86, 179, 0.04);
}

.faq-accordion .panel-heading a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-accordion .panel-heading a:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}


/* ============================================
 * CONVERSION LAYOUTS: TESTIMONIALS
 * ============================================ */

.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: var(--neutral-300) !important;
}

.testimonial-card::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(0, 86, 179, 0.06);
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
    pointer-events: none;
}


/* ============================================
 * CONVERSION LAYOUTS: CTA BANNER
 * ============================================ */

.cta-banner {
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.15) !important;
}

.btn-white {
    background: #fff !important;
    color: var(--primary) !important;
    border: 1px solid #fff !important;
    transition: all 0.3s ease !important;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Pulsing effect for main CTA button */
.btn-glow-pulse {
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


/* ============================================
 * CONVERSION LAYOUTS: HOME CAROUSEL SLIDER
 * ============================================ */

.home-slider-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.home-slider-carousel .carousel-indicators li.active {
    background-color: #fff;
    transform: scale(1.2);
}

.home-slider-carousel .carousel-control-prev,
.home-slider-carousel .carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10 !important;
}

.home-slider-carousel:hover .carousel-control-prev,
.home-slider-carousel:hover .carousel-control-next {
    opacity: 0.7;
}

.home-slider-carousel .carousel-control-prev:hover,
.home-slider-carousel:hover .carousel-control-next:hover {
    opacity: 1;
}

/* Floating animation for foreground mockup graphics */
.floating-graphic {
    animation: float-graphic 6s ease-in-out infinite;
}

@keyframes float-graphic {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Slide Carrossel Refinements */
.home-slide-title {
    font-size: 1.6rem;
}
.home-slide-desc {
    font-size: 0.95rem;
}
.home-slide-btn {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

@media (min-width: 768px) {
    .home-slide-title {
        font-size: 2.3rem;
    }
    .home-slide-desc {
        font-size: 1.05rem;
    }
    .home-slide-btn {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 767.98px) {
    .home-slider-carousel .carousel-control-prev,
    .home-slider-carousel .carousel-control-next {
        display: none !important;
    }
}

/* ============================================
 * LOGIN, REGISTER & PW-RESET PAGE REFINE
 * ============================================ */
.login-form, #registration, .password-reset-container {
    max-width: 580px;
    margin: 40px auto !important;
}

.login-form .card, #registration .card, .password-reset-container .card {
    border: 1px solid var(--neutral-200) !important;
    border-top: 4px solid var(--primary) !important;
    border-radius: var(--rounding-lg) !important;
    box-shadow: 0 15px 35px rgba(26, 50, 151, 0.06) !important;
    background-color: var(--white);
    overflow: hidden;
}

.login-form .card-body, #registration .card-body, .password-reset-container .card-body {
    padding: 2.5rem !important;
}

.login-form .card-footer, #registration .card-footer, .password-reset-container .card-footer {
    background-color: var(--neutral-50) !important;
    border-top: 1px solid var(--neutral-200) !important;
    padding: 1.25rem 2.5rem !important;
}

.input-group-merge .input-group-prepend .input-group-text {
    border-right: none;
    background-color: var(--neutral-50);
    color: var(--neutral-500);
    border-color: var(--neutral-300);
}

.input-group-merge .input-group-append .btn-reveal-pw {
    border-left: none;
    background-color: var(--neutral-50);
    border-color: var(--neutral-300);
    color: var(--neutral-500);
}

.input-group-merge .form-control {
    border-left: none;
}

.input-group-merge .form-control:focus + .input-group-append .btn-reveal-pw,
.input-group-merge .form-control:focus ~ .input-group-prepend .input-group-text {
    border-color: var(--primary-400);
}

/* ============================================
 * TICKET VIEW CUSTOMIZATIONS
 * ============================================ */
.view-ticket {
    border: 1px solid var(--border-muted) !important;
    border-radius: var(--rounding-lg) !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 18, 32, 0.04) !important;
}

.view-ticket .card-body {
    border-bottom: 1px solid var(--border-muted);
    padding: 1.5rem !important;
}

.view-ticket .card-body:last-child {
    border-bottom: none;
}

.ticket-reply {
    border-radius: var(--rounding-md) !important;
    padding: 20px !important;
    background-color: var(--neutral-50) !important;
    border: 1px solid var(--neutral-200) !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01) !important;
}

.ticket-reply.staff {
    background-color: var(--primary-50) !important;
    border: 1px solid var(--primary-100) !important;
    border-left: 4px solid var(--primary) !important;
}

.ticket-reply .posted-by {
    font-size: 0.85rem;
    color: var(--neutral-500);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.ticket-reply .posted-by-name {
    font-weight: 700;
    color: var(--neutral-900);
}

.ticket-reply.staff .posted-by-name {
    color: var(--primary);
}

.ticket-reply .message {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--neutral-800);
}

.requestor-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.requestor-type-owner {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

.requestor-type-admin {
    background-color: var(--primary);
    color: #fff;
}

/* ============================================
 * INVOICE (FATURA) PAGE POLISH
 * ============================================ */
.invoice-container {
    background-color: var(--white) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: var(--rounding-lg) !important;
    box-shadow: 0 10px 30px rgba(15, 18, 32, 0.05) !important;
    padding: 40px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.invoice-status {
    margin-bottom: 20px;
}

.invoice-status span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.02);
}

.invoice-status .unpaid {
    background-color: #ffebe5 !important;
    color: var(--warning-lifted) !important;
    border: 1px solid #ffd1c4 !important;
}

.invoice-status .paid {
    background-color: #e6f6ec !important;
    color: var(--success-lifted) !important;
    border: 1px solid #c7eed5 !important;
}

.invoice-status .cancelled, 
.invoice-status .refunded {
    background-color: var(--neutral-100) !important;
    color: var(--neutral-600) !important;
    border: 1px solid var(--neutral-200) !important;
}

.invoice-container table {
    border: 1px solid var(--border-muted) !important;
    border-radius: var(--rounding-md) !important;
    overflow: hidden;
}

.invoice-container table th {
    background-color: var(--neutral-50) !important;
    color: var(--neutral-800) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--border-muted) !important;
}



