/* ==========================================================
   FSBRASIL v2 — BASELINE REFACTOR
   Source: fsbrasil.css (production baseline)

   RULES FOR THIS BASELINE
   - Preserve current visual behavior and cascade.
   - DisposableTheme upstream CSS remains untouched.
   - No redesign is introduced in this pass.
   - New V2 work should prefer tokens/components over new overrides.
   - Necessary compatibility overrides may remain !important.
   ========================================================== */

/* =========================================================
   FSBRASIL
   Aviation-Tech Theme
   Base: Disposable_v3
   ========================================================= */

:root {
    --fsb-navy: #071A2F;
    --fsb-navy-light: #0D2947;
    --fsb-blue: #0B5ED7;
    --fsb-tech: #00A8E8;
    --fsb-sky: #6EC8FF;

    --fsb-bg: #F4F7FA;
    --fsb-card: #FFFFFF;

    --fsb-text: #1B2A3A;
    --fsb-muted: #6C7A89;

    --fsb-border: #DDE5EC;

    --fsb-radius: 10px;
    --fsb-radius-lg: 14px;

    --fsb-shadow:
        0 4px 18px rgba(7, 26, 47, 0.08);
}


/* =========================================================
   GENERAL
   ========================================================= */

body {
    background-color: var(--fsb-bg);
    color: var(--fsb-text);
    font-family: "Lato", sans-serif;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

#Dispo_NavBar {
    background:
        linear-gradient(
            90deg,
            #071A2F 0%,
            #0A2746 60%,
            #0B355D 100%
        );

    min-height: 64px;
    padding: 7px 18px !important;

    border-bottom: 2px solid rgba(0, 168, 232, 0.55);

    box-shadow:
        0 4px 16px rgba(7, 26, 47, 0.22);

    z-index: 1000;
}


#Dispo_NavBar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 30px;
}


#Dispo_NavBar .navbar-brand img {
    max-height: 42px !important;
    width: auto;
}


/* Main menu */

#Dispo_NavBar .nav-link {
    color: rgba(255,255,255,0.88) !important;

    font-size: 0.92rem;
    font-weight: 600;

    padding: 12px 11px !important;

    border-radius: 7px;

    transition:
        background-color .18s ease,
        color .18s ease,
        transform .18s ease;
}


#Dispo_NavBar .nav-link:hover,
#Dispo_NavBar .nav-link:focus {

    color: #FFFFFF !important;

    background-color:
        rgba(0, 168, 232, 0.16);

    transform: translateY(-1px);
}


#Dispo_NavBar .nav-link i {
    color: var(--fsb-sky);

    margin-right: 4px;
}


/* =========================================================
   DROPDOWN MENUS
   ========================================================= */

#Dispo_NavBar .dropdown-menu {

    background-color: #FFFFFF;

    border:
        1px solid
        rgba(7, 26, 47, 0.08);

    border-radius: 10px;

    padding: 6px;

    margin-top: 6px;

    box-shadow:
        0 12px 30px
        rgba(7, 26, 47, 0.16);
}


#Dispo_NavBar .dropdown-item {

    color: var(--fsb-text);

    border-radius: 6px;

    padding: 8px 12px;

    font-size: 0.9rem;

    transition:
        background-color .15s ease,
        color .15s ease;
}


#Dispo_NavBar .dropdown-item i {

    width: 22px;

    color: var(--fsb-blue);
}


#Dispo_NavBar .dropdown-item:hover {

    background-color: #EEF7FC;

    color: var(--fsb-blue);
}


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

.card {

    border:
        1px solid
        rgba(7, 26, 47, 0.07);

    border-radius: var(--fsb-radius);

    background-color: var(--fsb-card);

    box-shadow: var(--fsb-shadow);
}


.card-header {

    background-color: #FFFFFF;

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

    color: var(--fsb-navy);

    font-weight: 700;
}


.card-header h5,
.card-header h4,
.card-header h3 {

    color: var(--fsb-navy);

    font-weight: 800;
}


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

a {

    color: var(--fsb-blue);

    text-decoration: none;
}


a:hover {

    color: var(--fsb-tech);
}


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

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--fsb-blue),
            #087BC1
        );

    border-color: var(--fsb-blue);

    border-radius: 7px;

    font-weight: 600;
}


.btn-primary:hover {

    background:
        linear-gradient(
            135deg,
            #084DB4,
            #006FAE
        );

    border-color: #084DB4;
}


/* =========================================================
   HOME CAROUSEL
   ========================================================= */

#DT_HomeSlide {

    overflow: hidden;

    border-radius: var(--fsb-radius-lg);

    box-shadow:
        0 10px 32px
        rgba(7, 26, 47, 0.14);
}


#DT_HomeSlide img {

    border-radius:
        var(--fsb-radius-lg) !important;
}


/* =========================================================
   PAGE CONTENT
   ========================================================= */

#page-contents {

    padding-top: 18px;

    padding-left: 22px;

    padding-right: 22px;
}


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

#footer {

    margin-top: 30px;

    color: var(--fsb-muted);
}


#footer .card {

    background-color: transparent;

    box-shadow: none;

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

    border-left: 0;

    border-right: 0;

    border-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    #Dispo_NavBar {

        padding:
            7px 12px !important;
    }


    #Dispo_NavBar .navbar-collapse {

        margin-top: 8px;

        padding-top: 8px;

        border-top:
            1px solid
            rgba(255,255,255,0.12);
    }


    #Dispo_NavBar .nav-link {

        padding:
            9px 10px !important;
    }


    #page-contents {

        padding-left: 10px;

        padding-right: 10px;
    }
}
/* =========================================================
   FSBRASIL NAVIGATION V2
   ========================================================= */

.fsb-navbar {
    position: relative;
    min-height: 72px;
    padding: 0 !important;

    background:
        linear-gradient(
            110deg,
            #06182b 0%,
            #082847 55%,
            #0a365d 100%
        ) !important;

    border-bottom:
        1px solid rgba(110, 200, 255, 0.35);

    box-shadow:
        0 5px 24px rgba(4, 18, 32, 0.28);

    z-index: 1030;
}


/* Tech accent line */

.fsb-navbar::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #00a8e8 25%,
            #6ec8ff 50%,
            #00a8e8 75%,
            transparent 100%
        );

    opacity: 0.85;
}


.fsb-navbar-container {
    min-height: 72px;

    padding-left: 28px;
    padding-right: 28px;
}


/* =========================================================
   BRAND
   ========================================================= */

.fsb-brand {
    display: flex;
    align-items: center;

    min-height: 72px;

    margin-right: 30px;

    padding: 6px 0;
}


.fsb-brand-logo {
    display: block;

    width: auto;

    max-height: 47px !important;

    filter:
        drop-shadow(
            0 2px 4px
            rgba(0, 0, 0, 0.18)
        );

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}


.fsb-brand:hover .fsb-brand-logo {
    transform: translateY(-1px);

    filter:
        drop-shadow(
            0 4px 8px
            rgba(0, 168, 232, 0.22)
        );
}


/* =========================================================
   MAIN MENU
   ========================================================= */

.fsb-main-menu {
    gap: 2px;
}


.fsb-main-menu > .nav-item {
    position: relative;
}


.fsb-main-menu > .nav-item > .nav-link {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 44px;

    padding:
        10px 11px !important;

    color:
        rgba(255, 255, 255, 0.87) !important;

    border-radius: 7px;

    font-size: 0.90rem;
    font-weight: 600;

    letter-spacing: 0.01em;

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


.fsb-main-menu > .nav-item > .nav-link i {
    margin-right: 6px;

    color: #6ec8ff;

    font-size: 0.88rem;

    transition:
        color 0.18s ease;
}


.fsb-main-menu > .nav-item > .nav-link:hover,
.fsb-main-menu > .nav-item > .nav-link:focus,
.fsb-main-menu > .nav-item.show > .nav-link {

    color: #ffffff !important;

    background:
        rgba(0, 168, 232, 0.13);

    transform: translateY(-1px);
}


.fsb-main-menu > .nav-item > .nav-link:hover i {
    color: #ffffff;
}


/* Little active-tech underline */

.fsb-main-menu > .nav-item > .nav-link::after {
    transition:
        transform 0.18s ease,
        opacity 0.18s ease;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.fsb-navbar .dropdown-menu {

    min-width: 215px;

    margin-top: 7px !important;

    padding: 7px;

    background: #ffffff !important;

    border:
        1px solid
        rgba(7, 26, 47, 0.08) !important;

    border-radius: 10px !important;

    box-shadow:
        0 14px 34px
        rgba(4, 20, 36, 0.18) !important;
}


.fsb-navbar .dropdown-item {

    display: flex;
    align-items: center;

    min-height: 37px;

    margin: 1px 0;

    padding:
        8px 11px !important;

    color: #25384a !important;

    border-radius: 6px;

    font-size: 0.88rem;

    font-weight: 500;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        padding-left 0.15s ease;
}


.fsb-navbar .dropdown-item i {

    flex: 0 0 23px;

    width: 23px;

    margin-right: 4px;

    color: #0b5ed7 !important;

    text-align: center;
}


.fsb-navbar .dropdown-item:hover,
.fsb-navbar .dropdown-item:focus {

    padding-left: 14px !important;

    color: #064f9b !important;

    background:
        linear-gradient(
            90deg,
            #edf8fd,
            #f7fbfd
        ) !important;
}


/* =========================================================
   NAVBAR TOGGLER
   ========================================================= */

.fsb-navbar-toggler {

    width: 43px;
    height: 39px;

    padding: 0 !important;

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid
        rgba(255, 255, 255, 0.18) !important;

    border-radius: 7px !important;

    box-shadow: none !important;
}


.fsb-toggler-icon {

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

    width: 100%;
    height: 100%;

    color: #6ec8ff;

    font-size: 1.1rem;
}


/* =========================================================
   RESPONSIVE NAVIGATION
   ========================================================= */

@media (max-width: 991.98px) {

    .fsb-navbar-container {

        padding-left: 14px;
        padding-right: 14px;
    }


    .fsb-brand {

        min-height: 62px;
    }


    .fsb-brand-logo {

        max-height: 40px !important;
    }


    #fsbMainNavigation {

        padding:
            10px 0 14px 0;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .fsb-main-menu {

        align-items: stretch !important;

        width: 100%;
    }


    .fsb-main-menu > .nav-item {

        width: 100%;
    }


    .fsb-main-menu > .nav-item > .nav-link {

        width: 100%;

        min-height: 40px;

        padding:
            8px 10px !important;
    }


    .fsb-navbar .dropdown-menu {

        margin:
            2px 0 8px 18px !important;

        background:
            rgba(255, 255, 255, 0.97) !important;

        border: 0 !important;

        box-shadow: none !important;
    }

}
/* =========================================================
   FSBRASIL HOME
   ========================================================= */

.fsb-home-hero {
    margin-top: 6px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.fsb-hero-card {
    position: relative;

    overflow: hidden;

    min-height: 420px;

    border-radius: 16px;

    background: #071a2f;

    box-shadow:
        0 14px 38px
        rgba(7, 26, 47, 0.16);
}


.fsb-home-carousel,
.fsb-home-carousel .carousel-inner,
.fsb-home-carousel .carousel-item {
    height: 100%;
    min-height: 420px;
}


.fsb-hero-image {
    width: 100%;
    height: 420px;

    object-fit: cover;
}


/* Overlay */

.fsb-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(4, 17, 31, 0.88) 0%,
            rgba(5, 26, 47, 0.74) 38%,
            rgba(5, 32, 58, 0.30) 68%,
            rgba(5, 32, 58, 0.08) 100%
        );
}


/* Hero content */

.fsb-hero-content {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    z-index: 3;

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

    width: 60%;

    padding: 45px;
}


.fsb-hero-eyebrow {
    margin-bottom: 13px;

    color: #6ec8ff;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.fsb-hero-content h1 {
    margin-bottom: 16px;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        3.6rem
    );

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -0.035em;
}


.fsb-hero-content h1 span {
    display: block;

    color: #6ec8ff;
}


.fsb-hero-content p {
    max-width: 560px;

    margin-bottom: 24px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 1.02rem;

    line-height: 1.6;
}


.fsb-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


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

.fsb-btn-primary,
.fsb-btn-outline {
    padding:
        10px 18px;

    border-radius: 8px;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}


.fsb-btn-primary {
    color: #ffffff !important;

    border:
        1px solid #00a8e8;

    background:
        linear-gradient(
            135deg,
            #0b5ed7,
            #00a8e8
        );

    box-shadow:
        0 7px 20px
        rgba(0, 168, 232, 0.22);
}


.fsb-btn-primary:hover {
    color: #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0, 168, 232, 0.32);
}


.fsb-btn-outline {
    color: #ffffff !important;

    border:
        1px solid
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(4px);
}


.fsb-btn-outline:hover {
    color: #ffffff !important;

    background:
        rgba(255,255,255,.16);

    transform:
        translateY(-2px);
}


/* =========================================================
   OPERATIONS PANEL
   ========================================================= */

.fsb-ops-panel {
    padding: 28px;

    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            160deg,
            #071a2f 0%,
            #0b2f52 100%
        );

    box-shadow:
        0 14px 38px
        rgba(7, 26, 47, 0.16);
}


.fsb-section-kicker,
.fsb-panel-kicker {
    color: #00a8e8;

    font-size: 0.70rem;

    font-weight: 800;

    letter-spacing: 0.13em;
}


.fsb-ops-panel h2 {
    margin:
        5px 0 8px;

    color: #ffffff;

    font-size: 1.55rem;

    font-weight: 800;
}


.fsb-ops-intro {
    margin-bottom: 22px;

    color:
        rgba(255,255,255,.66);

    font-size: .90rem;

    line-height: 1.5;
}


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

.fsb-quick-links {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.fsb-quick-link {
    display: flex;
    align-items: center;

    min-height: 66px;

    padding: 9px 11px;

    color: #ffffff !important;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 10px;

    background:
        rgba(255,255,255,.045);

    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease;
}


.fsb-quick-link:hover {
    color: #ffffff !important;

    transform:
        translateX(3px);

    border-color:
        rgba(110,200,255,.26);

    background:
        rgba(0,168,232,.10);
}


.fsb-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin-right: 11px;

    color: #6ec8ff;

    border-radius: 9px;

    background:
        rgba(0,168,232,.12);
}


.fsb-quick-link span:nth-child(2) {
    display: flex;
    flex-direction: column;

    flex: 1;
}


.fsb-quick-link strong {
    color: #ffffff;

    font-size: .91rem;
}


.fsb-quick-link small {
    margin-top: 2px;

    color:
        rgba(255,255,255,.54);

    font-size: .75rem;
}


.fsb-quick-arrow {
    margin-left: 8px;

    color:
        rgba(255,255,255,.35);

    font-size: .72rem;
}


/* =========================================================
   CONTENT PANELS
   ========================================================= */

.fsb-panel {
    overflow: hidden;

    padding: 18px;

    border:
        1px solid
        rgba(7,26,47,.07);

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 7px 24px
        rgba(7,26,47,.07);
}


.fsb-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;

    padding-bottom: 12px;

    border-bottom:
        1px solid #edf1f5;
}


.fsb-panel-header h3 {
    margin:
        3px 0 0;

    color: #071a2f;

    font-size: 1.15rem;

    font-weight: 800;
}


.fsb-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #0b5ed7;

    border-radius: 9px;

    background: #eef7fc;
}


/* =========================================================
   PILOTS
   ========================================================= */

.fsb-pilot-list {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.fsb-pilot-item {
    display: flex;
    align-items: center;

    padding: 7px;

    color: #1b2a3a;

    border-radius: 9px;

    transition:
        background .16s ease,
        transform .16s ease;
}


.fsb-pilot-item:hover {
    color: #1b2a3a;

    background: #f4f9fc;

    transform:
        translateX(2px);
}


.fsb-pilot-avatar {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    overflow: hidden;

    margin-right: 10px;

    border-radius: 50%;

    background: #eef2f6;
}


.fsb-pilot-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fsb-pilot-info {
    display: flex;
    flex-direction: column;

    min-width: 0;
}


.fsb-pilot-info strong {
    overflow: hidden;

    color: #17293b;

    font-size: .88rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.fsb-pilot-info span {
    overflow: hidden;

    color: #657486;

    font-size: .75rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.fsb-pilot-info small {
    margin-top: 1px;

    color: #94a1af;

    font-size: .68rem;
}


/* =========================================================
   WIDGET CLEANUP
   ========================================================= */

.fsb-widget-stack .card,
.fsb-stats-widget .card,
.fsb-awards-widget .card {

    box-shadow: none !important;

    border-color:
        #edf1f5 !important;
}


.fsb-widget-stack .card-header,
.fsb-stats-widget .card-header,
.fsb-awards-widget .card-header {

    background:
        #f8fafc !important;
}


/* =========================================================
   RESPONSIVE HOME
   ========================================================= */

@media (max-width: 991.98px) {

    .fsb-hero-card,
    .fsb-home-carousel,
    .fsb-home-carousel .carousel-inner,
    .fsb-home-carousel .carousel-item {

        min-height: 390px;
    }


    .fsb-hero-image {
        height: 390px;
    }


    .fsb-hero-content {
        width: 78%;

        padding: 32px;
    }

}


@media (max-width: 767.98px) {

    .fsb-hero-card,
    .fsb-home-carousel,
    .fsb-home-carousel .carousel-inner,
    .fsb-home-carousel .carousel-item {

        min-height: 450px;
    }


    .fsb-hero-image {
        height: 450px;
    }


    .fsb-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(4,17,31,.90),
                rgba(4,25,45,.74)
            );
    }


    .fsb-hero-content {
        width: 100%;

        padding: 28px 24px;
    }


    .fsb-hero-content h1 {
        font-size: 2.15rem;
    }


    .fsb-hero-content p {
        font-size: .92rem;
    }


    .fsb-hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .fsb-btn-primary,
    .fsb-btn-outline {

        width: 100%;

        text-align: center;
    }


    .fsb-ops-panel {
        padding: 22px;
    }

}
/* =========================================================
   HERO FIX V2
   ========================================================= */

.fsb-hero-card {
    position: relative;
    height: 420px;
    min-height: 420px;
    overflow: hidden;
}


.fsb-home-carousel {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}


.fsb-home-carousel .carousel-inner,
.fsb-home-carousel .carousel-item {
    width: 100%;
    height: 100%;
}


.fsb-home-carousel .carousel-item {
    min-height: 420px;
}


.fsb-hero-image {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 420px;

    object-fit: cover;
    object-position: center;
}


.fsb-hero-fallback {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(0,168,232,.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071a2f,
            #0b355d
        );
}


.fsb-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 5;

    background:
        linear-gradient(
            90deg,
            rgba(3,15,28,.94) 0%,
            rgba(4,24,44,.82) 40%,
            rgba(5,32,58,.36) 72%,
            rgba(5,32,58,.12) 100%
        );

    pointer-events: none;
}


.fsb-hero-content {
    position: absolute;

    z-index: 10;

    top: 50%;
    left: 0;

    width: 63%;

    padding: 44px;

    transform: translateY(-50%);
}


.fsb-hero-content h1,
.fsb-hero-content p,
.fsb-hero-eyebrow,
.fsb-hero-actions {
    position: relative;

    z-index: 11;
}


/* Keep carousel controls above overlay */

.fsb-home-carousel .carousel-control-prev,
.fsb-home-carousel .carousel-control-next {
    z-index: 15;
}


@media (max-width: 991.98px) {

}


@media (max-width: 767.98px) {

    .fsb-hero-card {
        height: 450px;
        min-height: 450px;
    }


    .fsb-home-carousel .carousel-item,
    .fsb-hero-image {
        min-height: 450px;
    }


    .fsb-hero-content {
        width: 100%;

        padding: 26px;

        top: 50%;
    }

}
/* =========================================================
   FSBRASIL HOME WIDGETS V6
   ========================================================= */


/* Remove visual "card inside card" inherited from widgets */

.fsb-widget-stack > .card,
.fsb-stats-widget > .card,
.fsb-awards-widget > .card,
.fsb-widget-stack .card,
.fsb-stats-widget .card,
.fsb-awards-widget .card {

    border: 0 !important;
    border-radius: 9px !important;

    box-shadow: none !important;

    background: transparent !important;
}


/* ---------------------------------------------------------
   Widget headers
   --------------------------------------------------------- */

.fsb-widget-stack .card-header,
.fsb-stats-widget .card-header,
.fsb-awards-widget .card-header {

    padding: 7px 10px !important;

    color: #6c7a89 !important;

    background: #f6f9fb !important;

    border:
        1px solid #edf1f5 !important;

    border-radius:
        8px 8px 0 0 !important;

    font-size: .76rem !important;

    font-weight: 700 !important;
}


.fsb-widget-stack .card-header h5,
.fsb-stats-widget .card-header h5,
.fsb-awards-widget .card-header h5 {

    margin: 0 !important;

    color: #728191 !important;

    font-size: .76rem !important;

    font-weight: 700 !important;
}


/* ---------------------------------------------------------
   Ranking
   --------------------------------------------------------- */

.fsb-widget-stack {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.fsb-widget-stack .card {

    overflow: hidden;

    border:
        1px solid #e8eef3 !important;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f9fbfc
        ) !important;
}


.fsb-widget-stack .card-body {

    padding:
        9px 10px !important;
}


.fsb-widget-stack a {

    color: #0b5ed7 !important;

    font-weight: 700;
}


.fsb-widget-stack table {

    margin: 0 !important;

    font-size: .78rem;
}


.fsb-widget-stack table td,
.fsb-widget-stack table th {

    padding:
        5px 7px !important;

    border-color:
        #edf1f5 !important;
}


/* ---------------------------------------------------------
   Statistics
   --------------------------------------------------------- */

.fsb-stats-widget {

    overflow: hidden;

    border-radius: 9px;

    border:
        1px solid #e8eef3;

    background: #ffffff;
}


.fsb-stats-widget .card-body {

    padding: 0 !important;
}


.fsb-stats-widget table {

    width: 100%;

    margin: 0 !important;

    font-size: .77rem;
}


.fsb-stats-widget table > tbody > tr {

    transition:
        background-color .15s ease;
}


.fsb-stats-widget table > tbody > tr:nth-child(odd) {

    background:
        #f7f9fb !important;
}


.fsb-stats-widget table > tbody > tr:nth-child(even) {

    background:
        #ffffff !important;
}


.fsb-stats-widget table > tbody > tr:hover {

    background:
        #eef8fd !important;
}


.fsb-stats-widget table td,
.fsb-stats-widget table th {

    padding:
        5px 8px !important;

    border: 0 !important;

    border-bottom:
        1px solid #edf1f5 !important;

    vertical-align: middle;
}


.fsb-stats-widget table td:first-child {

    color: #33485b;

    font-weight: 600;
}


.fsb-stats-widget table td:last-child {

    color: #071a2f;

    font-weight: 700;

    text-align: right;
}


/* ---------------------------------------------------------
   Awards
   --------------------------------------------------------- */

.fsb-awards-widget {

    overflow: hidden;

    border-radius: 9px;
}


.fsb-awards-widget .card-body {

    padding: 0 !important;
}


.fsb-awards-widget img {

    object-fit: contain;
}


.fsb-awards-widget a {

    color: #0b5ed7 !important;

    font-weight: 700;
}


/* Give individual award rows a cleaner appearance */

.fsb-awards-widget .row {

    margin-left: 0 !important;
    margin-right: 0 !important;

    padding:
        5px 3px;

    border-bottom:
        1px solid #edf1f5;

    transition:
        background-color .15s ease;
}


.fsb-awards-widget .row:hover {

    background:
        #f5fafe;
}


/* ---------------------------------------------------------
   Main four panels
   --------------------------------------------------------- */

.fsb-home-content > .row {

    align-items: stretch;
}


.fsb-home-content .fsb-panel {

    min-height: 405px;
}


.fsb-panel {

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.fsb-panel:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(7,26,47,.10);
}


/* ---------------------------------------------------------
   More polished panel headings
   --------------------------------------------------------- */

.fsb-panel-header {

    position: relative;
}


.fsb-panel-header::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 38px;
    height: 2px;

    border-radius: 2px;

    background:
        linear-gradient(
            90deg,
            #0b5ed7,
            #00a8e8
        );
}


/* ---------------------------------------------------------
   Footer separation
   --------------------------------------------------------- */

#footer {

    margin-top: 36px;
}


#footer .card {

    padding-top: 9px !important;

    color: #7b8996;

    font-size: .76rem;
}


/* ---------------------------------------------------------
   Large desktop tuning
   --------------------------------------------------------- */

@media (min-width: 1400px) {

    .fsb-panel {

        padding: 17px;
    }


    .fsb-stats-widget table {

        font-size: .75rem;
    }

}
/* =========================================================
   FSBRASIL PAGE BACKGROUND
   ========================================================= */

body#page-container {
    background-image: none !important;

    background:
        linear-gradient(
            180deg,
            #f3f6f9 0%,
            #eef2f6 100%
        ) !important;

    background-attachment: fixed !important;
}
/* =========================================================
   FSBRASIL - HOME KPI CARDS
   ========================================================= */

.fsb-kpi-row {
    margin-top: 0;
}

.fsb-kpi-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 108px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(7, 26, 47, 0.06);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.fsb-kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #0B5ED7 0%,
        #00A8E8 100%
    );
}

.fsb-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 94, 215, 0.18);
    box-shadow: 0 9px 25px rgba(7, 26, 47, 0.10);
}

.fsb-kpi-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(11, 94, 215, 0.10),
        rgba(0, 168, 232, 0.12)
    );
    color: #0B5ED7;
    font-size: 20px;
}

.fsb-kpi-content {
    min-width: 0;
}

.fsb-kpi-value {
    color: #071A2F;
    font-size: 1.55rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.fsb-kpi-label {
    margin-top: 6px;
    color: #6C7A89;
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.fsb-kpi-label span {
    text-transform: none;
}

@media (max-width: 767.98px) {
    .fsb-kpi-card {
        min-height: 96px;
        padding: 16px;
    }

    .fsb-kpi-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 17px;
    }

    .fsb-kpi-value {
        font-size: 1.25rem;
    }

    .fsb-kpi-label {
        font-size: 0.64rem;
    }
}
/* =========================================================
   FSBRASIL - DASHBOARD AVIATION-TECH V4
   ========================================================= */

.fsb-dashboard { padding-bottom: 18px; }

.fsb-dashboard-alert {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(7, 26, 47, 0.06);
}

/* PILOT KPI CARDS */

.fsb-dashboard-kpis { position: relative; }
.fsb-pilot-kpis { margin-bottom: 0; }

.fsb-pilot-kpi {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 76px;
    padding: 12px 12px 12px 14px;
    background: #ffffff;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(7, 26, 47, 0.055);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fsb-pilot-kpi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0B5ED7 0%, #00A8E8 100%);
}

.fsb-pilot-kpi:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 94, 215, 0.16);
    box-shadow: 0 7px 20px rgba(7, 26, 47, 0.08);
}

.fsb-pilot-kpi-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(0,168,232,.12));
    color: #0B5ED7;
    font-size: .9rem;
}

.fsb-pilot-kpi-body {
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
}

.fsb-pilot-kpi-value {
    min-width: 0;
    color: #071A2F;
    font-size: .84rem;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fsb-pilot-kpi-value .card,
.fsb-pilot-kpi-value .card-body {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    font: inherit !important;
}

.fsb-pilot-kpi-value .card-footer { display: none !important; }

.fsb-pilot-kpi-label {
    margin-top: 5px;
    color: #6C7A89;
    font-size: .56rem;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .045em;
    white-space: normal;
}

.fsb-pilot-kpi-balance { font-size: .76rem; }

/* DASHBOARD SECTIONS */

.fsb-dashboard-section,
.fsb-dashboard-mini-widget {
    background: #ffffff;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(7, 26, 47, 0.06);
    overflow: hidden;
}

.fsb-dashboard-section { padding: 14px; }
.fsb-dashboard-primary { padding: 14px; }

.fsb-dashboard-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.fsb-dashboard-section-header h3 {
    margin: 2px 0 0;
    color: #071A2F;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.fsb-dashboard-section .fsb-panel-kicker {
    display: block;
    color: #00A8E8;
    font-size: .66rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fsb-dashboard-widget > .card,
.fsb-dashboard-widget-block > .card,
.fsb-dashboard-ranking .card,
.fsb-dashboard-mini-widget > .card {
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.fsb-dashboard-widget-block {
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(7, 26, 47, 0.05);
    overflow: hidden;
}

.fsb-dashboard-mini-widget {
    height: 100%;
    padding: 6px;
}

.fsb-dashboard-ranking > div { display: flex; }
.fsb-dashboard-ranking > div > * { width: 100%; }

/* V4 - INTERNAL WIDGET VISUAL STANDARD */

.fsb-legacy-widget {
    background: #ffffff;
    color: #1B2A3A;
}

.fsb-widget-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(7, 26, 47, 0.07) !important;
    color: #071A2F !important;
}

.fsb-widget-kicker {
    display: block !important;
    margin-bottom: 3px !important;
    color: #00A8E8 !important;
    font-family: inherit !important;
    font-size: .66rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.fsb-widget-title {
    margin: 2px 0 0 !important;
    padding: 0 !important;
    color: #071A2F !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.fsb-widget-header-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(11,94,215,.09), rgba(0,168,232,.11));
    color: #0B5ED7;
    font-size: .85rem;
}

.fsb-widget-body { padding: 10px !important; }

.fsb-widget-footer {
    padding: 5px 8px !important;
    background: #F7F9FC !important;
    border-top: 1px solid rgba(7, 26, 47, 0.06) !important;
    color: #6C7A89 !important;
    font-size: .68rem;
    font-weight: 600;
}

.fsb-widget-table { color: #1B2A3A; }

.fsb-widget-table th {
    padding: 7px 8px;
    background: #F7F9FC;
    color: #071A2F;
    font-weight: 700;
}

.fsb-widget-table td {
    padding: 7px 8px;
    vertical-align: middle;
}

.fsb-widget-table a {
    color: #0B5ED7;
    font-weight: 600;
    text-decoration: none;
}

.fsb-widget-table a:hover { color: #084AA8; }

.fsb-widget-empty {
    padding: 9px 10px;
    font-size: .76rem;
    font-weight: 700;
}

.fsb-widget-empty-danger {
    color: #C62828;
    background: rgba(198, 40, 40, 0.045);
}

.fsb-widget-action {
    padding: 3px 10px;
    border: 1px solid #0B5ED7;
    border-radius: 7px;
    background: #0B5ED7;
    color: #ffffff !important;
    font-weight: 700;
}

.fsb-widget-action:hover {
    background: #084AA8;
    border-color: #084AA8;
}

/* NEXT RANK */

.fsb-next-rank-widget { overflow: hidden; }

.fsb-rank-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 8px;
}

.fsb-rank-title {
    color: #071A2F !important;
    font-size: .90rem;
    line-height: 1.2;
    font-weight: 700;
}

.fsb-rank-progress { padding: 0 12px 10px; }

.fsb-progress {
    height: 16px;
    border-radius: 999px;
    background: #E8EEF4;
    overflow: hidden;
}

.fsb-progress .progress-bar {
    font-size: .67rem;
    font-weight: 800;
}

.fsb-widget-message {
    padding: 7px 9px;
    border-radius: 8px;
    background: #F7F9FC;
    color: #1B2A3A;
    font-size: .74rem;
    font-weight: 600;
}

/* TOUR PROGRESS */

.fsb-tour-progress {
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
    background: #E8EEF4;
}

.fsb-tour-progress .progress-bar { min-width: 42px; }

.fsb-tour-link {
    display: block;
    width: 100%;
    padding: 0 8px;
    color: #071A2F !important;
    font-size: .68rem;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* MAP BUTTONS */

.fsb-dashboard-mini-widget .btn,
.fsb-dashboard-widget-block .btn { border-radius: 7px; }

.fsb-dashboard-mini-widget .btn-danger,
.fsb-dashboard-widget-block .btn-danger {
    background: #0B5ED7;
    border-color: #0B5ED7;
    color: #ffffff;
}

.fsb-dashboard-mini-widget .btn-danger:hover,
.fsb-dashboard-widget-block .btn-danger:hover {
    background: #084AA8;
    border-color: #084AA8;
}

/* METAR - PRESERVE ORIGINAL EMBED */

.fsb-dashboard-metar-original > .card {
    overflow: hidden;
    border-radius: 10px !important;
    background: transparent !important;
}

.fsb-dashboard-metar-original .card-header:first-child {
    padding: 0 !important;
    overflow: hidden;
    background: #071A2F !important;
    color: #ffffff !important;
}

.fsb-dashboard-metar-original .card-header:last-of-type {
    padding: 4px 7px !important;
    background: #071A2F !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255,255,255,.10) !important;
}

.fsb-dashboard-metar-original .card-header a { color: #ffffff !important; }

.fsb-dashboard-metar-original .card-header:last-of-type a {
    color: #6EC8FF !important;
    font-size: .66rem;
    text-decoration: none;
}

.fsb-dashboard-metar-original .card-header:last-of-type a:hover {
    color: #ffffff !important;
}

/* INTERNAL CLEANUP */

.fsb-dashboard .table { margin-bottom: 0; }

.fsb-dashboard .table > :not(caption) > * > * {
    border-bottom-color: rgba(7, 26, 47, 0.055);
}

.fsb-dashboard .table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(11, 94, 215, 0.025);
}

.fsb-dashboard .bg-primary,
.fsb-dashboard .bg-secondary,
.fsb-dashboard .bg-success,
.fsb-dashboard .bg-danger,
.fsb-dashboard .bg-dark,
.fsb-dashboard .progress-bar {
    color: #ffffff !important;
}

.fsb-dashboard .bg-warning { color: #071A2F !important; }

.fsb-dashboard-widget-block,
.fsb-dashboard-mini-widget {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fsb-dashboard-widget-block:hover,
.fsb-dashboard-mini-widget:hover {
    border-color: rgba(11, 94, 215, 0.16);
    box-shadow: 0 7px 20px rgba(7, 26, 47, 0.08);
}

.fsb-dashboard-widget .mb-2:last-child,
.fsb-dashboard-widget-block .mb-2:last-child,
.fsb-dashboard-ranking .mb-2:last-child {
    margin-bottom: 0 !important;
}

/* RESPONSIVE */

@media (max-width: 1399.98px) {
    .fsb-pilot-kpi {
        min-height: 72px;
        padding: 10px 10px 10px 12px;
        gap: 8px;
    }

    .fsb-pilot-kpi-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: .8rem;
    }

    .fsb-pilot-kpi-value { font-size: .76rem; }
    .fsb-pilot-kpi-label { font-size: .52rem; }
}

@media (max-width: 991.98px) {
    .fsb-dashboard-section { padding: 12px; }
    .fsb-pilot-kpi-value { font-size: .86rem; }
}

@media (max-width: 767.98px) {
    .fsb-dashboard-section-header { margin-bottom: 10px; }
    .fsb-dashboard-section-header h3 { font-size: .95rem; }
    .fsb-pilot-kpi { min-height: 68px; }

    .fsb-widget-header,
    .fsb-rank-welcome {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
/* =========================================================
   FSBRASIL DASHBOARD V5 - LATEST NEWS
   ========================================================= */

.fsb-news-card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.fsb-news-body {
    background: transparent;
}

.fsb-news-item {
    padding: 12px 0;
    border-top: 1px solid rgba(7, 26, 47, 0.07);
}

.fsb-news-item:first-child,
.fsb-news-more .fsb-news-item:first-child {
    border-top: 0;
}

.fsb-news-item-featured {
    padding-top: 2px;
    padding-bottom: 12px;
}

.fsb-news-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.fsb-news-subject {
    margin: 0 !important;
    color: #071A2F !important;
    font-family: inherit !important;
    font-size: .94rem !important;
    line-height: 1.28 !important;
    font-weight: 700 !important;
}

.fsb-news-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(0, 168, 232, 0.10);
    color: #0B5ED7;
    font-size: .57rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .06em;
}

.fsb-news-excerpt {
    margin: 0 0 9px !important;
    color: #526171 !important;
    font-size: .78rem !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
}

.fsb-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 15px;
    color: #7A8794;
    font-size: .66rem;
    line-height: 1.35;
}

.fsb-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fsb-news-meta i {
    color: #00A8E8;
    font-size: .63rem;
}

.fsb-news-more {
    border-top: 1px solid rgba(7, 26, 47, 0.07);
}

.fsb-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    padding: 9px 0 0 !important;
    background: transparent !important;
    border-top: 1px solid rgba(7, 26, 47, 0.07) !important;
}

.fsb-news-footer-left,
.fsb-news-footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fsb-news-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0B5ED7 !important;
    font-size: .69rem;
    line-height: 1;
    font-weight: 700;
    text-decoration: none !important;
}

.fsb-news-all-link:hover {
    color: #084AA8 !important;
}

.fsb-news-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    min-height: 27px;
    padding: 4px 8px !important;
    border: 1px solid rgba(11, 94, 215, 0.16) !important;
    border-radius: 7px !important;
    background: #F4F7FA !important;
    color: #0B5ED7 !important;
    font-size: .66rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.fsb-news-toggle:hover {
    background: rgba(11, 94, 215, 0.08) !important;
    border-color: rgba(11, 94, 215, 0.25) !important;
}

.fsb-news-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.fsb-news-toggle i {
    transition: transform .18s ease;
}

.fsb-news-count {
    color: #8793A0;
    font-size: .63rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .fsb-news-item-top {
        gap: 8px;
    }

    .fsb-news-footer {
        align-items: flex-start;
    }

    .fsb-news-footer-right {
        gap: 6px;
    }

    .fsb-news-count {
        display: none;
    }
}
/* =========================================================
   FSBRASIL Dashboard V5.1
   Operational row: Weather column follows Live Map height
   Add this block at the END of fsbrasil.css
   ========================================================= */

/* Right-hand operational column occupies the same height
   as the Live Map column */
.fsb-operational-weather-column {
    display: flex;
    flex-direction: column;
}

/* Weather card grows vertically to consume the available space.
   The METAR embed itself is intentionally left untouched. */
.fsb-operational-weather-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    min-height: 0;
}

/* Keep the weather widget at the top of its stretched card */
.fsb-operational-weather-panel > .fsb-dashboard-widget {
    flex: 0 0 auto;
}

/* Flight/Fleet map buttons stay anchored at the bottom */
.fsb-operational-map-buttons {
    flex: 0 0 auto;
    margin-top: auto;
    margin-bottom: 0 !important;
}

/* On narrower layouts the columns stack, so no forced stretch */
@media (max-width: 991.98px) {
    .fsb-operational-weather-column {
        display: block;
    }

    .fsb-operational-weather-panel {
        display: block;
        margin-bottom: 1rem;
    }

    .fsb-operational-map-buttons {
        margin-top: 0;
    }
}
/* =========================================================
   FSBRASIL - METAR final
   ========================================================= */

.fsb-dashboard-metar-original .card > .card-header:first-child {
    height: 450px !important;
    overflow: hidden !important;
    position: relative !important;
}

#metartaf-DispoThM {
    width: 83.333% !important;
    height: 375px !important;

    transform: scale(1.20);
    transform-origin: top left;

    display: block !important;
    max-width: none !important;
    max-height: none !important;
}

.fsb-dashboard-metar-original .card {
    overflow: hidden !important;
}
.fsb-action-widget{
    min-height:128px;
    display:flex;
    flex-direction:column}

.fsb-action-widget-body{
    padding:.25rem 0 .65rem}

.fsb-action-widget-label{
    display:flex;
    align-items:center;
    gap:.4rem;
    margin-bottom:.45rem;
    color:#6C7A89;
    font-size:.68rem;
    font-weight:800;
    letter-spacing:.055em;
    text-transform:uppercase}

.fsb-action-widget-label i{
    color:#0B5ED7}

.fsb-action-widget-control,.fsb-action-widget-control .select2-container{
    width:100%!important}

.fsb-action-widget-control .form-control,.fsb-action-widget-control .select2-selection--single{
    min-height:38px!important;
    border:1px solid #dbe5ef!important;
    border-radius:8px!important;
    background:#fff!important;
    box-shadow:none!important}

.fsb-action-widget-control .select2-selection--single .select2-selection__rendered{
    line-height:36px!important;
    padding-left:.75rem!important;
    color:#1B2A3A!important}

.fsb-action-widget-control .select2-selection--single .select2-selection__arrow{
    height:36px!important}

.fsb-action-widget-footer{
    margin-top:auto;
    padding-top:.65rem;
    border-top:1px solid #e8eef4;
    display:flex;
    align-items:center;
    justify-content:space-between;gap:.75rem}

.fsb-action-widget-price{
    display:flex;
    align-items:center;
    gap:.4rem;color:#6C7A89;
    font-size:.72rem;font-weight:600}

.fsb-action-widget-buttons{
    display:flex;
    align-items:center;gap:.4rem}

.fsb-btn-primary,

.fsb-btn-secondary{
    border-radius:7px!important;
    padding:.34rem .7rem!important;
    font-weight:700!important;
    line-height:1.2!important}

.fsb-btn-primary{
    color:#fff!important;
    background:#0B5ED7!important;
    border:1px solid #0B5ED7!important}

.fsb-btn-primary:hover,.fsb-btn-primary:focus{
    color:#fff!important;
    filter:brightness(.94)}

.fsb-btn-secondary{
    color:#0B5ED7!important;
    background:#fff!important;
    border:1px solid #b9d4f5!important}

.fsb-btn-secondary:hover,.fsb-btn-secondary:focus{
    color:#0B5ED7!important;
    background:#eef6ff!important}

.fsb-action-widget-compact{
    min-height:112px;
    display:flex;
    align-items:center;
    justify-content:space-between;gap:1rem}

.fsb-action-widget-empty{
    min-height:128px;
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:.8rem}

.fsb-action-widget-empty-icon{
    width:38px;
    height:38px;
    margin-bottom:.45rem;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#0B5ED7;
    background:#eef6ff;
    font-size:1rem}

.fsb-action-widget-empty-title{
    color:#1B2A3A;
    font-size:.84rem;
    font-weight:800;margin-bottom:.2rem}

.fsb-action-widget-empty-text{
    max-width:310px;
    color:#6C7A89;
    font-size:.72rem;
    line-height:1.4}
    @media(max-width:767.98px){

.fsb-action-widget-footer,.fsb-action-widget-compact{
    align-items:stretch;
    flex-direction:column}

.fsb-action-widget-buttons{
    justify-content:flex-end}
}
/* =========================================================
   FSBRASIL - JumpSeat + Transfer Aircraft
   Final polish
   ========================================================= */

/* JumpSeat:
   neutraliza a cor de status original do ícone de tarifa.
   A informação do tipo/preço continua preservada no title. */
.fsb-jumpseat-widget .fsb-action-widget-price i {
    color: #0B5ED7 !important;
}

/* Transferência:
   melhora discretamente a leitura do empty state. */
.fsb-transfer-widget .fsb-action-widget-empty-text {
    font-size: 0.76rem;
    line-height: 1.45;
}

/* Um pouco mais de presença para a mensagem principal */
.fsb-transfer-widget .fsb-action-widget-empty-title {
    font-size: 0.86rem;
}
/* Transferência de Aeronave:
   neutraliza a cor vermelha herdada do status de preço automático */
.fsb-transfer-widget .fsb-action-widget-price i {
    color: #0B5ED7 !important;
}
/* =========================================================
   FSBRASIL - Tour Progress V5
   ========================================================= */

.fsb-tour-widget-body {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
}

.fsb-tour-item + .fsb-tour-item {
    margin-top: 0.7rem;
}

.fsb-tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.32rem;
}

.fsb-tour-name {
    min-width: 0;
    color: #1B2A3A !important;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fsb-tour-name:hover {
    color: #0B5ED7 !important;
}

.fsb-tour-count {
    flex: 0 0 auto;
    color: #6C7A89;
    font-size: 0.70rem;
    font-weight: 800;
}

.fsb-tour-progress {
    height: 14px;
    margin: 0 !important;
    border-radius: 999px;
    overflow: hidden;
    background: #E8EEF4;
}

.fsb-tour-progress .progress-bar {
    min-width: 0 !important;
    position: relative;
    border-radius: 999px;
    overflow: hidden;
}

.fsb-tour-percent {
    display: block;
    width: 100%;
    padding: 0 0.35rem;
    color: #ffffff;
    font-size: 0.60rem;
    line-height: 14px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.fsb-tour-widget-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fsb-tour-footer-stat {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: #6C7A89;
    font-size: 0.68rem;
}

.fsb-tour-footer-stat strong {
    color: #1B2A3A;
    font-size: 0.72rem;
    font-weight: 800;
}

.fsb-tour-footer-label {
    font-weight: 600;
}

/* ==========================================================
   FSBRASIL v2 — HOME PROTOTYPE 01
   Scope: Home hero + operations rail + telemetry
   The previous FSBRASIL home rules remain below the cascade as
   rollback/reference; this block intentionally uses fsb-v2-* names.
   ========================================================== */

.fsb-v2-home {
    --fsb-v2-hero-radius: 22px;
    --fsb-v2-glass: rgba(8, 24, 42, .66);
    --fsb-v2-line: rgba(255, 255, 255, .13);
    --fsb-v2-soft: rgba(255, 255, 255, .72);
    margin-top: 6px;
}

.fsb-v2-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(7, 26, 47, .10);
    border-radius: var(--fsb-v2-hero-radius);
    background: #061525;
    box-shadow: 0 22px 60px rgba(7, 26, 47, .16);
}

.fsb-v2-hero-media,
.fsb-v2-carousel,
.fsb-v2-carousel .carousel-inner,
.fsb-v2-carousel .carousel-item,
.fsb-v2-hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fsb-v2-hero-image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
}

.fsb-v2-hero-fallback {
    background:
        radial-gradient(circle at 78% 28%, rgba(0, 168, 232, .25), transparent 34%),
        linear-gradient(135deg, #061525 0%, #0b2f52 58%, #0b5ed7 140%);
}

.fsb-v2-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 13, 24, .96) 0%, rgba(4, 18, 32, .86) 37%, rgba(4, 18, 32, .46) 66%, rgba(4, 18, 32, .22) 100%),
        linear-gradient(0deg, rgba(3, 13, 24, .92) 0%, transparent 38%);
}

.fsb-v2-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .12;
    background-image:
        linear-gradient(rgba(110, 200, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 200, 255, .16) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.fsb-v2-hero-body {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: center;
    min-height: 525px;
    padding: clamp(38px, 6vw, 76px);
    padding-bottom: 120px;
}

.fsb-v2-hero-copy {
    max-width: 760px;
}

.fsb-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #8bd7ff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.fsb-v2-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #45e6a8;
    box-shadow: 0 0 0 5px rgba(69, 230, 168, .12), 0 0 18px rgba(69, 230, 168, .55);
}

.fsb-v2-title {
    max-width: 720px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2.7rem, 5.3vw, 5.25rem);
    line-height: .94;
    font-weight: 800;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.fsb-v2-title span {
    display: block;
    color: #6ec8ff;
}

.fsb-v2-lead {
    max-width: 630px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    line-height: 1.68;
}

.fsb-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.fsb-v2-btn-primary,
.fsb-v2-btn-ghost {
    min-height: 46px;
    padding: 11px 19px;
    border-radius: 9px;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .015em;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fsb-v2-btn-primary {
    color: #fff !important;
    border: 1px solid rgba(110, 200, 255, .45);
    background: linear-gradient(135deg, #0b5ed7, #00a8e8);
    box-shadow: 0 10px 28px rgba(0, 168, 232, .24);
}

.fsb-v2-btn-ghost {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
}

.fsb-v2-btn-primary:hover,
.fsb-v2-btn-ghost:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.fsb-v2-btn-primary:hover {
    box-shadow: 0 14px 34px rgba(0, 168, 232, .34);
}

.fsb-v2-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .12);
}

.fsb-v2-ops-rail {
    overflow: hidden;
    border: 1px solid var(--fsb-v2-line);
    border-radius: 16px;
    background: var(--fsb-v2-glass);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}

.fsb-v2-ops-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 18px;
    border-bottom: 1px solid var(--fsb-v2-line);
}

.fsb-v2-ops-head span {
    display: flex;
    flex-direction: column;
}

.fsb-v2-ops-head small {
    margin-bottom: 3px;
    color: #6ec8ff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.fsb-v2-ops-head strong {
    color: #fff;
    font-size: .96rem;
}

.fsb-v2-ops-head > i {
    color: #6ec8ff;
    font-size: 1.05rem;
}

.fsb-v2-ops-links {
    padding: 7px;
}

.fsb-v2-ops-links > a {
    display: grid;
    grid-template-columns: 28px 1fr 16px;
    gap: 10px;
    align-items: center;
    min-height: 61px;
    padding: 9px 10px;
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background .16s ease, transform .16s ease;
}

.fsb-v2-ops-links > a:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateX(2px);
}

.fsb-v2-ops-links > a > i:first-child {
    color: #6ec8ff;
    text-align: center;
}

.fsb-v2-ops-links > a > i:last-child {
    color: rgba(255, 255, 255, .38);
    font-size: .72rem;
}

.fsb-v2-ops-links span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fsb-v2-ops-links strong {
    font-size: .80rem;
    font-weight: 750;
}

.fsb-v2-ops-links small {
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, .52);
    font-size: .66rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fsb-v2-telemetry {
    position: absolute;
    right: clamp(22px, 3vw, 44px);
    bottom: 24px;
    left: clamp(22px, 3vw, 44px);
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(4, 16, 29, .70);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
}

.fsb-v2-telemetry-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 13px 18px;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.fsb-v2-telemetry-item:last-child {
    border-right: 0;
}

.fsb-v2-telemetry-item > i {
    color: #6ec8ff;
    font-size: .95rem;
}

.fsb-v2-telemetry-item span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fsb-v2-telemetry-item strong {
    overflow: hidden;
    color: #fff;
    font-size: clamp(1.05rem, 1.7vw, 1.38rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fsb-v2-telemetry-item small {
    margin-top: 5px;
    overflow: hidden;
    color: rgba(255, 255, 255, .52);
    font-size: .61rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.fsb-v2-carousel-control {
    z-index: 6;
    width: 4%;
    opacity: .45;
}

.fsb-v2-carousel-control:hover {
    opacity: .9;
}

/* Give the existing lower Home panels a calmer V2 surface without
   changing their Blade/widget contracts. */
.fsb-v2-home + .fsb-home-content .fsb-panel {
    border: 1px solid rgba(7, 26, 47, .07);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(7, 26, 47, .055);
}

/* Dark theme: hero is already intrinsically dark; only lower surfaces
   follow the active theme. */
[data-theme="dark"] .fsb-v2-home + .fsb-home-content .fsb-panel {
    border-color: rgba(255, 255, 255, .08);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .fsb-v2-hero {
        min-height: 700px;
    }

    .fsb-v2-hero-body {
        grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
        padding: 46px 40px 130px;
    }

    .fsb-v2-title {
        font-size: clamp(2.55rem, 5.8vw, 4.35rem);
    }
}

@media (max-width: 991.98px) {
    .fsb-v2-hero {
        min-height: 850px;
    }

    .fsb-v2-hero-image {
        min-height: 850px;
    }

    .fsb-v2-hero-shade {
        background:
            linear-gradient(180deg, rgba(3, 13, 24, .86) 0%, rgba(3, 13, 24, .72) 48%, rgba(3, 13, 24, .96) 100%);
    }

    .fsb-v2-hero-body {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 28px;
        min-height: 730px;
        padding: 48px 32px 138px;
    }

    .fsb-v2-hero-copy {
        max-width: 680px;
    }

    .fsb-v2-ops-rail {
        max-width: 560px;
    }

    .fsb-v2-telemetry {
        grid-template-columns: repeat(2, 1fr);
    }

    .fsb-v2-telemetry-item:nth-child(2) {
        border-right: 0;
    }

    .fsb-v2-telemetry-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }
}

@media (max-width: 575.98px) {
    .fsb-v2-home {
        margin-right: -4px;
        margin-left: -4px;
    }

    .fsb-v2-hero {
        min-height: 930px;
        border-radius: 16px;
    }

    .fsb-v2-hero-image {
        min-height: 930px;
    }

    .fsb-v2-hero-body {
        min-height: 790px;
        padding: 34px 20px 154px;
    }

    .fsb-v2-eyebrow {
        font-size: .62rem;
        letter-spacing: .12em;
    }

    .fsb-v2-title {
        font-size: clamp(2.35rem, 13vw, 3.45rem);
    }

    .fsb-v2-lead {
        font-size: .93rem;
        line-height: 1.55;
    }

    .fsb-v2-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fsb-v2-actions .btn {
        width: 100%;
    }

    .fsb-v2-ops-links > a {
        min-height: 56px;
    }

    .fsb-v2-telemetry {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .fsb-v2-telemetry-item {
        grid-template-columns: 24px 1fr;
        min-height: 66px;
        padding: 10px 11px;
    }

    .fsb-v2-telemetry-item strong {
        font-size: 1rem;
    }

    .fsb-v2-telemetry-item small {
        font-size: .54rem;
        letter-spacing: .035em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fsb-v2-btn-primary,
    .fsb-v2-btn-ghost,
    .fsb-v2-ops-links > a {
        transition: none;
    }
}

/* ==========================================================
   FSBRASIL v2 — HOME PROTOTYPE 01.1
   Hero refinement pass — 2026-09
   ========================================================== */

/* Slightly more compact cinematic frame */
.fsb-v2-hero {
    min-height: 590px;
}

.fsb-v2-hero-image {
    min-height: 590px;
}

/* Preserve the dark reading zone at left/right, but let the photography
   breathe more through the center of the composition. */
.fsb-v2-hero-shade {
    background:
        linear-gradient(90deg,
            rgba(3, 13, 24, .95) 0%,
            rgba(4, 18, 32, .82) 31%,
            rgba(4, 18, 32, .34) 56%,
            rgba(4, 18, 32, .26) 72%,
            rgba(4, 18, 32, .43) 100%),
        linear-gradient(0deg,
            rgba(3, 13, 24, .90) 0%,
            transparent 35%);
}

.fsb-v2-hero-body {
    min-height: 475px;
    padding-top: clamp(34px, 5vw, 62px);
    padding-bottom: 112px;
}

/* Slightly tighter headline to balance the reduced hero height */
.fsb-v2-title {
    margin-bottom: 16px;
}

.fsb-v2-lead {
    margin-bottom: 25px;
}

/* Operations rail readability */
.fsb-v2-ops-head {
    padding: 15px 17px;
}

.fsb-v2-ops-links {
    padding: 6px;
}

.fsb-v2-ops-links > a {
    min-height: 56px;
}

.fsb-v2-ops-links strong {
    font-size: .82rem;
}

.fsb-v2-ops-links small {
    color: rgba(255, 255, 255, .64);
    font-size: .68rem;
}

/* Telemetry: a little lighter and closer to the content */
.fsb-v2-telemetry {
    bottom: 20px;
    background: rgba(3, 15, 27, .76);
}

.fsb-v2-telemetry-item {
    min-height: 70px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.fsb-v2-telemetry-item small {
    color: rgba(255, 255, 255, .60);
}

/* Carousel controls: keep them out of the copy/operations zones.
   The click targets remain accessible at the vertical edges. */
.fsb-v2-carousel-control {
    top: 43%;
    bottom: auto;
    width: 34px;
    height: 54px;
    opacity: .28;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 9px;
    background: rgba(2, 12, 22, .36);
    backdrop-filter: blur(8px);
}

.fsb-v2-carousel .carousel-control-prev {
    left: 10px;
}

.fsb-v2-carousel .carousel-control-next {
    right: 10px;
}

.fsb-v2-carousel-control .carousel-control-prev-icon,
.fsb-v2-carousel-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

.fsb-v2-carousel-control:hover {
    opacity: .72;
    background: rgba(2, 12, 22, .56);
}

/* Reassert responsive heights after the desktop 01.1 refinements */
@media (max-width: 1199.98px) {
    .fsb-v2-hero,
    .fsb-v2-hero-image {
        min-height: 660px;
    }

    .fsb-v2-hero-body {
        min-height: 545px;
        padding-bottom: 122px;
    }
}

@media (max-width: 991.98px) {
    .fsb-v2-hero,
    .fsb-v2-hero-image {
        min-height: 820px;
    }

    .fsb-v2-hero-body {
        min-height: 700px;
        padding-bottom: 132px;
    }

    .fsb-v2-hero-shade {
        background:
            linear-gradient(180deg,
                rgba(3, 13, 24, .84) 0%,
                rgba(3, 13, 24, .64) 46%,
                rgba(3, 13, 24, .96) 100%);
    }
}

@media (max-width: 575.98px) {
    .fsb-v2-hero,
    .fsb-v2-hero-image {
        min-height: 900px;
    }

    .fsb-v2-hero-body {
        min-height: 765px;
        padding-bottom: 148px;
    }

    .fsb-v2-carousel-control {
        top: 39%;
        width: 30px;
        height: 46px;
    }
}

/* ==========================================================
   FSBRASIL v2 — HOME PROTOTYPE 02
   Operations & Community
   ========================================================== */

.fsb-v2-community {
    margin: 8px 0 34px;
}

.fsb-v2-section-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: end;
    margin: 0 4px 16px;
}

.fsb-v2-section-kicker,
.fsb-v2-module-kicker {
    display: block;
    color: var(--fsb-tech, #00a8e8);
    font-size: .64rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.fsb-v2-section-heading h2 {
    margin: 5px 0 0;
    color: var(--fsb-text, #0b1f33);
    font-size: clamp(1.12rem, 1.6vw, 1.42rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.025em;
}

.fsb-v2-section-rule {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--fsb-border, rgba(7, 26, 47, .10));
}

.fsb-v2-section-rule span {
    display: block;
    width: 52px;
    height: 2px;
    margin-bottom: -6px;
    background: var(--fsb-tech, #00a8e8);
}

.fsb-v2-community-grid {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(390px, 1.22fr);
    grid-template-areas:
        "pilots performance"
        "stats awards";
    gap: 14px;
    align-items: stretch;
}

.fsb-v2-module-pilots { grid-area: pilots; }
.fsb-v2-module-performance { grid-area: performance; }
.fsb-v2-module-stats { grid-area: stats; }
.fsb-v2-module-awards { grid-area: awards; }

.fsb-v2-module {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--fsb-border, rgba(7, 26, 47, .08));
    border-radius: 16px;
    background: var(--fsb-card, #fff);
    box-shadow: 0 8px 26px rgba(7, 26, 47, .055);
}

.fsb-v2-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 67px;
    padding: 15px 17px 13px;
    border-bottom: 1px solid var(--fsb-border, rgba(7, 26, 47, .07));
}

.fsb-v2-module-header h3 {
    margin: 5px 0 0;
    color: var(--fsb-text, #0b1f33);
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.018em;
}

.fsb-v2-module-icon {
    display: inline-flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 168, 232, .10);
    border-radius: 10px;
    color: var(--fsb-tech, #00a8e8);
    background: rgba(0, 168, 232, .07);
}

.fsb-v2-module-icon i {
    font-size: .84rem;
}

/* New pilots */
.fsb-v2-pilot-list {
    padding: 7px 10px 11px;
}

.fsb-v2-pilot {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 14px;
    gap: 11px;
    align-items: center;
    min-height: 67px;
    padding: 8px 7px;
    border-bottom: 1px solid var(--fsb-border, rgba(7, 26, 47, .06));
    color: inherit !important;
    text-decoration: none !important;
    transition: background .16s ease, transform .16s ease;
}

.fsb-v2-pilot:last-child {
    border-bottom: 0;
}

.fsb-v2-pilot:hover {
    border-radius: 10px;
    background: rgba(0, 168, 232, .045);
    transform: translateX(2px);
}

.fsb-v2-pilot-avatar {
    width: 42px;
    height: 42px;
    overflow: hidden;
    border: 2px solid rgba(0, 168, 232, .18);
    border-radius: 50%;
    background: rgba(0, 168, 232, .08);
}

.fsb-v2-pilot-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fsb-v2-pilot-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fsb-v2-pilot-copy strong {
    overflow: hidden;
    color: var(--fsb-text, #0b1f33);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fsb-v2-pilot-copy small,
.fsb-v2-pilot-copy em {
    overflow: hidden;
    margin-top: 2px;
    color: var(--fsb-muted, #667788);
    font-size: .66rem;
    font-style: normal;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fsb-v2-pilot-copy em {
    opacity: .78;
}

.fsb-v2-row-arrow {
    color: var(--fsb-muted, #8a98a6);
    font-size: .58rem;
    opacity: .55;
}

/* Native widgets stay untouched structurally; V2 only skins their surface. */
.fsb-v2-widget-surface {
    padding: 9px 10px 11px;
}

/* Leaderboard: convert DisposableBasic's stacked boxes into a cleaner
   operational readout without changing widget markup/data. */
.fsb-v2-leaderboard .card,
.fsb-v2-leaderboard .widget,
.fsb-v2-leaderboard > div {
    box-shadow: none !important;
}

.fsb-v2-leaderboard .card {
    margin-bottom: 8px !important;
    overflow: hidden;
    border: 1px solid var(--fsb-border, rgba(7, 26, 47, .07)) !important;
    border-radius: 10px !important;
}

.fsb-v2-leaderboard .card:last-child {
    margin-bottom: 0 !important;
}

.fsb-v2-leaderboard .card-header {
    min-height: auto !important;
    padding: 6px 9px !important;
    border-bottom: 1px solid var(--fsb-border, rgba(7, 26, 47, .06)) !important;
    background: rgba(7, 26, 47, .025) !important;
    font-size: .68rem !important;
}

.fsb-v2-leaderboard .table,
.fsb-v2-stats .table {
    margin-bottom: 0 !important;
    font-size: .70rem;
}

.fsb-v2-leaderboard .table > :not(caption) > * > *,
.fsb-v2-stats .table > :not(caption) > * > * {
    padding: 5px 7px !important;
    vertical-align: middle;
    border-color: var(--fsb-border, rgba(7, 26, 47, .06)) !important;
}

.fsb-v2-leaderboard .table-striped > tbody > tr:nth-of-type(odd) > *,
.fsb-v2-stats .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(7, 26, 47, .025);
}

/* Statistics gets the wider lower-left cell and a denser operational table. */
.fsb-v2-stats {
    padding-top: 8px;
}

.fsb-v2-stats .card,
.fsb-v2-stats .widget {
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Awards: retain award artwork but reduce the old table/card visual weight. */
.fsb-v2-awards {
    padding-top: 8px;
}

.fsb-v2-awards .card,
.fsb-v2-awards .widget {
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.fsb-v2-awards img {
    max-width: 62px;
    height: auto;
}

.fsb-v2-awards .table {
    margin-bottom: 0 !important;
}

.fsb-v2-awards .table > :not(caption) > * > * {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
    vertical-align: middle;
    border-color: var(--fsb-border, rgba(7, 26, 47, .06)) !important;
}

/* Dark mode support for future activation; harmless while gen_darkmode=0. */
[data-theme="dark"] .fsb-v2-module,
.dark .fsb-v2-module {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(9, 24, 40, .94);
}

[data-theme="dark"] .fsb-v2-section-heading h2,
[data-theme="dark"] .fsb-v2-module-header h3,
[data-theme="dark"] .fsb-v2-pilot-copy strong,
.dark .fsb-v2-section-heading h2,
.dark .fsb-v2-module-header h3,
.dark .fsb-v2-pilot-copy strong {
    color: #eef7ff;
}

@media (max-width: 1199.98px) {
    .fsb-v2-community-grid {
        grid-template-columns: minmax(250px, .85fr) minmax(360px, 1.15fr);
    }
}

@media (max-width: 991.98px) {
    .fsb-v2-community-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "pilots performance"
            "stats stats"
            "awards awards";
    }
}

@media (max-width: 767.98px) {
    .fsb-v2-section-heading {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .fsb-v2-community-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "pilots"
            "performance"
            "stats"
            "awards";
    }
}

@media (max-width: 575.98px) {
    .fsb-v2-community {
        margin-top: 4px;
    }

    .fsb-v2-module {
        border-radius: 13px;
    }

    .fsb-v2-module-header {
        min-height: 61px;
        padding: 13px 14px 11px;
    }

    .fsb-v2-widget-surface {
        padding-right: 7px;
        padding-left: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fsb-v2-pilot {
        transition: none;
    }
}

