/* =========================================================
   BOOKAR ONLINE
   Theme 8 - DEC Technology
   ========================================================= */

:root {
    --bookar-black: #111111;
    --bookar-black-soft: #191919;
    --bookar-white: #ffffff;
    --bookar-bg: #f7f7f5;
    --bookar-text: #171717;
    --bookar-muted: #696969;
    --bookar-border: #e9e9e5;
    --bookar-yellow: #ffca0a;
    --bookar-orange: #ff6a00;
    --bookar-radius: 22px;
}

/* ---------- GLOBAL ---------- */

body {
    background: var(--bookar-bg);
    color: var(--bookar-text);
}

.bookar-home {
    overflow: hidden;
}

.bookar-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

/* ---------- HERO ---------- */

.bookar-hero {
    position: relative;
    padding: 46px 0 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 202, 10, .16), transparent 25%),
        radial-gradient(circle at 65% 80%, rgba(255, 106, 0, .12), transparent 24%),
        #f7f7f5;
}

.bookar-hero-grid {
    min-height: 590px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: 70px;
}

.bookar-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid #e2e2dd;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #303030;
}

.bookar-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bookar-yellow);
    box-shadow: 0 0 0 4px rgba(255,202,10,.17);
}

.bookar-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(48px, 5.5vw, 78px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 800;
    color: #121212;
}

.bookar-hero h1 .bookar-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.bookar-hero h1 .bookar-highlight::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 5px;
    height: 17px;
    border-radius: 20px;
    background: var(--bookar-yellow);
    z-index: -1;
    transform: rotate(-1deg);
}

.bookar-hero-description {
    max-width: 610px;
    margin: 27px 0 0;
    color: var(--bookar-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ---------- SEARCH ---------- */

.bookar-search {
    position: relative;
    max-width: 620px;
    margin-top: 30px;
}

.bookar-search-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 7px 7px 7px 22px;
    border: 1px solid var(--bookar-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.07);
}

.bookar-search-icon {
    flex: 0 0 auto;
    margin-right: 13px;
    font-size: 20px;
    color: #555;
}

.bookar-search .searchCourse {
    width: 100%;
    height: 50px;
    padding: 0;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #191919;
    font-size: 15px;
}

.bookar-search .searchCourse::placeholder {
    color: #969696;
}

.bookar-search-button {
    flex: 0 0 auto;
    height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    background: var(--bookar-black);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.bookar-search-button:hover {
    transform: translateY(-1px);
    background: #292929;
}

/* ---------- ACTIONS ---------- */

.bookar-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bookar-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none !important;
    transition: .25s ease;
}

.bookar-btn-dark {
    background: var(--bookar-black);
    color: #fff !important;
}

.bookar-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

.bookar-btn-light {
    border: 1px solid #deded9;
    background: #fff;
    color: #171717 !important;
}

.bookar-btn-light:hover {
    border-color: #bdbdb7;
    transform: translateY(-2px);
}

/* ---------- HERO VISUAL ---------- */

.bookar-hero-visual {
    position: relative;
    min-height: 530px;
}

.bookar-hero-card {
    position: absolute;
    inset: 15px 0 15px 25px;
    overflow: hidden;
    border-radius: 36px;
    background: #171717;
    box-shadow: 0 35px 80px rgba(0,0,0,.18);
}

.bookar-hero-card::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: var(--bookar-yellow);
}

.bookar-hero-card::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    left: -110px;
    bottom: -120px;
    border-radius: 50%;
    background: var(--bookar-orange);
    opacity: .9;
}

.bookar-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bookar-visual-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--bookar-yellow);
    color: #111;
    font-size: 25px;
    font-weight: 900;
}

.bookar-visual-copy {
    max-width: 380px;
}

.bookar-visual-copy small {
    display: block;
    margin-bottom: 13px;
    color: rgba(255,255,255,.56);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.bookar-visual-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.bookar-visual-copy h2 span {
    color: var(--bookar-yellow);
}

.bookar-floating-card {
    position: absolute;
    z-index: 4;
    right: -24px;
    bottom: 70px;
    width: 205px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 18px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 22px 55px rgba(0,0,0,.15);
    backdrop-filter: blur(12px);
}

.bookar-floating-card strong {
    display: block;
    color: #161616;
    font-size: 22px;
}

.bookar-floating-card span {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 12px;
}

/* ---------- TRUST BAR ---------- */

.bookar-trust {
    padding: 24px 0 55px;
}

.bookar-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--bookar-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.035);
}

.bookar-trust-item {
    min-height: 92px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--bookar-border);
}

.bookar-trust-item:last-child {
    border-right: 0;
}

.bookar-trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff6d0;
    color: #171717;
    font-size: 18px;
}

.bookar-trust-item strong {
    display: block;
    color: #1b1b1b;
    font-size: 14px;
}

.bookar-trust-item span {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 12px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .bookar-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .bookar-visual-content {
        padding: 38px;
    }

    .bookar-floating-card {
        right: 12px;
    }
}

@media (max-width: 900px) {
    .bookar-hero {
        padding-top: 25px;
    }

    .bookar-hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .bookar-hero-content {
        padding-top: 35px;
    }

    .bookar-hero-visual {
        min-height: 440px;
    }

    .bookar-hero-card {
        left: 0;
    }

    .bookar-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bookar-trust-item:nth-child(2) {
        border-right: 0;
    }

    .bookar-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--bookar-border);
    }
}

@media (max-width: 575px) {
    .bookar-container {
        width: min(100% - 28px, 1240px);
    }

    .bookar-hero h1 {
        font-size: 44px;
    }

    .bookar-hero-description {
        font-size: 16px;
    }

    .bookar-search-inner {
        padding-left: 16px;
    }

    .bookar-search-button {
        padding: 0 15px;
    }

    .bookar-hero-visual {
        min-height: 390px;
    }

    .bookar-hero-card {
        inset: 0;
        border-radius: 25px;
    }

    .bookar-visual-content {
        padding: 30px;
    }

    .bookar-floating-card {
        right: 14px;
        bottom: 25px;
        width: 175px;
    }

    .bookar-trust-grid {
        grid-template-columns: 1fr;
    }

    .bookar-trust-item,
    .bookar-trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--bookar-border);
    }

    .bookar-trust-item:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   BOOKAR NAVBAR
   ========================================================= */

.bookar-navbar-wrapper {
    position: relative;
    z-index: 999;
    width: 100%;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #ecece7;
    backdrop-filter: blur(18px);
}

.bookar-nav-container {
    width: min(1320px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 34px;
}

.bookar-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.bookar-brand img {
    display: block;
    max-width: 145px;
    max-height: 46px;
}

.bookar-main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 15px;
}

.bookar-main-nav a {
    position: relative;
    color: #303030;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none !important;
    transition: .2s ease;
}

.bookar-main-nav a:hover,
.bookar-main-nav a.active {
    color: #111;
}

.bookar-main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: #ffca0a;
}

.bookar-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 11px;
}

.bookar-nav-search {
    position: relative;
    width: 230px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid #e7e7e3;
    border-radius: 12px;
    background: #f8f8f6;
}

.bookar-nav-search > .iconify {
    flex: 0 0 auto;
    font-size: 18px;
    color: #777;
}

.bookar-nav-search input {
    width: 100%;
    height: 40px;
    padding: 0 !important;
    margin: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 13px;
}

.bookar-country {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    border-radius: 11px;
    background: #f5f5f2;
    color: #202020;
    font-size: 12px;
    font-weight: 800;
}

.bookar-login-btn,
.bookar-register-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;
}

.bookar-login-btn {
    color: #181818 !important;
}

.bookar-register-btn {
    padding-left: 19px;
    padding-right: 19px;
    background: #111;
    color: #fff !important;
}

.bookar-register-btn:hover {
    background: #292929;
    transform: translateY(-1px);
}

.bookar-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #e9e9e5;
    border-radius: 12px;
    background: #fff;
    color: #171717 !important;
    font-size: 20px;
}

.bookar-cart-count {
    position: absolute;
    right: -5px;
    top: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ffca0a;
    color: #111;
    font-size: 9px;
    font-weight: 900;
}

.bookar-user-button {
    border: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 8px 5px 5px;
    background: transparent;
    border-radius: 14px;
}

.bookar-user-button::after {
    display: none !important;
}

.bookar-user-avatar {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.bookar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bookar-user-info {
    line-height: 1.15;
    text-align: left;
}

.bookar-user-info small {
    display: block;
    color: #999;
    font-size: 9px;
}

.bookar-user-info strong {
    display: block;
    margin-top: 2px;
    color: #161616;
    font-size: 12px;
}

.bookar-profile-menu {
    min-width: 230px;
    margin-top: 12px !important;
    padding: 9px;
    border: 1px solid #ededeb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.bookar-profile-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #333;
    font-size: 13px;
}

.bookar-profile-menu .dropdown-item:hover {
    background: #f5f5f2;
}

.bookar-profile-menu .iconify {
    font-size: 17px;
}

.bookar-profile-menu .bookar-logout {
    color: #d43b3b;
}

.bookar-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    background: #fff;
}

.bookar-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 999px;
    background: #171717;
}

@media (max-width: 1180px) {
    .bookar-main-nav {
        gap: 18px;
    }

    .bookar-nav-search {
        width: 185px;
    }
}

@media (max-width: 1050px) {
    .bookar-main-nav,
    .bookar-nav-search {
        display: none;
    }

    .bookar-mobile-toggle {
        display: block;
    }
}

@media (max-width: 650px) {
    .bookar-nav-container {
        width: calc(100% - 24px);
        min-height: 72px;
    }

    .bookar-country,
    .bookar-user-info,
    .bookar-login-btn {
        display: none;
    }

    .bookar-brand img {
        max-width: 120px;
    }

    .bookar-register-btn {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }
}

/* =========================================================
   BOOKAR NAVBAR V2
   ========================================================= */

.bk-header {
    position: relative;
    z-index: 999;
    width: 100%;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(17,17,17,.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.bk-nav {
    width: min(1380px, calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 38px;
}

/* LOGO */

.bk-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.bk-brand-symbol {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ffca0a;
    color: #111;
    font-size: 20px;
    font-weight: 900;
}

.bk-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bk-brand-copy strong {
    color: #111;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.bk-brand-copy small {
    margin-top: 5px;
    color: #777;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}

/* MENU */

.bk-navigation {
    display: flex;
    align-items: center;
    gap: 25px;
}

.bk-navigation a {
    position: relative;
    color: #434343 !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
    white-space: nowrap;
}

.bk-navigation a:hover,
.bk-navigation a.active {
    color: #111 !important;
}

.bk-navigation a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: #ffca0a;
}

/* LADO DIREITO */

.bk-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUSCA */

.bk-nav-search {
    position: relative;
    width: 205px;
    height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    background: #f7f7f5;
}

.bk-nav-search > .iconify {
    flex: 0 0 auto;
    color: #707070;
    font-size: 17px;
}

.bk-nav-search input {
    width: 100%;
    height: 40px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #181818;
    font-size: 12px;
}

.bk-nav-search input::placeholder {
    color: #999;
}

.bk-nav-search .search-bar-suggestion-box {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 1100;
    background: #fff;
}

/* AO */

.bk-location {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-radius: 12px;
    background: #f5f5f2;
    color: #191919;
    font-size: 11px;
    font-weight: 800;
}

.bk-flag {
    font-size: 16px;
}

/* LOGIN */

.bk-login,
.bk-register {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none !important;
    white-space: nowrap;
}

.bk-login {
    color: #181818 !important;
}

.bk-login:hover {
    background: #f4f4f1;
}

.bk-register {
    padding-left: 20px;
    padding-right: 20px;
    background: #111;
    color: #fff !important;
}

.bk-register:hover {
    background: #292929;
    color: #fff !important;
}

/* CARRINHO */

.bk-round-action {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    background: #fff;
    color: #181818 !important;
    font-size: 19px;
}

.bk-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ffca0a;
    color: #111;
    font-size: 9px;
    font-weight: 900;
}

/* UTILIZADOR */

.bk-user {
    position: relative;
}

.bk-user-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 7px 4px 4px;
    border: 0 !important;
    border-radius: 14px;
    background: transparent !important;
}

.bk-user-button::after {
    display: none !important;
}

.bk-user-avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.bk-user-copy {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.bk-user-copy small {
    color: #999;
    font-size: 8px;
}

.bk-user-copy strong {
    max-width: 100px;
    margin-top: 3px;
    overflow: hidden;
    color: #181818;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bk-chevron {
    color: #777;
    font-size: 14px;
}

/* DROPDOWN */

.bk-user-menu {
    min-width: 235px;
    margin-top: 12px !important;
    padding: 9px;
    border: 1px solid #ecece8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0,0,0,.14);
}

.bk-menu-label {
    padding: 8px 11px 6px;
    color: #aaa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bk-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 10px;
    color: #333;
    font-size: 12px;
}

.bk-user-menu .dropdown-item:hover {
    background: #f5f5f2;
    color: #111;
}

.bk-user-menu .dropdown-item .iconify {
    font-size: 16px;
}

.bk-user-menu .dropdown-divider {
    margin: 6px 4px;
    border-color: #eeeeea;
}

.bk-user-menu .bk-logout {
    color: #d33f3f;
}

/* MOBILE */

.bk-mobile-button {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid #e8e8e4;
    border-radius: 11px;
    background: #fff;
    color: #111;
    font-size: 21px;
}

.bk-mobile-nav {
    padding: 10px 22px 22px;
    border-top: 1px solid #eee;
    background: #fff;
}

.bk-mobile-nav > a {
    display: block;
    padding: 11px 4px;
    color: #222 !important;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none !important;
}

.bk-mobile-auth {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.bk-mobile-auth a {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    background: #f4f4f1;
    color: #111 !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 750;
}

.bk-mobile-auth a:last-child {
    background: #111;
    color: #fff !important;
}

/* RESPONSIVO */

@media (max-width: 1260px) {
    .bk-nav {
        gap: 25px;
    }

    .bk-navigation {
        gap: 17px;
    }

    .bk-nav-search {
        width: 170px;
    }

    .bk-brand-copy small {
        display: none;
    }
}

@media (max-width: 1080px) {
    .bk-navigation {
        display: none;
    }

    .bk-nav-search {
        width: 210px;
    }

    .bk-mobile-button {
        display: grid;
        place-items: center;
    }
}

@media (max-width: 720px) {
    .bk-nav {
        width: calc(100% - 24px);
        min-height: 72px;
        gap: 10px;
    }

    .bk-nav-search,
    .bk-location,
    .bk-user-copy,
    .bk-login {
        display: none;
    }

    .bk-brand-symbol {
        width: 36px;
        height: 36px;
    }

    .bk-brand-copy strong {
        font-size: 20px;
    }

    .bk-register {
        height: 40px;
        padding: 0 12px;
        font-size: 11px;
    }
}


/* =========================================================
   BOOKAR - HEADER FIXO
   ========================================================= */

.bk-header {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}


/* =========================================================
   BOOKAR - HEADER FIXO DEFINITIVO
   ========================================================= */

.bk-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: rgba(255,255,255,.97) !important;
    border-bottom: 1px solid rgba(17,17,17,.07);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Reserva o espaço ocupado pelo header */
body {
    padding-top: 82px;
}

@media (max-width: 720px) {
    body {
        padding-top: 72px;
    }
}


/* =========================================================
   BOOKAR - MOBILE MENU OVERLAY
   ========================================================= */

@media (max-width: 1080px) {

    .bk-header {
        overflow: visible !important;
    }

    .bk-mobile-nav {
        position: fixed !important;
        top: 72px !important;
        left: 12px !important;
        right: 12px !important;
        z-index: 999998 !important;

        max-height: calc(100vh - 92px);
        overflow-y: auto;

        padding: 14px 16px 18px !important;

        border: 1px solid #e9e9e5 !important;
        border-radius: 18px !important;

        background: rgba(255,255,255,.98) !important;

        box-shadow:
            0 24px 70px rgba(0,0,0,.16),
            0 4px 16px rgba(0,0,0,.05);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .bk-mobile-nav > a {
        display: flex !important;
        align-items: center;

        min-height: 48px;

        padding: 0 12px !important;

        border-radius: 11px;

        color: #222 !important;
        font-size: 14px;
        font-weight: 700;
    }

    .bk-mobile-nav > a:hover {
        background: #f6f6f3;
    }

    .bk-mobile-auth {
        margin-top: 10px !important;
        padding-top: 12px;

        border-top: 1px solid #eeeeea;
    }

    .bk-mobile-auth a {
        min-height: 46px;

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

        border-radius: 12px !important;
    }

    .bk-mobile-auth a:first-child {
        background: #f5f5f2 !important;
        color: #111 !important;
    }

    .bk-mobile-auth a:last-child {
        background: #111 !important;
        color: #fff !important;
    }
}

/* celular menor */
@media (max-width: 720px) {

    .bk-mobile-nav {
        top: 72px !important;
        left: 8px !important;
        right: 8px !important;

        border-radius: 16px !important;
    }
}


/* =========================================================
   BOOKAR MOBILE APP EXPERIENCE
   BLOCO 1 - BASE / OVERLAY / DRAWER
   ========================================================= */

.bk-drawer,
.bk-drawer-overlay,
.bk-bottom-nav {
    display: none;
}

@media (max-width: 1080px) {

    #bookarMobileNav {
        display: none !important;
    }

    html.bk-drawer-open,
    body.bk-drawer-open {
        overflow: hidden !important;
    }

    .bk-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9999996;
        visibility: hidden;
        opacity: 0;
        background: rgba(10,10,10,.50);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        transition:
            opacity .28s ease,
            visibility .28s ease;
    }

    .bk-drawer-overlay.is-open {
        visibility: visible;
        opacity: 1;
    }

    .bk-drawer {
        display: flex;
        flex-direction: column;

        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;

        z-index: 9999997;

        width: min(86vw, 390px);
        height: 100dvh;

        background: #fff;

        box-shadow: -30px 0 80px rgba(0,0,0,.20);

        transform: translateX(105%);
        transition: transform .34s cubic-bezier(.22,.8,.24,1);

        border-radius: 24px 0 0 24px;

        overflow: hidden;
    }

    .bk-drawer.is-open {
        transform: translateX(0);
    }

}


@media (max-width: 1080px) {

    .bk-drawer-top {
        min-height: 92px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 20px 20px 16px;
        border-bottom: 1px solid #efefeb;
    }

    .bk-drawer-user,
    .bk-drawer-brand {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .bk-drawer-avatar,
    .bk-drawer-brand-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #ffca0a;
        color: #111;
        font-size: 17px;
        font-weight: 900;
    }

    .bk-drawer-brand-icon {
        border-radius: 14px;
        font-size: 20px;
    }

    .bk-drawer-user > div:last-child,
    .bk-drawer-brand > div {
        min-width: 0;
    }

    .bk-drawer-user strong,
    .bk-drawer-brand strong {
        display: block;
        overflow: hidden;
        color: #171717;
        font-size: 15px;
        font-weight: 800;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bk-drawer-user span,
    .bk-drawer-brand span {
        display: block;
        margin-top: 3px;
        color: #8b8b8b;
        font-size: 11px;
    }

    .bk-drawer-close {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 12px;
        background: #f6f6f3;
        color: #111;
        font-size: 24px;
    }

    .bk-drawer-scroll {
        flex: 1;
        padding: 14px 16px 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .bk-drawer-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .bk-drawer-menu a {
        min-height: 52px;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 14px;
        border-radius: 14px;
        color: #272727 !important;
        font-size: 14px;
        font-weight: 650;
        text-decoration: none !important;
        transition:
            background .2s ease,
            transform .2s ease;
    }

    .bk-drawer-menu a .iconify {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
        color: #222;
    }

    .bk-drawer-menu a.active {
        background: linear-gradient(
            90deg,
            rgba(255,202,10,.26),
            rgba(255,202,10,.08)
        );
        color: #111 !important;
    }

    .bk-drawer-menu a:active {
        transform: scale(.98);
    }

    .bk-drawer-divider {
        height: 1px;
        margin: 13px 8px;
        background: #ededeb;
    }

    .bk-drawer-menu .bk-drawer-logout {
        color: #d43e3e !important;
    }

    .bk-drawer-menu .bk-drawer-logout .iconify {
        color: #d43e3e;
    }

    .bk-drawer-footer {
        margin: 0 16px 6px;
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 10px 12px;
        border: 1px solid #e9e9e5;
        border-radius: 15px;
        background: #fafaf8;
    }

    .bk-drawer-footer-logo {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: #ffca0a;
        color: #111;
        font-size: 16px;
        font-weight: 900;
    }

    .bk-drawer-footer > div:nth-child(2) {
        flex: 1;
    }

    .bk-drawer-footer strong {
        display: block;
        color: #161616;
        font-size: 14px;
        font-weight: 800;
    }

    .bk-drawer-footer span {
        display: block;
        margin-top: 2px;
        color: #888;
        font-size: 9px;
    }

    .bk-drawer-footer .bk-drawer-angola {
        margin: 0;
        font-size: 18px;
    }

    .bk-drawer-origin {
        padding: 5px 16px 17px;
        color: #999;
        font-size: 10px;
        text-align: center;
    }

}


@media (max-width: 1080px) {

    .bk-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 9px;
        z-index: 9999995;

        min-height: 68px;

        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;

        padding:
            5px 4px
            calc(5px + env(safe-area-inset-bottom));

        border: 1px solid rgba(220,220,215,.92);
        border-radius: 21px;

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

        box-shadow: 0 12px 45px rgba(0,0,0,.14);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .bk-bottom-nav > a {
        position: relative;
        min-width: 0;

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

        gap: 3px;

        color: #6e7480 !important;

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

        text-decoration: none !important;
    }

    .bk-bottom-icon {
        position: relative;

        width: 36px;
        height: 34px;

        display: grid;
        place-items: center;

        border-radius: 11px;

        font-size: 21px;
    }

    .bk-bottom-nav > a.active {
        color: #171717 !important;
        font-weight: 800;
    }

    .bk-bottom-nav > a.active .bk-bottom-icon {
        background: #ffca0a;
        color: #111;
    }

    .bk-bottom-nav > a.active::after {
        content: "";

        position: absolute;
        left: 50%;
        bottom: -1px;

        width: 24px;
        height: 3px;

        border-radius: 999px;

        background: #ffca0a;

        transform: translateX(-50%);
    }

    .bk-bottom-badge {
        position: absolute;

        top: -4px;
        right: -4px;

        min-width: 16px;
        height: 16px;

        display: grid;
        place-items: center;

        padding: 0 3px;

        border: 2px solid #fff;
        border-radius: 999px;

        background: #111;
        color: #fff;

        font-size: 8px;
        font-weight: 900;
    }

    body {
        padding-bottom: 92px;
    }

}

@media (max-width: 480px) {

    .bk-drawer {
        width: 87vw;
    }

    .bk-bottom-nav {
        left: 7px;
        right: 7px;
        bottom: 7px;

        min-height: 65px;

        border-radius: 19px;
    }

    .bk-bottom-nav > a {
        font-size: 8px;
    }

    .bk-bottom-icon {
        width: 34px;
        height: 32px;
        font-size: 20px;
    }

}


/* =========================================================
   BOOKAR - COOKIE CONSENT MOBILE
   Mantém o componente nativo do LMSZAI
   ========================================================= */

@media (max-width: 1080px) {

    .cookie-consent {
        position: fixed !important;

        left: 12px !important;
        right: 12px !important;

        /*
         * Bottom nav ocupa aproximadamente 80px.
         * Cookie fica logo acima dela.
         */
        bottom: 92px !important;

        z-index: 9999994 !important;

        width: auto !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 1px solid rgba(17,17,17,.08) !important;
        border-radius: 18px !important;

        background: rgba(255,255,255,.97) !important;

        box-shadow: 0 12px 40px rgba(0,0,0,.13) !important;

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        overflow: hidden;
    }

    .cookie-consent .main-cookie-content {
        min-height: 72px;

        display: flex !important;
        align-items: center !important;

        gap: 12px;

        padding: 12px 14px !important;
    }

    .cookie-consent__message {
        flex: 1;

        margin: 0 !important;

        color: #4f5560 !important;

        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .cookie-consent .allow-button,
    .cookie-consent .cookie-consent__agree {
        flex: 0 0 auto;

        min-height: 42px;

        margin: 0 !important;
        padding: 0 16px !important;

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

        background: #111111 !important;
        color: #ffffff !important;

        font-size: 11px !important;
        font-weight: 800 !important;

        white-space: nowrap;

        box-shadow: none !important;
    }

    .cookie-consent .btn-close,
    .cookie-consent .close {
        position: absolute !important;

        top: 5px !important;
        right: 5px !important;

        z-index: 2;

        transform: scale(.70);
    }
}


/* Celulares pequenos */
@media (max-width: 480px) {

    .cookie-consent {
        left: 8px !important;
        right: 8px !important;
        bottom: 86px !important;

        border-radius: 16px !important;
    }

    .cookie-consent .main-cookie-content {
        min-height: 66px;

        gap: 9px;

        padding: 10px 12px !important;
    }

    .cookie-consent__message {
        font-size: 10px !important;
        line-height: 1.35 !important;
    }

    .cookie-consent .allow-button,
    .cookie-consent .cookie-consent__agree {
        min-height: 38px;

        padding: 0 12px !important;

        border-radius: 10px !important;

        font-size: 10px !important;
    }
}


/* =========================================================
   BOOKAR - COOKIE MOBILE COMPACTO V2
   ========================================================= */

@media (max-width: 1080px) {

    .cookie-consent {
        left: 10px !important;
        right: 10px !important;
        bottom: 88px !important;

        min-height: 0 !important;
        height: auto !important;

        border-radius: 18px !important;
    }

    .cookie-consent .main-cookie-content {
        min-height: 76px !important;
        height: auto !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        gap: 14px !important;

        padding: 13px 14px !important;
    }

    .cookie-consent__message {
        flex: 1 1 auto !important;

        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 10px !important;
        line-height: 1.45 !important;
    }

    .cookie-consent .allow-button,
    .cookie-consent .cookie-consent__agree {
        flex: 0 0 auto !important;

        min-width: 112px !important;
        min-height: 42px !important;

        padding: 0 14px !important;

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

        border-radius: 12px !important;

        background: #111 !important;
        color: #fff !important;

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

        white-space: nowrap !important;
    }

    .cookie-consent .btn-close,
    .cookie-consent .close {
        top: 3px !important;
        right: 3px !important;
    }
}


@media (max-width: 390px) {

    .cookie-consent .main-cookie-content {
        min-height: 72px !important;
        gap: 8px !important;
        padding: 11px 10px !important;
    }

    .cookie-consent__message {
        font-size: 9px !important;
    }

    .cookie-consent .allow-button,
    .cookie-consent .cookie-consent__agree {
        min-width: 100px !important;
        min-height: 38px !important;

        padding: 0 10px !important;

        font-size: 9px !important;
    }
}


/* =========================================================
   BOOKAR - CATEGORY EXPERIENCE
   ========================================================= */

.bk-category-section {
    padding: 92px 0;
    background: #fff;
}

.bk-section-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.bk-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.bk-section-head > div {
    max-width: 660px;
}

.bk-section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #9d7800;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.bk-section-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.045em;
}

.bk-section-head p {
    max-width: 620px;
    margin: 15px 0 0;
    color: #747474;
    font-size: 14px;
    line-height: 1.65;
}

.bk-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 12px 16px;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    background: #fff;
    color: #161616 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .2s ease;
}

.bk-section-link:hover {
    border-color: #111;
    transform: translateY(-1px);
}

.bk-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bk-category-card {
    position: relative;
    min-height: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ecece8;
    border-radius: 20px;
    background: #fafaf8;
    color: #111 !important;
    text-decoration: none !important;
    overflow: hidden;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.bk-category-card::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    right: -38px;
    bottom: -38px;
    border-radius: 50%;
    background: rgba(255,200,0,.13);
    transition: .25s ease;
}

.bk-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,200,0,.75);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.bk-category-card:hover::after {
    transform: scale(1.35);
}

.bk-category-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #ffc800;
    color: #111;
    font-size: 21px;
}

.bk-category-content {
    position: relative;
    z-index: 2;
}

.bk-category-content strong {
    display: block;
    margin-top: 20px;
    color: #181818;
    font-size: 15px;
    font-weight: 850;
}

.bk-category-content span {
    display: block;
    margin-top: 3px;
    color: #8a8a8a;
    font-size: 10px;
}

.bk-category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #777;
    font-size: 18px;
}

@media (max-width: 1000px) {

    .bk-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .bk-category-section {
        padding: 58px 0;
    }

    .bk-section-container {
        width: calc(100% - 24px);
    }

    .bk-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 24px;
    }

    .bk-section-head h2 {
        font-size: 34px;
    }

    .bk-section-head p {
        font-size: 12px;
    }

    .bk-section-link {
        padding: 10px 13px;
    }

    .bk-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bk-category-card {
        min-height: 135px;
        padding: 15px;
        border-radius: 17px;
    }

    .bk-category-icon {
        width: 39px;
        height: 39px;
        border-radius: 11px;
        font-size: 18px;
    }

    .bk-category-arrow {
        top: 15px;
        right: 15px;
    }

    .bk-category-content strong {
        margin-top: 15px;
        font-size: 13px;
    }

    .bk-category-content span {
        font-size: 9px;
    }

}



/* =========================================================
   BOOKAR FEATURED COURSES PREMIUM
   ========================================================= */

.bk-featured-courses {
    position: relative;
    overflow: hidden;
    padding: 104px 0 110px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 200, 0, .11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.bk-featured-courses::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -180px;
    top: 180px;
    border: 1px solid rgba(20, 20, 20, .05);
    border-radius: 50%;
    pointer-events: none;
}

.bk-featured-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.bk-featured-copy {
    max-width: 680px;
}

.bk-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .15em;
    color: #6c6c6c;
}

.bk-section-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffc800;
    box-shadow: 0 0 0 5px rgba(255, 200, 0, .13);
}

.bk-featured-copy h2 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 850;
}

.bk-featured-copy h2 span {
    position: relative;
    white-space: nowrap;
}

.bk-featured-copy h2 span::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 0;
    bottom: 2px;
    height: 8px;
    z-index: -1;
    border-radius: 20px;
    background: #ffc800;
    opacity: .75;
}

.bk-featured-copy p {
    max-width: 630px;
    margin: 18px 0 0;
    color: #727272;
    font-size: 15px;
    line-height: 1.75;
}

.bk-featured-view-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid #dedede;
    border-radius: 16px;
    background: #fff;
    color: #111 !important;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
    transition: .25s ease;
}

.bk-featured-view-all i {
    font-size: 11px;
    transition: transform .25s ease;
}

.bk-featured-view-all:hover {
    border-color: #111;
    background: #111;
    color: #fff !important;
    transform: translateY(-2px);
}

.bk-featured-view-all:hover i {
    transform: translateX(3px);
}

.bk-featured-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* CARD NATIVO LMSZAI DENTRO DA BOOKAR */

.bk-featured-card {
    min-width: 0;
}

.bk-featured-card .course-item {
    height: 100%;
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid #ececec !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .055);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bk-featured-card .course-item:hover {
    transform: translateY(-7px);
    border-color: #dedede !important;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .095);
}

.bk-featured-card .course-img-wrap {
    position: relative;
    height: 205px;
    max-height: none !important;
    margin: 0;
    overflow: hidden;
    background: #efefef;
}

.bk-featured-card .course-img-wrap > a {
    display: block;
    width: 100%;
    height: 100%;
}

.bk-featured-card .course-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.bk-featured-card .course-item:hover .course-img-wrap img {
    transform: scale(1.045);
}

.bk-featured-card .course-tag {
    z-index: 3;
    top: 14px !important;
    left: 14px !important;
    right: auto !important;
    padding: 7px 10px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: rgba(17, 17, 17, .91) !important;
    color: #fff !important;
    backdrop-filter: blur(7px);
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .04em;
}

.bk-featured-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 19px !important;
}

.bk-featured-card .course-title {
    min-height: 50px;
    margin: 0 0 8px !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
    font-weight: 780 !important;
}

.bk-featured-card .course-title a {
    color: #151515 !important;
    text-decoration: none !important;
}

.bk-featured-card .course-title a:hover {
    color: #8b6b00 !important;
}

.bk-featured-card .instructor-name-certificate {
    min-height: 21px;
    margin: 0 0 14px !important;
    color: #7b7b7b !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
}

.bk-featured-card .instructor-name-certificate a {
    color: #585858 !important;
    font-weight: 650;
    text-decoration: none !important;
}

.bk-featured-card .course-item-bottom {
    margin-top: auto;
}

.bk-featured-card .course-rating {
    min-height: 24px;
    margin-bottom: 11px;
}

.bk-featured-card .course-rating > span:first-child {
    color: #171717 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

.bk-featured-card .star-ratings {
    font-size: 11px !important;
}

.bk-featured-card .fill-ratings {
    color: #ffc400 !important;
}

.bk-featured-card .rating-count {
    color: #979797 !important;
    font-size: 10px !important;
}

.bk-featured-card .instructor-bottom-item {
    color: #1c1c1c !important;
    font-size: 12px !important;
    font-weight: 650 !important;
}

.bk-featured-card .instructor-bottom-item .color-hover {
    color: #111 !important;
    font-size: 15px;
    font-weight: 850 !important;
}

.bk-featured-card .text-decoration-line-through {
    color: #a2a2a2 !important;
    font-size: 10px !important;
}

.bk-featured-card .bg-light-purple {
    border: 0 !important;
    border-radius: 9px !important;
    background: #fff7d3 !important;
    color: #614900 !important;
}

/* EMPTY */

.bk-featured-empty {
    position: relative;
    z-index: 2;
    padding: 65px 30px;
    border: 1px dashed #dedede;
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.bk-featured-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #ffc800;
    color: #111;
    font-size: 20px;
}

.bk-featured-empty h3 {
    margin: 0 0 7px;
    color: #161616;
    font-size: 20px;
    font-weight: 800;
}

.bk-featured-empty p {
    margin: 0;
    color: #777;
    font-size: 13px;
}


/* TABLET */

@media (max-width: 1199px) {

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

    .bk-featured-card .course-img-wrap {
        height: 240px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .bk-featured-courses {
        padding: 68px 0 78px;
    }

    .bk-featured-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 30px;
    }

    .bk-featured-copy h2 {
        font-size: 36px;
    }

    .bk-featured-copy p {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .bk-featured-view-all {
        min-height: 47px;
        padding: 0 18px;
        border-radius: 14px;
        font-size: 12px;
    }

    .bk-featured-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bk-featured-card .course-img-wrap {
        height: 215px;
    }

    .bk-featured-card .course-item {
        border-radius: 20px !important;
    }

    .bk-featured-card .card-body {
        padding: 18px !important;
    }

    .bk-featured-card .course-title {
        min-height: auto;
        font-size: 16px !important;
    }

}



/* =========================================================
   BOOKAR BENEFITS PREMIUM
   ========================================================= */

.bk-benefits {
    position: relative;
    z-index: 5;
    padding: 54px 0 64px;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 200, 0, .08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}

.bk-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bk-benefit-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;
    min-height: 112px;

    padding: 22px 20px;

    overflow: hidden;

    border: 1px solid #e9e9e7;
    border-radius: 22px;

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

    box-shadow:
        0 10px 30px rgba(18, 18, 18, .035),
        0 1px 2px rgba(18, 18, 18, .02);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.bk-benefit-card::before {
    content: "";
    position: absolute;

    width: 78px;
    height: 78px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    background: #ffc800;

    opacity: .08;

    transition:
        width .3s ease,
        height .3s ease,
        opacity .3s ease;
}

.bk-benefit-card::after {
    content: "";
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 0;

    height: 3px;

    border-radius: 20px 20px 0 0;

    background: #ffc800;

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform .28s ease;
}

.bk-benefit-card:hover {
    transform: translateY(-5px);

    border-color: #dededb;

    box-shadow:
        0 22px 50px rgba(18, 18, 18, .075),
        0 2px 4px rgba(18, 18, 18, .03);
}

.bk-benefit-card:hover::before {
    width: 105px;
    height: 105px;
    opacity: .12;
}

.bk-benefit-card:hover::after {
    transform: scaleX(1);
}

.bk-benefit-icon {
    position: relative;
    z-index: 2;

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

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    background: #fff4ca;

    color: #111;

    font-size: 16px;

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

.bk-benefit-card:hover .bk-benefit-icon {
    transform: rotate(-4deg) scale(1.04);
    background: #ffc800;
}

.bk-benefit-content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.bk-benefit-content h3 {
    margin: 0 0 5px;

    color: #121212;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: -.015em;
}

.bk-benefit-content p {
    margin: 0;

    color: #858585;

    font-size: 11px;
    line-height: 1.45;
    font-weight: 450;
}


/* TABLET */

@media (max-width: 991px) {

    .bk-benefits {
        padding: 42px 0 50px;
    }

    .bk-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .bk-benefit-card {
        min-height: 106px;
    }

}


/* MOBILE - 2 x 2 */

@media (max-width: 575px) {

    .bk-benefits {
        padding: 28px 12px 42px;
    }

    .bk-benefits .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .bk-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bk-benefit-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        min-height: 142px;

        padding: 16px 14px;

        border-radius: 18px;
    }

    .bk-benefit-icon {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;

        border-radius: 13px;

        font-size: 14px;
    }

    .bk-benefit-content h3 {
        margin-top: 2px;
        margin-bottom: 5px;

        font-size: 13px;
        line-height: 1.25;
    }

    .bk-benefit-content p {
        font-size: 10px;
        line-height: 1.4;
    }

    .bk-benefit-card::after {
        left: 14px;
        right: 14px;
    }

}


/* MOBILE MUITO PEQUENO */

@media (max-width: 370px) {

    .bk-benefit-card {
        min-height: 136px;
        padding: 14px 12px;
    }

    .bk-benefit-content h3 {
        font-size: 12px;
    }

}


/* =========================================================
   BOOKAR HERO MOBILE - POLIMENTO VISUAL
   ========================================================= */

@media (max-width: 575px) {

    .bookar-hero-visual {
        min-height: 350px !important;
        margin-top: 28px;
    }

    .bookar-hero-card {
        min-height: 350px !important;
        height: 350px !important;
        border-radius: 24px !important;
    }

    .bookar-hero-card::before {
        width: 290px !important;
        height: 290px !important;
        right: -90px !important;
        top: -68px !important;
    }

    .bookar-hero-card::after {
        width: 210px !important;
        height: 210px !important;
        left: -72px !important;
        bottom: -84px !important;
    }

    .bookar-visual-content {
        height: 100%;
        padding: 30px 28px 28px !important;
    }

    .bookar-visual-mark {
        width: 54px !important;
        height: 54px !important;
        border-radius: 16px !important;
        font-size: 20px !important;
    }

    .bookar-visual-copy {
        position: absolute !important;
        left: 28px !important;
        bottom: 30px !important;
        width: 56% !important;
        max-width: 220px !important;
        z-index: 3 !important;
    }

    .bookar-visual-copy small {
        display: block;
        margin-bottom: 10px;
        font-size: 10px !important;
        letter-spacing: .13em !important;
    }

    .bookar-visual-copy h2 {
        margin: 0 !important;
        font-size: 30px !important;
        line-height: .98 !important;
        letter-spacing: -.045em !important;
    }

    .bookar-visual-copy h2 span {
        display: block;
    }

    .bookar-floating-card {
        right: 14px !important;
        bottom: 26px !important;
        width: 150px !important;
        min-height: 118px !important;
        padding: 18px 16px !important;
        border-radius: 20px !important;
        z-index: 5 !important;
    }

    .bookar-floating-card strong {
        display: block;
        font-size: 17px !important;
        line-height: 1.08 !important;
    }

    .bookar-floating-card span {
        margin-top: 8px !important;
        font-size: 10px !important;
        line-height: 1.35 !important;
    }

}

/* TELAS MUITO ESTREITAS */

@media (max-width: 390px) {

    .bookar-visual-copy {
        width: 52% !important;
        left: 24px !important;
    }

    .bookar-visual-copy h2 {
        font-size: 27px !important;
    }

    .bookar-floating-card {
        width: 140px !important;
        right: 10px !important;
        padding: 16px 14px !important;
    }

}


/* =========================================================
   BOOKAR HERO - CORRECAO DE ALTURA RESPONSIVA
   ========================================================= */

@media (max-width: 900px) {

    .bookar-hero {
        padding-bottom: 20px !important;
    }

    .bookar-hero-grid {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 0 !important;
        align-items: stretch !important;
    }

}

@media (max-width: 575px) {

    .bookar-hero {
        padding-top: 22px !important;
        padding-bottom: 24px !important;
    }

    .bookar-hero-grid {
        min-height: 0 !important;
        height: auto !important;
        gap: 28px !important;
        padding-bottom: 0 !important;
    }

    .bookar-hero-visual {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .bk-benefits {
        padding-top: 30px !important;
    }

}


/* =========================================================
   BOOKAR HERO SEARCH - PREMIUM
   ========================================================= */

.bookar-search {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e5e5e1 !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow:
        0 12px 35px rgba(0,0,0,.045),
        0 1px 2px rgba(0,0,0,.02);
}

.bookar-search-inner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 66px;
    padding: 6px 6px 6px 20px !important;
    background: transparent !important;
}

.bookar-search-inner > i {
    flex: 0 0 auto;
    margin-right: 14px;
    color: #525b66;
    font-size: 19px;
}

.bookar-search-inner input {
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #181818;
    font-size: 14px;
}

.bookar-search-inner input::placeholder {
    color: #999;
    opacity: 1;
}

.bookar-search-button {
    align-self: stretch;
    flex: 0 0 auto;

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

    min-width: 112px;
    min-height: 54px;

    margin: 0 !important;
    padding: 0 22px !important;

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

    background: #111 !important;
    color: #fff !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;

    box-shadow: none !important;

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

.bookar-search-button:hover {
    background: #ffc800 !important;
    color: #111 !important;
}


/* MOBILE */

@media (max-width: 575px) {

    .bookar-search {
        border-radius: 17px !important;
    }

    .bookar-search-inner {
        min-height: 62px;
        padding: 5px 5px 5px 15px !important;
    }

    .bookar-search-inner > i {
        margin-right: 10px;
        font-size: 17px;
    }

    .bookar-search-inner input {
        height: 50px;
        font-size: 12px;
    }

    .bookar-search-button {
        min-width: 88px;
        min-height: 52px;
        padding: 0 14px !important;
        border-radius: 13px !important;
        font-size: 11px !important;
    }

}


/* CELULARES ESTREITOS */

@media (max-width: 380px) {

    .bookar-search-button {
        min-width: 78px;
        padding: 0 10px !important;
        font-size: 10px !important;
    }

    .bookar-search-inner input {
        font-size: 11px;
    }

}



/* =========================================================
   BOOKAR CATEGORY COURSES PREMIUM
   ========================================================= */

.bk-category-courses {
    position: relative;
    padding: 92px 0 96px;
    background: #f7f7f5;
    overflow: hidden;
}

.bk-category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.bk-category-heading {
    max-width: 720px;
}

.bk-section-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #8b6700;
}

.bk-category-heading h2 {
    max-width: 650px;
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
}

.bk-category-heading p {
    max-width: 620px;
    margin: 20px 0 0;
    color: #686868;
    font-size: 15px;
    line-height: 1.7;
}

.bk-category-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid #dcdcd7;
    border-radius: 14px;
    background: #fff;
    color: #111 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .22s ease;
}

.bk-category-all:hover {
    border-color: #111;
    background: #111;
    color: #fff !important;
}

.bk-category-tabs {
    width: 100%;
    margin-bottom: 34px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bk-category-tabs::-webkit-scrollbar {
    display: none;
}

.bk-category-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 9px;
    min-width: max-content;
    margin: 0 !important;
    padding: 0 !important;
}

.bk-category-pills .nav-link {
    min-height: 44px;
    padding: 0 18px !important;
    border: 1px solid #deded9 !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #555 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    transition: .2s ease;
}

.bk-category-pills .nav-link:hover {
    border-color: #bdbdb7 !important;
    color: #111 !important;
}

.bk-category-pills .nav-link.active {
    border-color: #111 !important;
    background: #111 !important;
    color: #fff !important;
}

.bk-category-content {
    width: 100%;
}

.bk-category-course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bk-category-course-item {
    min-width: 0;
    padding: 10px;
    border: 1px solid #e6e6e1;
    border-radius: 22px;
    background: #fff;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.bk-category-course-item:hover {
    transform: translateY(-3px);
    border-color: #d8d8d2;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.bk-category-course-item .course-item {
    margin: 0 !important;
}

.bk-category-course-item .course-img-wrap {
    border-radius: 16px !important;
    overflow: hidden !important;
}

.bk-category-course-item .course-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bk-category-course-item .card-body {
    min-width: 0;
    padding: 18px !important;
}

.bk-category-course-item .course-title a {
    color: #111 !important;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-category-course-item .course-title a:hover {
    color: #9b7300 !important;
}

.bk-category-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 35px;
    border: 1px dashed #d9d9d3;
    border-radius: 24px;
    background: rgba(255,255,255,.65);
    text-align: center;
}

.bk-category-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 17px;
    background: #ffc800;
    color: #111;
    font-size: 18px;
}

.bk-category-empty strong {
    color: #111;
    font-size: 18px;
    font-weight: 800;
}

.bk-category-empty span {
    max-width: 360px;
    margin-top: 7px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.bk-category-empty-main {
    margin-top: 15px;
}


/* TABLET */

@media (max-width: 900px) {

    .bk-category-courses {
        padding: 72px 0;
    }

    .bk-category-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .bk-category-course-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-category-courses {
        padding: 58px 0 64px;
    }

    .bk-category-head {
        margin-bottom: 28px;
    }

    .bk-category-heading h2 {
        font-size: 36px;
        line-height: 1;
    }

    .bk-category-heading p {
        margin-top: 16px;
        font-size: 14px;
    }

    .bk-category-all {
        min-height: 46px;
        padding: 0 16px;
    }

    .bk-category-tabs {
        width: calc(100% + 14px);
        margin-bottom: 25px;
        padding-right: 14px;
    }

    .bk-category-pills {
        gap: 7px;
    }

    .bk-category-pills .nav-link {
        min-height: 40px;
        padding: 0 15px !important;
        font-size: 11px !important;
    }

    .bk-category-course-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bk-category-course-item {
        border-radius: 19px;
    }

    .bk-category-course-item .course-item {
        align-items: stretch !important;
    }

    .bk-category-course-item .course-img-wrap {
        width: 42% !important;
        min-width: 42% !important;
    }

    .bk-category-course-item .card-body {
        padding: 13px !important;
    }

    .bk-category-empty {
        min-height: 200px;
        padding: 28px 20px;
    }

}



/* =========================================================
   BOOKAR INSTRUCTORS PREMIUM
   ========================================================= */

.bk-instructors {
    position: relative;
    padding: 100px 0;
    background: #111;
    overflow: hidden;
}

.bk-instructors::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    background: rgba(255, 200, 0, .08);
    pointer-events: none;
}

.bk-instructors::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -170px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(255, 106, 0, .06);
    pointer-events: none;
}

.bk-instructors .bookar-container {
    position: relative;
    z-index: 2;
}

.bk-instructors-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.bk-instructors-heading {
    max-width: 760px;
}

.bk-instructors .bk-section-eyebrow {
    color: #ffc800;
}

.bk-instructors-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
}

.bk-instructors-heading p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.60);
    font-size: 15px;
    line-height: 1.7;
}

.bk-instructors-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .22s ease;
}

.bk-instructors-all:hover {
    border-color: #ffc800;
    background: #ffc800;
    color: #111 !important;
}

.bk-instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bk-instructor-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    background: #191919;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.bk-instructor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,200,0,.40);
    box-shadow: 0 25px 55px rgba(0,0,0,.28);
}

.bk-instructor-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
    background: #222;
}

.bk-instructor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.bk-instructor-card:hover .bk-instructor-image img {
    transform: scale(1.035);
}

.bk-instructor-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.48),
            transparent 48%
        );
}

.bk-instructor-level {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffc800;
    color: #111;
    font-size: 10px;
    font-weight: 800;
}

.bk-instructor-body {
    padding: 22px;
}

.bk-instructor-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.bk-instructor-title-row h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.bk-instructor-title-row h3 a {
    color: #fff !important;
    text-decoration: none !important;
}

.bk-instructor-title-row h3 a:hover {
    color: #ffc800 !important;
}

.bk-instructor-profession {
    margin: 7px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    line-height: 1.45;
}

.bk-instructor-badges {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.bk-instructor-badges img {
    width: 27px;
    height: 27px;
    object-fit: contain;
    border-radius: 50%;
    margin-left: -6px;
    border: 2px solid #191919;
}

.bk-instructor-badges img:first-child {
    margin-left: 0;
}

.bk-instructor-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}

.bk-instructor-rating,
.bk-instructor-courses {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bk-instructor-rating i {
    color: #ffc800;
    font-size: 11px;
}

.bk-instructor-rating strong {
    color: #fff;
    font-size: 12px;
}

.bk-instructor-courses i {
    color: rgba(255,255,255,.52);
}

.bk-instructor-divider {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.16);
}

.bk-instructor-consultation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 13px;
    background: rgba(255,255,255,.05);
}

.bk-instructor-consultation span {
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 700;
}

.bk-instructor-consultation strong {
    color: #ffc800;
    font-size: 12px;
    font-weight: 800;
}

.bk-instructor-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 49px;
    margin-top: 20px;
    padding: 0 16px;
    border-radius: 13px;
    background: #fff;
    color: #111 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .2s ease;
}

.bk-instructor-profile:hover {
    background: #ffc800;
}

.bk-instructors-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    padding: 40px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.025);
    text-align: center;
}

.bk-instructors-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #ffc800;
    color: #111;
    font-size: 19px;
}

.bk-instructors-empty strong {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.bk-instructors-empty span {
    max-width: 440px;
    margin-top: 8px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 900px) {

    .bk-instructors {
        padding: 76px 0;
    }

    .bk-instructors-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-instructors {
        padding: 62px 0 72px;
    }

    .bk-instructors-head {
        margin-bottom: 30px;
    }

    .bk-instructors-heading h2 {
        font-size: 36px;
    }

    .bk-instructors-heading p {
        margin-top: 16px;
        font-size: 14px;
    }

    .bk-instructors-all {
        min-height: 46px;
        padding: 0 16px;
    }

    .bk-instructors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bk-instructor-image {
        aspect-ratio: 1.35 / 1;
    }

    .bk-instructor-body {
        padding: 19px;
    }

}



/* =========================================================
   BOOKAR UPCOMING COURSES PREMIUM
   ========================================================= */

.bk-upcoming {
    position: relative;
    padding: 100px 0;
    background: #f4f3ee;
    overflow: hidden;
}

.bk-upcoming::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -230px;
    top: -230px;
    border: 1px solid rgba(17,17,17,.06);
    border-radius: 50%;
}

.bk-upcoming-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px;
}

.bk-upcoming-heading {
    max-width: 760px;
}

.bk-upcoming-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #111;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.05em;
}

.bk-upcoming-heading p {
    max-width: 620px;
    margin: 20px 0 0;
    color: #686863;
    font-size: 15px;
    line-height: 1.7;
}

.bk-upcoming-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 21px;
    border: 1px solid #d8d7d1;
    border-radius: 15px;
    background: #fff;
    color: #111 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .2s ease;
}

.bk-upcoming-all:hover {
    border-color: #111;
    background: #111;
    color: #fff !important;
}


/* COURSE CARDS */

.bk-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bk-upcoming-card {
    overflow: hidden;
    border: 1px solid #e1e0da;
    border-radius: 24px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.bk-upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(17,17,17,.08);
}

.bk-upcoming-image {
    position: relative;
    display: block;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #e9e8e2;
}

.bk-upcoming-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.bk-upcoming-card:hover .bk-upcoming-image img {
    transform: scale(1.035);
}

.bk-upcoming-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffc800;
    color: #111;
    font-size: 10px;
    font-weight: 800;
}

.bk-upcoming-body {
    padding: 22px;
}

.bk-upcoming-category {
    display: block;
    margin-bottom: 10px;
    color: #9b7600;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bk-upcoming-body h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 800;
}

.bk-upcoming-body h3 a {
    color: #111 !important;
    text-decoration: none !important;
}

.bk-upcoming-instructor {
    display: inline-block;
    margin-top: 9px;
    color: #777 !important;
    font-size: 11px;
    text-decoration: none !important;
}

.bk-upcoming-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #ecebe6;
}

.bk-upcoming-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.bk-upcoming-rating i {
    color: #ffc800;
}

.bk-upcoming-rating strong {
    color: #111;
}

.bk-upcoming-rating span {
    color: #8a8a84;
}

.bk-upcoming-price strong {
    color: #111;
    font-size: 13px;
    font-weight: 800;
}

.bk-upcoming-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 15px;
    border-radius: 13px;
    background: #111;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .2s ease;
}

.bk-upcoming-view:hover {
    background: #ffc800;
    color: #111 !important;
}


/* EMPTY STATE */

.bk-upcoming-empty {
    position: relative;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    gap: 58px;
    min-height: 330px;
    padding: 46px 60px;
    overflow: hidden;
    border: 1px dashed #d3d1c8;
    border-radius: 28px;
    background: #fff;
}

.bk-upcoming-empty-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
}

.bk-upcoming-empty-art::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: #ffc800;
}

.bk-upcoming-empty-art::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: -45px;
    bottom: -50px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-upcoming-empty-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: #fff;
    color: #111;
    font-size: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.bk-upcoming-empty-dot {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
}

.bk-dot-one {
    width: 14px;
    height: 14px;
    left: 60px;
    top: 50px;
}

.bk-dot-two {
    width: 8px;
    height: 8px;
    right: 70px;
    bottom: 50px;
}

.bk-upcoming-empty-copy {
    max-width: 590px;
}

.bk-upcoming-empty-label {
    display: block;
    margin-bottom: 13px;
    color: #9b7600;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.bk-upcoming-empty-copy h3 {
    max-width: 570px;
    margin: 0;
    color: #111;
    font-size: clamp(28px, 3vw, 43px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.04em;
}

.bk-upcoming-empty-copy p {
    max-width: 520px;
    margin: 17px 0 0;
    color: #777770;
    font-size: 13px;
    line-height: 1.65;
}

.bk-upcoming-empty-copy a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #111 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-upcoming-empty-copy a:hover {
    color: #9b7600 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .bk-upcoming {
        padding: 76px 0;
    }

    .bk-upcoming-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

    .bk-upcoming-empty {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 35px;
        padding: 35px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-upcoming {
        padding: 62px 0 72px;
    }

    .bk-upcoming-head {
        margin-bottom: 30px;
    }

    .bk-upcoming-heading h2 {
        font-size: 36px;
    }

    .bk-upcoming-heading p {
        margin-top: 16px;
        font-size: 14px;
    }

    .bk-upcoming-all {
        min-height: 46px;
        padding: 0 16px;
    }

    .bk-upcoming-grid {
        grid-template-columns: 1fr;
    }

    .bk-upcoming-empty {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        padding: 16px 16px 30px;
        border-radius: 24px;
    }

    .bk-upcoming-empty-art {
        min-height: 220px;
    }

    .bk-upcoming-empty-copy {
        padding: 0 5px;
    }

    .bk-upcoming-empty-copy h3 {
        font-size: 29px;
    }

    .bk-upcoming-empty-copy p {
        font-size: 12px;
    }

}



/* =========================================================
   BOOKAR TESTIMONIALS PREMIUM
   ========================================================= */

.bk-testimonials {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.bk-testimonials-head {
    margin-bottom: 42px;
}

.bk-testimonials-heading {
    max-width: 760px;
}

.bk-testimonials-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #111;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.05em;
}

.bk-testimonials-heading p {
    max-width: 620px;
    margin: 20px 0 0;
    color: #6d6d68;
    font-size: 15px;
    line-height: 1.7;
}


/* REAL TESTIMONIALS */

.bk-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bk-testimonial-card {
    padding: 28px;
    border: 1px solid #e8e7e2;
    border-radius: 24px;
    background: #f8f8f5;
}

.bk-testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

.bk-testimonial-top strong {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.bk-testimonial-top span {
    display: block;
    margin-top: 4px;
    color: #85857e;
    font-size: 11px;
}

.bk-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 24px;
    color: #ffc800;
    font-size: 12px;
}

.bk-testimonial-card h3 {
    margin: 18px 0 0;
    color: #111;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.bk-testimonial-card > p {
    margin: 12px 0 0;
    color: #656560;
    font-size: 13px;
    line-height: 1.7;
}


/* EMPTY STATE */

.bk-testimonials-empty {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: center;
    gap: 60px;
    padding: 36px;
    border: 1px dashed #d9d8d2;
    border-radius: 28px;
    background: #f7f7f4;
}

.bk-testimonials-empty-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
}

.bk-testimonials-empty-visual::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -70px;
    right: -60px;
    border-radius: 50%;
    background: #ffc800;
}

.bk-testimonials-empty-visual::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: -55px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-testimonials-quote {
    position: relative;
    z-index: 3;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
    transform: translateY(15px);
}

.bk-testimonial-shape-one,
.bk-testimonial-shape-two {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
}

.bk-testimonial-shape-one {
    width: 13px;
    height: 13px;
    top: 55px;
    left: 70px;
}

.bk-testimonial-shape-two {
    width: 8px;
    height: 8px;
    right: 70px;
    bottom: 55px;
}

.bk-testimonials-empty-copy {
    max-width: 630px;
}

.bk-testimonials-empty-copy > span {
    display: block;
    margin-bottom: 13px;
    color: #9b7600;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.bk-testimonials-empty-copy h3 {
    max-width: 600px;
    margin: 0;
    color: #111;
    font-size: clamp(29px, 3vw, 43px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -.04em;
}

.bk-testimonials-empty-copy p {
    max-width: 540px;
    margin: 18px 0 0;
    color: #74746e;
    font-size: 13px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .bk-testimonials {
        padding: 76px 0;
    }

    .bk-testimonials-empty {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 35px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-testimonials {
        padding: 62px 0 72px;
    }

    .bk-testimonials-heading h2 {
        font-size: 36px;
    }

    .bk-testimonials-heading p {
        margin-top: 16px;
        font-size: 14px;
    }

    .bk-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .bk-testimonials-empty {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 16px 16px 30px;
        border-radius: 24px;
    }

    .bk-testimonials-empty-visual {
        min-height: 220px;
    }

    .bk-testimonials-empty-copy {
        padding: 0 5px;
    }

    .bk-testimonials-empty-copy h3 {
        font-size: 29px;
    }

    .bk-testimonials-empty-copy p {
        font-size: 12px;
    }

}



/* =========================================================
   BOOKAR FAQ PREMIUM
   ========================================================= */

.bk-faq {
    position: relative;
    padding: 105px 0;
    background: #111;
    overflow: hidden;
}

.bk-faq::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -180px;
    top: -210px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.bk-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.bk-faq-intro {
    position: sticky;
    top: 130px;
}

.bk-faq .bk-section-eyebrow {
    color: #ffc800;
}

.bk-faq-intro h2 {
    max-width: 540px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(40px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 800;
}

.bk-faq-intro > p {
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.8;
}

.bk-faq-support {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.bk-faq-support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #ffc800;
    color: #111;
    font-size: 16px;
}

.bk-faq-support strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.bk-faq-support span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: 11px;
}


/* ACCORDION */

.bk-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bk-faq-item {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11) !important;
    border-radius: 20px !important;
    background: #191919 !important;
}

.bk-faq-item .accordion-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    color: #fff;
    background: transparent;
    box-shadow: none !important;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.bk-faq-item .accordion-button:not(.collapsed) {
    color: #fff;
    background: #1d1d1d;
}

.bk-faq-item .accordion-button::after {
    filter: invert(1);
    opacity: .75;
}

.bk-faq-number {
    color: #ffc800;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.bk-faq-item .accordion-body {
    padding: 0 26px 26px 66px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.8;
}


/* EMPTY */

.bk-faq-empty {
    position: relative;
    min-height: 390px;
    padding: 52px;
    overflow: hidden;
    border-radius: 30px;
    background: #f7f7f3;
}

.bk-faq-empty::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    top: -55px;
    right: -35px;
    border-radius: 50%;
    background: #ffc800;
}

.bk-faq-empty::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    bottom: -65px;
    left: -35px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-faq-empty-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 58px;
    border-radius: 17px;
    background: #111;
    color: #fff;
    font-size: 20px;
}

.bk-faq-empty > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #9b7600;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.bk-faq-empty h3 {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin: 0;
    color: #111;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.03;
    letter-spacing: -.04em;
    font-weight: 800;
}

.bk-faq-empty p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 20px 0 0;
    color: #6c6c67;
    font-size: 13px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .bk-faq {
        padding: 80px 0;
    }

    .bk-faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bk-faq-intro {
        position: static;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-faq {
        padding: 68px 0;
    }

    .bk-faq-layout {
        gap: 36px;
    }

    .bk-faq-intro h2 {
        font-size: 37px;
    }

    .bk-faq-support {
        margin-top: 28px;
    }

    .bk-faq-item .accordion-button {
        gap: 13px;
        padding: 20px 18px;
        font-size: 13px;
    }

    .bk-faq-item .accordion-body {
        padding: 0 18px 22px 47px;
        font-size: 12px;
    }

    .bk-faq-empty {
        min-height: 350px;
        padding: 28px 23px 35px;
        border-radius: 24px;
    }

    .bk-faq-empty-icon {
        margin-bottom: 50px;
    }

    .bk-faq-empty h3 {
        font-size: 29px;
    }

}



/* =========================================================
   BOOKAR GRID STANDARD
   Desktop 4 / Tablet 2 / Mobile 2
   ========================================================= */

/* DEPOIMENTOS */

.bk-testimonials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bk-testimonial-card {
    min-width: 0;
    padding: 22px;
}

.bk-testimonial-card h3 {
    font-size: 18px;
}

.bk-testimonial-card > p {
    font-size: 12px;
}


/* TABLET */

@media (max-width: 991px) {

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

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bk-testimonial-card {
        padding: 15px;
        border-radius: 18px;
    }

    .bk-testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .bk-testimonial-top {
        gap: 9px;
    }

    .bk-testimonial-top strong {
        font-size: 11px;
    }

    .bk-testimonial-top span {
        font-size: 9px;
    }

    .bk-testimonial-stars {
        margin-top: 16px;
        font-size: 9px;
        gap: 2px;
    }

    .bk-testimonial-card h3 {
        margin-top: 12px;
        font-size: 14px;
    }

    .bk-testimonial-card > p {
        margin-top: 8px;
        font-size: 10px;
        line-height: 1.55;
    }

}



/* =========================================================
   BOOKAR MOBILE POLISH
   Testimonials + FAQ
   Desktop untouched
   ========================================================= */

@media (max-width: 575px) {

    /* -----------------------------------------
       TESTIMONIALS
       ----------------------------------------- */

    .bk-testimonials {
        padding: 54px 0 62px;
    }

    .bk-testimonials .bookar-container {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bk-testimonials-head {
        margin-bottom: 28px;
    }

    .bk-testimonials-heading h2 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.01;
        letter-spacing: -.045em;
    }

    .bk-testimonials-heading p {
        max-width: 100%;
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .bk-testimonials-empty {
        width: 100%;
        gap: 24px;
        padding: 14px 14px 26px;
        border-radius: 23px;
    }

    .bk-testimonials-empty-visual {
        min-height: 205px;
        border-radius: 19px;
    }

    .bk-testimonials-empty-copy {
        width: 100%;
        padding: 0 8px 4px;
    }

    .bk-testimonials-empty-copy > span {
        margin-bottom: 10px;
        font-size: 9px;
        line-height: 1.4;
    }

    .bk-testimonials-empty-copy h3 {
        max-width: 100%;
        font-size: 27px;
        line-height: 1.06;
        letter-spacing: -.035em;
    }

    .bk-testimonials-empty-copy p {
        max-width: 100%;
        margin-top: 15px;
        font-size: 11px;
        line-height: 1.7;
    }


    /* -----------------------------------------
       FAQ
       ----------------------------------------- */

    .bk-faq {
        padding: 60px 0 105px;
    }

    .bk-faq .bookar-container {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bk-faq-layout {
        width: 100%;
        gap: 30px;
    }

    .bk-faq-intro {
        width: 100%;
        padding: 0;
    }

    .bk-faq .bk-section-eyebrow {
        display: block;
        margin-bottom: 12px;
        font-size: 9px;
        line-height: 1.4;
        letter-spacing: .13em;
    }

    .bk-faq-intro h2 {
        width: 100%;
        max-width: 390px;
        margin: 0;
        font-size: 35px;
        line-height: 1.01;
        letter-spacing: -.045em;
        overflow-wrap: normal;
        word-break: normal;
    }

    .bk-faq-intro > p {
        max-width: 390px;
        margin-top: 17px;
        font-size: 13px;
        line-height: 1.65;
    }

    .bk-faq-support {
        gap: 13px;
        margin-top: 26px;
        padding-top: 24px;
    }

    .bk-faq-support-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .bk-faq-support strong {
        font-size: 12px;
    }

    .bk-faq-support span {
        max-width: 270px;
        font-size: 10px;
        line-height: 1.5;
    }

    .bk-faq-content {
        width: 100%;
        min-width: 0;
    }

    .bk-faq-empty {
        width: 100%;
        min-height: 340px;
        padding: 27px 23px 31px;
        border-radius: 23px;
    }

    .bk-faq-empty-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .bk-faq-empty > span {
        margin-bottom: 11px;
        font-size: 9px;
    }

    .bk-faq-empty h3 {
        max-width: 100%;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    .bk-faq-empty p {
        max-width: 100%;
        margin-top: 17px;
        font-size: 11px;
        line-height: 1.7;
    }


    /* -----------------------------------------
       FIXED BOTTOM NAV SAFE AREA
       ----------------------------------------- */

    .bookar-home {
        padding-bottom: 86px;
    }

}



/* =========================================================
   BOOKAR TRUST SUPPORT PREMIUM
   4 Desktop / 2 Tablet / 2 Mobile
   ========================================================= */

.bk-trust-support {
    position: relative;
    padding: 105px 0;
    background: #f6f6f2;
    overflow: hidden;
}

.bk-trust-support::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -210px;
    top: -220px;
    border: 1px solid rgba(17,17,17,.07);
    border-radius: 50%;
}

.bk-trust-support-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.bk-trust-support-head h2 {
    max-width: 780px;
    margin: 12px 0 0;
    color: #111;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 800;
}

.bk-trust-support-head > p {
    max-width: 490px;
    margin: 0 0 4px;
    color: #70706a;
    font-size: 14px;
    line-height: 1.75;
}


/* GRID */

.bk-trust-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}


/* CARD */

.bk-trust-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 420px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid #e2e2dc;
    border-radius: 25px;
    background: #fff;
    color: inherit;
    text-decoration: none !important;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.bk-trust-card:hover {
    transform: translateY(-6px);
    border-color: #d4d3cb;
    box-shadow: 0 24px 55px rgba(0,0,0,.08);
}

.bk-trust-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-trust-number {
    color: #96968f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.bk-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #f0f0eb;
    color: #111;
    font-size: 14px;
}

.bk-trust-card-copy {
    margin-top: auto;
    padding-top: 70px;
}

.bk-trust-card-copy > span {
    display: block;
    margin-bottom: 11px;
    color: #a47d00;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.bk-trust-card-copy h3 {
    margin: 0;
    color: #111;
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -.04em;
    font-weight: 800;
}

.bk-trust-card-copy p {
    margin: 15px 0 0;
    color: #75756f;
    font-size: 12px;
    line-height: 1.7;
}

.bk-trust-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 19px;
    border-top: 1px solid #ecece6;
}

.bk-trust-card-action span {
    color: #111;
    font-size: 10px;
    font-weight: 800;
}

.bk-trust-card-action i {
    font-size: 11px;
    transition: transform .25s ease;
}

.bk-trust-card:hover .bk-trust-card-action i {
    transform: translateX(4px);
}


/* FEATURED */

.bk-trust-card-featured {
    border-color: #111;
    background: #111;
}

.bk-trust-card-featured::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -65px;
    right: -55px;
    border-radius: 50%;
    background: #ffc800;
}

.bk-trust-card-featured::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    left: -40px;
    bottom: 70px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-trust-card-featured > * {
    position: relative;
    z-index: 2;
}

.bk-trust-card-featured .bk-trust-number {
    color: rgba(255,255,255,.55);
}

.bk-trust-card-featured .bk-trust-icon {
    background: #fff;
    color: #111;
}

.bk-trust-card-featured .bk-trust-card-copy > span {
    color: #ffc800;
}

.bk-trust-card-featured .bk-trust-card-copy h3,
.bk-trust-card-featured .bk-trust-card-action span,
.bk-trust-card-featured .bk-trust-card-action i {
    color: #fff;
}

.bk-trust-card-featured .bk-trust-card-copy p {
    color: rgba(255,255,255,.6);
}

.bk-trust-card-featured .bk-trust-card-action {
    border-top-color: rgba(255,255,255,.13);
}


/* TABLET = 2 */

@media (max-width: 991px) {

    .bk-trust-support {
        padding: 80px 0;
    }

    .bk-trust-support-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bk-trust-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE = 2 */

@media (max-width: 575px) {

    .bk-trust-support {
        padding: 65px 0 95px;
    }

    .bk-trust-support .bookar-container {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bk-trust-support-head {
        margin-bottom: 30px;
    }

    .bk-trust-support-head h2 {
        font-size: 35px;
        line-height: 1.01;
    }

    .bk-trust-support-head > p {
        font-size: 12px;
        line-height: 1.65;
    }

    .bk-trust-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bk-trust-card {
        min-height: 335px;
        padding: 15px;
        border-radius: 19px;
    }

    .bk-trust-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 12px;
    }

    .bk-trust-number {
        font-size: 8px;
    }

    .bk-trust-card-copy {
        padding-top: 38px;
    }

    .bk-trust-card-copy > span {
        margin-bottom: 8px;
        font-size: 7px;
        line-height: 1.35;
    }

    .bk-trust-card-copy h3 {
        font-size: 18px;
        line-height: 1.05;
    }

    .bk-trust-card-copy p {
        margin-top: 10px;
        font-size: 9px;
        line-height: 1.55;
    }

    .bk-trust-card-action {
        gap: 7px;
        margin-top: 16px;
        padding-top: 13px;
    }

    .bk-trust-card-action span {
        font-size: 8px;
    }

    .bk-trust-card-featured::before {
        width: 120px;
        height: 120px;
    }

    .bk-trust-card-featured::after {
        width: 70px;
        height: 70px;
    }

}



/* =========================================================
   BOOKAR ORGANIZATIONS PREMIUM
   4 Desktop / 2 Tablet / 2 Mobile
   ========================================================= */

.bk-organizations {
    position: relative;
    padding: 105px 0;
    background: #fff;
    overflow: hidden;
}

.bk-organizations-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 46px;
}

.bk-organizations-head h2 {
    max-width: 760px;
    margin: 12px 0 0;
    color: #111;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 800;
}

.bk-organizations-head > p {
    max-width: 500px;
    margin: 0 0 3px;
    color: #71716c;
    font-size: 14px;
    line-height: 1.75;
}

.bk-organizations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bk-organization-card {
    min-width: 0;
    min-height: 320px;
    padding: 25px;
    border: 1px solid #e5e5df;
    border-radius: 24px;
    background: #f8f8f5;
}

.bk-organization-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 70px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 14px;
}

.bk-organization-card > span {
    display: block;
    margin-bottom: 10px;
    color: #9d7800;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.bk-organization-card h3 {
    margin: 0;
    color: #111;
    font-size: 25px;
    line-height: 1.04;
    letter-spacing: -.04em;
    font-weight: 800;
}

.bk-organization-card p {
    margin: 15px 0 0;
    color: #74746e;
    font-size: 12px;
    line-height: 1.7;
}

.bk-organization-card-featured {
    position: relative;
    overflow: hidden;
    border-color: #111;
    background: #111;
}

.bk-organization-card-featured::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -65px;
    right: -50px;
    border-radius: 50%;
    background: #ffc800;
}

.bk-organization-card-featured::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -45px;
    bottom: -35px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-organization-card-featured > * {
    position: relative;
    z-index: 2;
}

.bk-organization-card-featured .bk-organization-icon {
    background: #fff;
    color: #111;
}

.bk-organization-card-featured > span {
    color: #ffc800;
}

.bk-organization-card-featured h3 {
    color: #fff;
}

.bk-organization-card-featured p {
    color: rgba(255,255,255,.58);
}


/* TABLET */

@media (max-width: 991px) {

    .bk-organizations {
        padding: 80px 0;
    }

    .bk-organizations-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-organizations {
        padding: 65px 0 95px;
    }

    .bk-organizations .bookar-container {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bk-organizations-head {
        margin-bottom: 30px;
    }

    .bk-organizations-head h2 {
        font-size: 35px;
        line-height: 1.01;
    }

    .bk-organizations-head > p {
        font-size: 12px;
        line-height: 1.65;
    }

    .bk-organizations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bk-organization-card {
        min-height: 285px;
        padding: 15px;
        border-radius: 19px;
    }

    .bk-organization-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 42px;
        border-radius: 11px;
        font-size: 12px;
    }

    .bk-organization-card > span {
        margin-bottom: 8px;
        font-size: 7px;
    }

    .bk-organization-card h3 {
        font-size: 18px;
    }

    .bk-organization-card p {
        margin-top: 10px;
        font-size: 9px;
        line-height: 1.55;
    }

}



/* =========================================================
   BOOKAR FOOTER PREMIUM
   ========================================================= */

.bk-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 28px;
    background: #0b0b0b;
    color: #fff;
}

.bk-footer::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -170px;
    top: -180px;
    border-radius: 50%;
    background: #ffc800;
    opacity: .95;
}

.bk-footer::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 110px;
    top: -120px;
    border-radius: 50%;
    background: #ff6a00;
}

.bk-footer .bookar-container {
    position: relative;
    z-index: 2;
}

.bk-footer-top {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(0, 1.45fr);
    gap: 80px;
    padding-bottom: 70px;
}

.bk-footer-logo {
    display: inline-flex;
    margin-bottom: 34px;
    color: #fff !important;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.05em;
    text-decoration: none !important;
}

.bk-footer-logo span {
    color: #ffc800;
}

.bk-footer-brand h2 {
    max-width: 540px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.bk-footer-brand h2 span {
    color: #ffc800;
}

.bk-footer-brand > p {
    max-width: 430px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    line-height: 1.75;
}

.bk-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.bk-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    color: #fff !important;
    background: rgba(255,255,255,.05);
    transition: .25s ease;
}

.bk-footer-social a:hover {
    border-color: #ffc800;
    background: #ffc800;
    color: #111 !important;
    transform: translateY(-2px);
}

.bk-footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding-top: 8px;
}

.bk-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bk-footer-label {
    display: block;
    margin-bottom: 25px;
    color: #ffc800;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .16em;
}

.bk-footer-column a {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(255,255,255,.68) !important;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none !important;
    transition: .2s ease;
}

.bk-footer-column a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.bk-footer-business {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 28px 32px;
    margin-bottom: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
}

.bk-footer-business span {
    display: block;
    margin-bottom: 7px;
    color: #ffc800;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.bk-footer-business strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.bk-footer-business p {
    max-width: 390px;
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    line-height: 1.65;
}

.bk-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.bk-footer-origin {
    color: rgba(255,255,255,.72);
    font-size: 11px;
}

.bk-footer-copyright,
.bk-footer-copyright p,
.bk-footer-copyright a {
    margin: 0;
    color: rgba(255,255,255,.35) !important;
    font-size: 10px !important;
}

.bk-footer-copyright a:hover {
    color: #ffc800 !important;
}


/* TABLET */

@media (max-width: 991px) {

    .bk-footer {
        padding-top: 75px;
    }

    .bk-footer-top {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bk-footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 42px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-footer {
        padding: 62px 0 110px;
    }

    .bk-footer .bookar-container {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bk-footer::before {
        width: 210px;
        height: 210px;
        right: -110px;
        top: -100px;
    }

    .bk-footer::after {
        width: 90px;
        height: 90px;
        right: 50px;
        top: -55px;
    }

    .bk-footer-top {
        gap: 48px;
        padding-bottom: 45px;
    }

    .bk-footer-logo {
        margin-bottom: 27px;
        font-size: 27px;
    }

    .bk-footer-brand h2 {
        max-width: 330px;
        font-size: 37px;
    }

    .bk-footer-brand > p {
        max-width: 320px;
        font-size: 11px;
    }

    .bk-footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 20px;
    }

    .bk-footer-label {
        margin-bottom: 18px;
        font-size: 8px;
    }

    .bk-footer-column a {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .bk-footer-business {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px;
        border-radius: 18px;
    }

    .bk-footer-business strong {
        font-size: 16px;
    }

    .bk-footer-business p {
        font-size: 10px;
    }

    .bk-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .bk-footer-origin {
        font-size: 10px;
    }

}



/* =========================================================
   BOOKAR FOOTER - DEC TECHNOLOGY
   ========================================================= */

.bk-footer-origin {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bk-footer-dec {
    color: rgba(255,255,255,.38);
    font-size: 9px;
    letter-spacing: .02em;
}

.bk-footer-dec strong {
    color: rgba(255,255,255,.75);
    font-weight: 700;
}

@media (max-width: 575px) {

    .bk-footer-dec {
        font-size: 8px;
    }

}



/* =========================================================
   BOOKAR FOOTER - MOBILE FINAL POLISH
   ========================================================= */

@media (max-width: 575px) {

    .bk-footer-top {
        gap: 38px;
        padding-bottom: 52px;
    }

    .bk-footer-brand {
        margin-bottom: 0;
    }

    .bk-footer-brand > p {
        margin-top: 20px;
    }

    .bk-footer-social {
        margin-top: 24px;
    }

    .bk-footer-navigation {
        margin-top: 0;
    }

    .bk-footer-business {
        margin-top: 8px;
        margin-bottom: 34px;
    }

    .bk-footer-bottom {
        padding-top: 24px;
    }

}



/* =========================================================
   BOOKAR CATALOG PREMIUM
   ========================================================= */

.bk-catalog-page {
    background: #f7f7f4;
    color: #111;
}

.bk-catalog-page .container {
    max-width: 1320px;
}


/* HERO */

.bk-catalog-hero {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    padding: 92px 0 74px;
}

.bk-catalog-hero-grid {
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    align-items: center;
    gap: 70px;
}

.bk-catalog-eyebrow,
.bk-catalog-section-label,
.bk-catalog-empty-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bk-catalog-eyebrow {
    color: #f6c900;
    margin-bottom: 22px;
}

.bk-catalog-eyebrow:before {
    content: "";
    width: 28px;
    height: 2px;
    background: #f6c900;
}

.bk-catalog-hero-copy h1 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: clamp(46px, 4.3vw, 72px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 800;
}

.bk-catalog-hero-copy h1 span {
    color: #f6c900;
}

.bk-catalog-hero-copy > p {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.75;
}

.bk-catalog-search {
    width: min(100%, 670px);
    min-height: 68px;
    margin-top: 34px;
    padding: 7px 7px 7px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border-radius: 18px;
}

.bk-catalog-search > .iconify {
    flex: 0 0 auto;
    color: #777;
    font-size: 22px;
}

.bk-catalog-search-input {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #111;
    font-size: 15px;
}

.bk-catalog-search-btn {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 13px;
    background: #f6c900;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}


/* HERO ART */

.bk-catalog-hero-art {
    position: relative;
    min-height: 340px;
}

.bk-catalog-art-yellow {
    position: absolute;
    width: 330px;
    height: 330px;
    right: 8%;
    top: 0;
    border-radius: 50%;
    background: #f6c900;
}

.bk-catalog-art-orange {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 3%;
    bottom: 0;
    border-radius: 42px;
    background: #ff6b00;
    transform: rotate(18deg);
}

.bk-catalog-art-card {
    position: absolute;
    z-index: 2;
    width: 270px;
    min-height: 230px;
    top: 52px;
    right: 80px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
    transform: rotate(-4deg);
}

.bk-catalog-art-card span {
    margin-bottom: auto;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.bk-catalog-art-card strong {
    font-size: 27px;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.bk-catalog-art-card small {
    margin-top: 13px;
    color: #777;
}

.bk-catalog-art-mini {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 13px;
    min-width: 220px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.bk-catalog-art-mini > .iconify {
    color: #f6c900;
    font-size: 30px;
}

.bk-catalog-art-mini small,
.bk-catalog-art-mini strong {
    display: block;
}

.bk-catalog-art-mini small {
    color: rgba(255,255,255,.6);
    font-size: 11px;
}

.bk-catalog-art-mini strong {
    margin-top: 2px;
    font-size: 14px;
}


/* BODY */

.bk-catalog-body {
    padding: 76px 0 110px;
}

.bk-catalog-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #deded8;
}

.bk-catalog-section-label {
    color: #8a7200;
    margin-bottom: 14px;
}

.bk-catalog-intro h2 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 800;
}

.bk-catalog-intro p {
    max-width: 650px;
    margin: 15px 0 0;
    color: #6f6f6a;
    font-size: 15px;
    line-height: 1.7;
}

.bk-catalog-count {
    flex: 0 0 auto;
    text-align: right;
}

.bk-catalog-count strong {
    display: block;
    color: #111;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.bk-catalog-count span {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 12px;
}


/* CATEGORIES */

.bk-catalog-category-strip {
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #deded8;
}

.bk-catalog-category-label {
    flex: 0 0 auto;
    color: #777;
    font-size: 12px;
    font-weight: 700;
}

.bk-catalog-category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bk-catalog-category-scroll::-webkit-scrollbar {
    display: none;
}

.bk-catalog-category-scroll a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.bk-catalog-category-scroll a:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}


/* TOOLBAR */

.bk-catalog-toolbar {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bk-catalog-filter-btn {
    min-height: 46px;
    padding: 0 17px;
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    border: 1px solid #d7d7d1;
    border-radius: 12px;
    background: #fff;
    color: #111 !important;
    font-size: 13px;
    font-weight: 800;
}

.bk-catalog-filter-btn .iconify {
    font-size: 19px;
}

.bk-catalog-sort {
    display: flex;
    align-items: center;
    gap: 11px;
}

.bk-catalog-sort > span {
    color: #777;
    font-size: 12px;
    font-weight: 600;
}

.bk-catalog-sort .form-select {
    min-width: 165px;
    min-height: 46px;
    border: 1px solid #d7d7d1;
    border-radius: 12px;
    background-color: #fff;
    color: #111;
    font-size: 13px;
    box-shadow: none;
}


/* RESULTS */

.bk-catalog-content {
    align-items: flex-start;
}

.bk-catalog-results {
    min-height: 500px;
}

.bk-course-grid {
    row-gap: 24px;
}

.bk-course-grid-item {
    margin-bottom: 0 !important;
}


/* EMPTY STATE */

.bk-catalog-empty {
    min-height: 500px;
    padding: 70px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e1e1db;
    border-radius: 28px;
    background: #fff;
}

.bk-catalog-empty-art {
    position: relative;
    width: 126px;
    height: 126px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
}

.bk-empty-yellow {
    position: absolute;
    inset: 0;
    border-radius: 38px;
    background: #f6c900;
    transform: rotate(8deg);
}

.bk-empty-orange {
    position: absolute;
    width: 46px;
    height: 46px;
    right: -14px;
    bottom: -5px;
    border-radius: 15px;
    background: #ff6b00;
    transform: rotate(-12deg);
}

.bk-catalog-empty-art .iconify {
    position: relative;
    z-index: 2;
    color: #111;
    font-size: 54px;
}

.bk-catalog-empty-label {
    color: #8a7200;
    margin-bottom: 13px;
}

.bk-catalog-empty h3 {
    max-width: 600px;
    margin: 0;
    color: #111;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 800;
}

.bk-catalog-empty p {
    max-width: 530px;
    margin: 17px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.bk-catalog-empty > a {
    margin-top: 27px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
}

.bk-catalog-load-more {
    padding-top: 34px;
    text-align: center;
}

.bk-catalog-load-more button {
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}


/* TABLET */

@media (max-width: 991px) {

    .bk-catalog-hero {
        padding: 70px 0;
    }

    .bk-catalog-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bk-catalog-hero-art {
        min-height: 300px;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .bk-catalog-intro {
        align-items: flex-start;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .bk-catalog-hero {
        padding: 50px 0 42px;
    }

    .bk-catalog-hero-grid {
        min-height: 0;
        gap: 38px;
    }

    .bk-catalog-hero-copy h1 {
        font-size: 42px;
    }

    .bk-catalog-hero-copy > p {
        margin-top: 20px;
        font-size: 14px;
    }

    .bk-catalog-search {
        min-height: 60px;
        margin-top: 27px;
        padding: 6px 6px 6px 15px;
        border-radius: 15px;
    }

    .bk-catalog-search-btn {
        min-height: 48px;
        padding: 0 17px;
    }

    .bk-catalog-hero-art {
        min-height: 260px;
    }

    .bk-catalog-art-yellow {
        width: 235px;
        height: 235px;
        right: 4%;
    }

    .bk-catalog-art-orange {
        width: 105px;
        height: 105px;
    }

    .bk-catalog-art-card {
        width: 210px;
        min-height: 185px;
        top: 31px;
        right: 38px;
        padding: 22px;
        border-radius: 23px;
    }

    .bk-catalog-art-card strong {
        font-size: 22px;
    }

    .bk-catalog-art-mini {
        right: 0;
        bottom: 2px;
        min-width: 190px;
        padding: 13px 14px;
    }

    .bk-catalog-body {
        padding: 52px 0 95px;
    }

    .bk-catalog-intro {
        display: block;
        padding-bottom: 25px;
    }

    .bk-catalog-intro h2 {
        font-size: 34px;
    }

    .bk-catalog-count {
        margin-top: 23px;
        display: flex;
        align-items: baseline;
        gap: 8px;
        text-align: left;
    }

    .bk-catalog-count strong {
        font-size: 28px;
    }

    .bk-catalog-count span {
        margin: 0;
    }

    .bk-catalog-category-strip {
        display: block;
    }

    .bk-catalog-category-label {
        display: block;
        margin-bottom: 12px;
    }

    .bk-catalog-toolbar {
        padding: 20px 0;
    }

    .bk-catalog-sort > span {
        display: none;
    }

    .bk-catalog-sort .form-select {
        min-width: 145px;
    }

    .bk-catalog-empty {
        min-height: 390px;
        padding: 50px 20px;
        border-radius: 22px;
    }

    .bk-catalog-empty-art {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .bk-catalog-empty h3 {
        font-size: 29px;
    }

    .bk-catalog-empty p {
        font-size: 14px;
    }

}


/* BOOKAR CARD GRID STANDARD: 4 / 2 / 2 */

@media (min-width: 992px) {
    .bk-course-grid > .bk-course-grid-item {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .bk-course-grid > .bk-course-grid-item {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .bk-course-grid > .bk-course-grid-item {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}



/* =========================================================
   BOOKAR CATALOG FILTER PREMIUM
   ========================================================= */

.bk-filter-shell {
    overflow: hidden;
    border: 1px solid #dfdfd9 !important;
    border-radius: 22px;
    background: #fff !important;
}

.bk-filter-desktop-head {
    padding: 24px 23px 20px;
    border-bottom: 1px solid #e8e8e2;
}

.bk-filter-desktop-head span {
    display: block;
    margin-bottom: 7px;
    color: #8a7200;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.bk-filter-desktop-head strong {
    display: block;
    color: #111;
    font-size: 22px;
    line-height: 1;
}

.bk-filter-mobile-head,
.bk-filter-mobile-footer {
    display: none;
}


/* accordion */

.bk-filter-shell .accordion,
.bk-filter-shell .accordion-item {
    border: 0 !important;
    background: transparent !important;
}

.bk-filter-shell .course-sidebar-accordion-item {
    border-bottom: 1px solid #e8e8e2 !important;
    border-radius: 0 !important;
}

.bk-filter-shell .course-sidebar-title .accordion-button {
    min-height: 58px;
    padding: 17px 21px !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
    font-size: 13px;
    font-weight: 800;
}

.bk-filter-shell
.course-sidebar-accordion-item
> .accordion-collapse
> .accordion-body {
    padding: 0 21px 20px !important;
}


/* categorias */

.bk-filter-shell .inner-accordion {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bk-filter-shell .sidebar-inner-accordion-item {
    overflow: hidden;
    border: 1px solid #ecece7 !important;
    border-radius: 11px !important;
}

.bk-filter-shell .sidebar-inner-title .accordion-button {
    min-height: 43px;
    padding: 11px 13px !important;
    background: #fafaf7 !important;
    color: #333 !important;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none !important;
}

.bk-filter-shell .inner-accordion-body {
    padding: 11px 13px !important;
}


/* checkbox */

.bk-filter-shell .sidebar-radio-item {
    min-height: 34px;
    display: flex;
    align-items: center;
}

.bk-filter-shell .form-check {
    width: 100%;
    min-height: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.bk-filter-shell .form-check-input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 0 !important;
    border: 1px solid #c9c9c2;
    border-radius: 5px !important;
    box-shadow: none !important;
}

.bk-filter-shell .form-check-input:checked {
    border-color: #111 !important;
    background-color: #111 !important;
}

.bk-filter-shell .form-check-label {
    margin: 0;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
}

.bk-filter-shell
.filterRating
+ .form-check-label
.iconify {
    margin-right: 7px;
    color: #f6c900;
}


/* preco */

.bk-filter-shell .range-value-box {
    display: grid;
    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr)
        38px;
    gap: 7px;
    align-items: end;
    margin-bottom: 13px;
}

.bk-filter-shell .range-value-wrap {
    min-width: 0;
}

.bk-filter-shell .range-value-wrap label {
    display: block;
    margin-bottom: 6px;
    color: #777;
    font-size: 10px;
    font-weight: 700;
}

.bk-filter-shell .price-range-field {
    width: 100% !important;
    height: 39px;
    padding: 0 8px;
    border: 1px solid #dcdcd6 !important;
    border-radius: 9px !important;
    background: #fafaf7 !important;
    color: #111 !important;
    font-size: 11px;
    box-shadow: none !important;
}

.bk-filter-shell .filterPrice {
    width: 38px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: #f6c900;
    color: #111;
}


/* overlay */

.bk-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000001;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(3px);
    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.bk-filter-overlay-open {
    visibility: visible;
    opacity: 1;
}

body.bk-filter-lock {
    overflow: hidden !important;
}


/* tablet + celular */

@media (max-width: 991px) {

    .bk-catalog-content > .coursesLeftSidebar {
        display: block !important;
    }

    .bk-filter-panel {
        position: fixed !important;
        z-index: 1000002 !important;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(420px, 92vw) !important;
        max-width: none !important;
        padding: 0 !important;

        visibility: hidden;
        transform: translateX(-105%);

        transition:
            transform .28s ease,
            visibility .28s ease;
    }

    .bk-filter-panel.bk-filter-open {
        visibility: visible;
        transform: translateX(0);
    }

    .bk-filter-shell {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        border: 0 !important;
        border-radius: 0 24px 24px 0;
        padding-bottom: 92px;
    }

    .bk-filter-desktop-head {
        display: none;
    }

    .bk-filter-mobile-head {
        position: sticky;
        z-index: 5;
        top: 0;

        min-height: 84px;
        padding: 18px 20px;

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

        border-bottom: 1px solid #e8e8e2;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(12px);
    }

    .bk-filter-mobile-head span {
        display: block;
        margin-bottom: 5px;
        color: #8a7200;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .13em;
    }

    .bk-filter-mobile-head strong {
        display: block;
        color: #111;
        font-size: 20px;
    }

    .bk-filter-close {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;

        display: grid;
        place-items: center;

        border: 1px solid #e2e2dc;
        border-radius: 13px;
        background: #f7f7f4;
        color: #111;
    }

    .bk-filter-close .iconify {
        font-size: 23px;
    }

    .bk-filter-mobile-footer {
        position: fixed;
        z-index: 6;
        left: 0;
        bottom: 0;

        width: min(420px, 92vw);

        padding:
            14px
            18px
            calc(14px + env(safe-area-inset-bottom));

        display: block;

        border-top: 1px solid #e8e8e2;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(12px);
    }

    .bk-filter-view-results {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        border: 0;
        border-radius: 13px;

        background: #111;
        color: #fff;

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

    .bk-catalog-results {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

}


@media (max-width: 575px) {

    .bk-filter-panel {
        width: 92vw !important;
    }

    .bk-filter-shell {
        border-radius: 0 20px 20px 0;
    }

    .bk-filter-mobile-footer {
        width: 92vw;
    }

}



/* =========================================================
   BOOKAR COURSES POLISH V3
   ========================================================= */


/* DESKTOP ------------------------------------------------ */

@media (min-width: 992px) {

    /*
     * No desktop o sidebar já está visível.
     * O botão "Filtros" é desnecessário.
     */
    .bk-catalog-toolbar .bk-catalog-filter-btn {
        visibility: hidden;
        pointer-events: none;
    }

    .bk-catalog-toolbar {
        justify-content: flex-end;
    }

    /*
     * Proporção mais elegante:
     * sidebar compacto + área principal ampla.
     */
    .bk-catalog-content > .bk-filter-panel {
        width: 24%;
        flex: 0 0 24%;
        max-width: 24%;
    }

    .bk-catalog-content > .bk-catalog-results {
        width: 76%;
        flex: 0 0 76%;
        max-width: 76%;
    }

    /*
     * Espaço entre filtro e resultados.
     */
    .bk-catalog-content {
        --bs-gutter-x: 26px;
    }

    /*
     * Sidebar acompanha a navegação sem virar
     * um bloco perdido na página.
     */
    .bk-filter-shell {
        position: sticky;
        top: 105px;
    }

    /*
     * Estado vazio mais equilibrado.
     */
    .bk-catalog-empty {
        min-height: 470px;
        padding-top: 55px;
        padding-bottom: 55px;
    }

}


/* DESKTOP GRANDE ----------------------------------------- */

@media (min-width: 1200px) {

    .bk-catalog-body {
        padding-top: 68px;
    }

    .bk-catalog-content {
        --bs-gutter-x: 30px;
    }

    .bk-catalog-empty {
        min-height: 500px;
    }

}


/* TABLET ------------------------------------------------- */

@media (min-width: 576px) and (max-width: 991px) {

    .bk-catalog-toolbar {
        margin-bottom: 4px;
    }

    .bk-catalog-results {
        min-height: 420px;
    }

    /*
     * REGRA BOOKAR:
     * tablet = 2 cards.
     */
    .bk-course-grid > .bk-course-grid-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

}


/* MOBILE ------------------------------------------------- */

@media (max-width: 575px) {

    .bk-catalog-body {
        padding-top: 46px;
    }

    .bk-catalog-intro {
        margin-bottom: 0;
    }

    .bk-catalog-category-strip {
        padding-top: 23px;
        padding-bottom: 23px;
    }

    .bk-catalog-toolbar {
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .bk-catalog-filter-btn {
        min-width: 103px;
        justify-content: center;
    }

    .bk-catalog-sort .form-select {
        min-width: 145px;
    }

    /*
     * Empty state não precisa ocupar
     * uma tela gigantesca.
     */
    .bk-catalog-empty {
        min-height: 390px;
        padding: 45px 20px 70px;
    }

    .bk-catalog-empty-art {
        width: 96px;
        height: 96px;
    }

    .bk-catalog-empty h3 {
        max-width: 320px;
        font-size: 28px;
        line-height: 1.06;
    }

    .bk-catalog-empty p {
        max-width: 330px;
    }

    /*
     * REGRA BOOKAR:
     * celular = 2 cards.
     */
    .bk-course-grid {
        --bs-gutter-x: 12px;
        row-gap: 12px;
    }

    .bk-course-grid > .bk-course-grid-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 6px;
        padding-right: 6px;
    }

}


/* GRID DESKTOP BOOKAR ------------------------------------ */

@media (min-width: 992px) {

    /*
     * Cursos usam 4 por linha.
     * Outros módulos compactos poderão usar 6.
     */
    .bk-course-grid {
        --bs-gutter-x: 18px;
        row-gap: 20px;
    }

    .bk-course-grid > .bk-course-grid-item {
        width: 25% !important;
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

}



/* =========================================================
   BOOKAR COURSES POLISH V4 CORRECTED
   ========================================================= */


/* =========================================================
   TOOLBAR UNICA
   Filtros | Categorias | Ordenar
   ========================================================= */

.bk-catalog-toolbar {
    width: 100%;

    padding: 24px 0 28px;

    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;

    gap: 18px;
}


/*
 * V3 escondia o botão no desktop.
 * Aqui ele volta definitivamente.
 */
.bk-catalog-toolbar .bk-catalog-filter-btn {
    visibility: visible !important;
    pointer-events: auto !important;
    display: inline-flex !important;
}


/* categorias */

.bk-catalog-toolbar-categories {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 13px;
}

.bk-toolbar-category-label {
    flex: 0 0 auto;

    color: #757570;

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

    white-space: nowrap;
}

.bk-toolbar-category-scroll {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 8px;

    overflow-x: auto;
    scrollbar-width: none;
}

.bk-toolbar-category-scroll::-webkit-scrollbar {
    display: none;
}

.bk-toolbar-category-scroll a {
    flex: 0 0 auto;

    min-height: 43px;

    padding: 0 17px;

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

    border: 1px solid #dddcd6;
    border-radius: 999px;

    background: #fff;
    color: #111;

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

    white-space: nowrap;

    transition: all .2s ease;
}

.bk-toolbar-category-scroll a:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}


/* ordenar */

.bk-catalog-sort {
    display: flex;
    align-items: center;

    gap: 10px;

    flex: 0 0 auto;
}

.bk-catalog-sort > span {
    color: #777;

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

    line-height: 1.25;
}

.bk-catalog-sort .form-select {
    min-width: 165px;
}


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

.bk-filter-shell .course-sidebar-title .accordion-button {
    min-height: 62px;
}

.bk-filter-shell .course-sidebar-accordion-item {
    overflow: hidden;
}


/*
 * Nada aberto = painel compacto.
 */
.bk-filter-shell .accordion-collapse:not(.show) {
    display: none !important;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .bk-catalog-toolbar {
        grid-template-columns:
            auto
            minmax(0,1fr)
            auto;
    }

    /*
     * sidebar continua fixo visualmente,
     * mas agora compacto porque os grupos
     * ficam fechados.
     */
    .bk-filter-shell {
        position: sticky;
        top: 105px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 576px) and (max-width: 991px) {

    .bk-catalog-toolbar {
        grid-template-columns:
            auto
            minmax(0,1fr)
            auto;

        gap: 13px;
    }

    .bk-toolbar-category-label {
        display: none;
    }

    .bk-toolbar-category-scroll a {
        min-height: 41px;

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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .bk-catalog-toolbar {
        grid-template-columns:
            auto
            minmax(0,1fr)
            auto;

        gap: 10px;

        padding-top: 19px;
        padding-bottom: 22px;
    }

    .bk-toolbar-category-label {
        display: none;
    }

    .bk-toolbar-category-scroll {
        gap: 7px;
    }

    .bk-toolbar-category-scroll a {
        min-height: 39px;

        padding-left: 12px;
        padding-right: 12px;

        font-size: 10px;
    }

    .bk-catalog-filter-btn {
        min-width: 98px;
    }

    .bk-catalog-sort .form-select {
        min-width: 130px;
    }

    .bk-catalog-sort > span {
        display: none;
    }

}


/*
|--------------------------------------------------------------------------
| MOBILE ESTREITO
|--------------------------------------------------------------------------
*/

@media (max-width: 430px) {

    /*
     * Primeira linha:
     * Filtros | Ordenar
     *
     * Segunda linha:
     * categorias roláveis
     */

    .bk-catalog-toolbar {
        grid-template-columns:
            auto
            1fr
            auto;
    }

    .bk-catalog-filter-btn {
        grid-column: 1;
        grid-row: 1;
    }

    .bk-catalog-sort {
        grid-column: 3;
        grid-row: 1;
    }

    .bk-catalog-toolbar-categories {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        margin-top: 4px;
    }

}



/* =========================================================
   BOOKAR FILTER PREMIUM V5
   refinamento interno
   ========================================================= */


/* ---------------------------------------------------------
   PAINEL
   --------------------------------------------------------- */

.bk-filter-shell {
    border-color: #e4e3dc !important;
    box-shadow:
        0 1px 0 rgba(0,0,0,.02),
        0 12px 40px rgba(0,0,0,.035);
}

.bk-filter-desktop-head {
    padding: 25px 22px 22px;
}

.bk-filter-desktop-head span {
    color: #8d7600;
    font-size: 9px;
    letter-spacing: .16em;
}

.bk-filter-desktop-head strong {
    margin-top: 2px;
    font-size: 23px;
    letter-spacing: -.035em;
}


/* ---------------------------------------------------------
   CABECALHO DE CADA FILTRO
   --------------------------------------------------------- */

.bk-filter-shell .course-sidebar-title .accordion-button {
    min-height: 61px !important;
    padding: 0 20px !important;

    display: flex;
    align-items: center;

    background: #fff !important;
    color: #111 !important;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;

    transition: background .2s ease;
}

.bk-filter-shell .course-sidebar-title .accordion-button:hover {
    background: #fbfbf8 !important;
}

.bk-filter-shell .course-sidebar-title .accordion-button::after {
    width: 29px !important;
    height: 29px !important;

    margin-left: auto;

    display: grid;
    place-items: center;

    border: 1px solid #d9d9d3;
    border-radius: 50%;

    background-size: 12px !important;
    background-position: center;
}


/* ---------------------------------------------------------
   CORPO DOS FILTROS
   --------------------------------------------------------- */

.bk-filter-shell
.course-sidebar-accordion-item
> .accordion-collapse
> .accordion-body {

    padding:
        5px
        20px
        21px !important;

    background: #fbfaf6;
}


/* ---------------------------------------------------------
   CATEGORIAS
   --------------------------------------------------------- */

.bk-filter-shell .inner-accordion {
    gap: 5px !important;
}

.bk-filter-shell .sidebar-inner-accordion-item {
    overflow: hidden;

    border: 0 !important;
    border-bottom: 1px solid #ecebe5 !important;

    border-radius: 0 !important;

    background: transparent !important;
}

.bk-filter-shell .sidebar-inner-accordion-item:last-child {
    border-bottom: 0 !important;
}

.bk-filter-shell .sidebar-inner-title .accordion-button {
    min-height: 48px !important;

    padding: 0 4px !important;

    background: transparent !important;
    color: #242424 !important;

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

    border: 0 !important;
}

.bk-filter-shell .sidebar-inner-title .accordion-button:hover {
    color: #000 !important;
}

.bk-filter-shell .sidebar-inner-title .accordion-button::after {
    width: 20px !important;
    height: 20px !important;

    border: 0;

    background-size: 10px !important;
}

.bk-filter-shell .inner-accordion-body {
    padding:
        2px
        3px
        12px !important;

    background: transparent !important;
}


/* subcategorias */

.bk-filter-shell .inner-accordion-body .sidebar-radio-item {
    min-height: 38px;

    padding: 0 4px;

    border-radius: 9px;

    transition: background .18s ease;
}

.bk-filter-shell .inner-accordion-body .sidebar-radio-item:hover {
    background: #f2f1eb;
}


/* ---------------------------------------------------------
   CHECKBOX PREMIUM
   --------------------------------------------------------- */

.bk-filter-shell .form-check {
    gap: 10px !important;
}

.bk-filter-shell .form-check-input {
    appearance: none;
    -webkit-appearance: none;

    position: relative;

    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;

    border: 1.4px solid #c9c8c1 !important;
    border-radius: 6px !important;

    background: #fff !important;

    cursor: pointer;

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

.bk-filter-shell .form-check-input:hover {
    border-color: #111 !important;
}

.bk-filter-shell .form-check-input:checked {
    border-color: #111 !important;
    background: #111 !important;
}

.bk-filter-shell .form-check-input:checked::after {
    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 5px;
    height: 9px;

    border: solid #f6c900;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}

.bk-filter-shell .form-check-label {
    color: #4f4f4a !important;

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

    line-height: 1.35;
}


/* ---------------------------------------------------------
   AVALIACAO
   --------------------------------------------------------- */

.bk-filter-shell
#panelsStayOpen-collapseThree
.sidebar-radio-item {

    min-height: 42px;

    padding: 0 5px;

    border-radius: 9px;

    transition: background .18s ease;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.sidebar-radio-item:hover {

    background: #f2f1eb;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-label {

    display: flex;
    align-items: center;

    gap: 7px;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-label
.iconify {

    margin: 0 !important;

    color: #f6c900 !important;

    font-size: 15px;
}


/* ---------------------------------------------------------
   PRECO
   --------------------------------------------------------- */

.bk-filter-shell
#panelsStayOpen-collapseFour
.accordion-body {

    padding-top: 13px !important;
}


/*
 * Min / Max ficam lado a lado.
 * Aplicar ocupa a largura toda.
 */
.bk-filter-shell .range-value-box {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 10px !important;

    margin-bottom: 17px !important;
}

.bk-filter-shell .range-value-wrap {
    position: relative;

    padding: 10px 11px 9px;

    border: 1px solid #deddd6;
    border-radius: 12px;

    background: #fff;
}

.bk-filter-shell .range-value-wrap label {
    margin: 0 0 6px !important;

    color: #777 !important;

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

    text-transform: uppercase;
    letter-spacing: .08em;
}

.bk-filter-shell .price-range-field {
    width: 100% !important;
    height: 34px !important;

    padding: 0 !important;

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

    background: transparent !important;

    color: #111 !important;

    font-size: 14px !important;
    font-weight: 700;

    box-shadow: none !important;
}

.bk-filter-shell .price-range-field:focus {
    outline: 0 !important;
}


/*
 * wrapper do botão
 */
.bk-filter-shell .range-value-wrap-go-btn {
    grid-column: 1 / -1;

    width: 100%;

    margin-top: 1px;
}


/*
 * botão Aplicar
 */
.bk-filter-shell .filterPrice {
    width: 100% !important;
    height: 44px !important;

    padding: 0 15px !important;

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

    gap: 8px;

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

    background: #f6c900 !important;
    color: #111 !important;

    font-size: 12px !important;
    font-weight: 800 !important;

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

.bk-filter-shell .filterPrice:hover {
    background: #ffd500 !important;
    transform: translateY(-1px);
}

.bk-filter-shell .filterPrice .iconify {
    font-size: 17px;
}


/* ---------------------------------------------------------
   GRATUITO / PAGO
   --------------------------------------------------------- */

.bk-filter-shell
#panelsStayOpen-collapseFour
.sidebar-radio-item {

    min-height: 42px;

    margin-top: 4px;

    padding: 0 10px;

    border: 1px solid #e5e4de;
    border-radius: 10px;

    background: #fff;

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

.bk-filter-shell
#panelsStayOpen-collapseFour
.sidebar-radio-item:hover {

    border-color: #c8c7c0;
    background: #fafaf7;
}


/* ---------------------------------------------------------
   NIVEL + DURACAO
   --------------------------------------------------------- */

.bk-filter-shell
#panelsStayOpen-collapseTwo
.sidebar-radio-item,

.bk-filter-shell
#panelsStayOpen-collapseFive
.sidebar-radio-item {

    min-height: 42px;

    padding: 0 5px;

    border-radius: 9px;

    transition: background .18s ease;
}

.bk-filter-shell
#panelsStayOpen-collapseTwo
.sidebar-radio-item:hover,

.bk-filter-shell
#panelsStayOpen-collapseFive
.sidebar-radio-item:hover {

    background: #f2f1eb;
}


/* ---------------------------------------------------------
   MOBILE / TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .bk-filter-shell
    .course-sidebar-title
    .accordion-button {

        min-height: 60px !important;
    }

    .bk-filter-shell
    .course-sidebar-accordion-item
    > .accordion-collapse
    > .accordion-body {

        padding-left: 18px !important;
        padding-right: 18px !important;
    }

}


/* ---------------------------------------------------------
   CELULAR
   --------------------------------------------------------- */

@media (max-width: 575px) {

    .bk-filter-shell .range-value-box {
        grid-template-columns:
            minmax(0,1fr)
            minmax(0,1fr) !important;
    }

    .bk-filter-shell .range-value-wrap {
        padding: 9px 10px;
    }

    .bk-filter-shell .filterPrice {
        height: 46px !important;
    }

}



/* =========================================================
   BOOKAR FILTER POLISH V6
   preco + avaliacao + ordenar
   ========================================================= */


/* =========================================================
   ORDENAR
   ========================================================= */

.bk-catalog-sort {
    display: block !important;
}

.bk-catalog-sort > span {
    display: none !important;
}

.bk-catalog-sort .form-select {
    width: 158px !important;
    min-width: 158px !important;
    height: 46px !important;

    padding:
        0
        42px
        0
        16px !important;

    border: 1px solid #deded8 !important;
    border-radius: 13px !important;

    background-color: #fff !important;

    color: #111 !important;

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

    box-shadow: none !important;
}


/* =========================================================
   AVALIACAO
   ========================================================= */

/*
 * Cada opção:
 *
 * [checkbox] [estrela] [texto]
 *
 * sem sobreposição.
 */

.bk-filter-shell
#panelsStayOpen-collapseThree
.sidebar-radio-item {

    min-height: 40px !important;

    padding: 0 3px !important;

    display: flex !important;
    align-items: center !important;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check {

    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        18px
        minmax(0, 1fr);

    align-items: center !important;

    column-gap: 10px !important;

    padding: 0 !important;
    margin: 0 !important;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-input {

    position: relative !important;

    grid-column: 1;

    width: 18px !important;
    height: 18px !important;

    margin: 0 !important;

    align-self: center !important;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-label {

    grid-column: 2;

    min-width: 0;

    margin: 0 !important;

    display: flex !important;
    align-items: center !important;

    gap: 7px !important;

    color: #4d4d49 !important;

    font-size: 11px !important;
    font-weight: 500 !important;

    line-height: 1.25 !important;

    white-space: nowrap;
}

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-label
.iconify {

    position: static !important;

    width: 15px !important;
    min-width: 15px !important;
    height: 15px !important;

    margin: 0 !important;

    flex: 0 0 15px !important;

    color: #f6c900 !important;

    font-size: 15px !important;
}


/* Caso a estrela nativa seja <i> em vez de iconify */

.bk-filter-shell
#panelsStayOpen-collapseThree
.form-check-label i {

    position: static !important;

    width: 15px !important;
    min-width: 15px !important;

    margin: 0 !important;

    color: #f6c900 !important;

    font-size: 13px !important;

    text-align: center;
}


/* =========================================================
   PRECO - COMPACTO
   ========================================================= */

.bk-filter-shell
#panelsStayOpen-collapseFour
.accordion-body {

    padding:
        14px
        20px
        20px !important;
}


/*
 * Min | Max
 */
.bk-filter-shell .range-value-box {

    display: grid !important;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr) !important;

    gap: 8px !important;

    margin:
        0
        0
        13px !important;
}


/*
 * caixas menores
 */
.bk-filter-shell .range-value-wrap {

    min-width: 0 !important;

    padding:
        9px
        10px
        8px !important;

    border: 1px solid #deddd7 !important;
    border-radius: 10px !important;

    background: #fff !important;
}

.bk-filter-shell .range-value-wrap label {

    margin:
        0
        0
        3px !important;

    color: #777 !important;

    font-size: 8px !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    letter-spacing: .08em !important;
}

.bk-filter-shell .price-range-field {

    width: 100% !important;
    height: 25px !important;

    min-height: 25px !important;

    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    color: #111 !important;

    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 25px !important;
}


/*
 * botão Aplicar menor.
 */
.bk-filter-shell .range-value-wrap-go-btn {

    grid-column: 1 / -1 !important;

    width: auto !important;

    display: flex !important;
    justify-content: flex-start !important;

    margin-top: 1px !important;
}

.bk-filter-shell .filterPrice {

    width: auto !important;
    min-width: 112px !important;
    height: 38px !important;

    padding:
        0
        16px !important;

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

    gap: 7px !important;

    border-radius: 10px !important;

    background: #f6c900 !important;
    color: #111 !important;

    font-size: 11px !important;
    font-weight: 800 !important;
}

.bk-filter-shell .filterPrice .iconify {

    width: 15px !important;
    height: 15px !important;

    font-size: 15px !important;
}


/* =========================================================
   GRATUITO / PAGO MAIS COMPACTOS
   ========================================================= */

.bk-filter-shell
#panelsStayOpen-collapseFour
.sidebar-radio-item {

    min-height: 38px !important;

    margin-top: 6px !important;

    padding:
        0
        10px !important;

    border-radius: 9px !important;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    /*
     * No drawer há mais largura.
     * Mesmo assim mantemos os controles compactos.
     */

    .bk-filter-shell
    #panelsStayOpen-collapseFour
    .accordion-body {

        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .bk-filter-shell .range-value-box {

        max-width: 310px !important;

        grid-template-columns:
            1fr
            1fr !important;
    }

    .bk-filter-shell .range-value-wrap {

        padding:
            8px
            10px
            7px !important;
    }

    .bk-filter-shell .filterPrice {

        min-width: 108px !important;
        height: 38px !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 575px) {

    .bk-filter-shell .range-value-box {

        width: 100% !important;
        max-width: 100% !important;

        gap: 8px !important;
    }

    .bk-filter-shell .range-value-wrap {

        min-height: 58px !important;
    }

    .bk-filter-shell
    #panelsStayOpen-collapseThree
    .form-check-label {

        font-size: 11px !important;

        white-space: normal !important;
    }

    .bk-filter-shell
    #panelsStayOpen-collapseThree
    .sidebar-radio-item {

        min-height: 40px !important;
    }

    .bk-filter-shell .filterPrice {

        width: 112px !important;
        min-width: 112px !important;

        height: 38px !important;
    }

}



/* =========================================================
   BOOKAR PRICE BUTTON FIX V6.1
   remove fundo roxo nativo
   ========================================================= */

.bk-filter-shell .range-value-wrap-go-btn {
    grid-column: 1 / -1 !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 1px 0 0 !important;
    padding: 0 !important;

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

    background: transparent !important;
    background-color: transparent !important;

    border: 0 !important;
    box-shadow: none !important;
}


/* botão Bookar */

.bk-filter-shell .range-value-wrap-go-btn .filterPrice {
    position: static !important;

    width: auto !important;
    min-width: 112px !important;
    max-width: none !important;

    height: 38px !important;

    margin: 0 !important;
    padding: 0 17px !important;

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

    gap: 8px !important;

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

    background: #f6c900 !important;
    background-color: #f6c900 !important;

    color: #111 !important;

    box-shadow: none !important;

    font-size: 11px !important;
    font-weight: 800 !important;

    line-height: 1 !important;
}


/* elimina pseudo-elementos herdados */

.bk-filter-shell .range-value-wrap-go-btn::before,
.bk-filter-shell .range-value-wrap-go-btn::after {
    display: none !important;
    content: none !important;
}


/* hover */

.bk-filter-shell .range-value-wrap-go-btn .filterPrice:hover {
    background: #ffd400 !important;
    background-color: #ffd400 !important;

    transform: translateY(-1px);
}


/* mobile */

@media (max-width: 575px) {

    .bk-filter-shell .range-value-wrap-go-btn {
        width: 100% !important;
        background: transparent !important;
    }

    .bk-filter-shell .range-value-wrap-go-btn .filterPrice {
        width: auto !important;
        min-width: 112px !important;
        height: 38px !important;
    }

}

