@font-face {
    font-family: 'UrbanJungle';
    src: url('../fonts/UrbanJungle.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --text: #f1f1f1;
    --text-soft: rgba(255,255,255,0.78);
    --text-muted: rgba(255,255,255,0.56);
    --orange: #ff6b1d;
    --orange-dark: #b63a0d;
    --red: #d81f17;
    --green: #47db63;
    --border: rgba(255, 110, 40, 0.20);
    --border-soft: rgba(255,255,255,0.08);
    --shadow: 0 20px 50px rgba(0,0,0,0.55);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #030303 0%, #080808 50%, #050505 100%);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4,
.tlh-brand-main,
.tlh-brand-sub,
.tlh-hero-title,
.tlh-section-title-exact,
.tlh-card-exact h3,
.tlh-home-lore-box h2,
.tlh-footer-brand,
.tlh-footer-sub,
.tlh-footer-title {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* NAVBAR */
.tlh-navbar {
    background:
        linear-gradient(180deg, rgba(10,10,10,0.97), rgba(7,7,7,0.96));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.tlh-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
}

.tlh-navbar-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .25s ease, filter .25s ease;
}

.tlh-brand-wrap:hover .tlh-navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.4));
}

.tlh-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.tlh-brand-main {
    font-family: 'UrbanJungle', 'Oswald', sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
    color: #fff;
}

.tlh-brand-main span {
    color: var(--red);
}

.tlh-brand-sub {
    margin-top: 0.25rem;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    padding: 0.5rem 0.78rem;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    content: '';
    position: absolute;
    left: 0.78rem;
    right: 0.78rem;
    bottom: -0.1rem;
    height: 2px;
    background: var(--orange);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.16);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.tlh-navbar-actions {
    align-items: center;
}

.tlh-navbar-actions .btn {
    min-width: 155px;
}

/* BUTTONS */
.tlh-btn-primary,
.tlh-btn-outline {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px;
    padding: 0.9rem 1.3rem;
    transition: all 0.22s ease;
}

.tlh-btn-primary {
    background: linear-gradient(180deg, #ef6b1f, #b93d10);
    border: 1px solid rgba(255,140,60,0.34);
    color: #fff;
    box-shadow: 0 10px 24px rgba(185,61,16,0.26);
}

.tlh-btn-primary:hover {
    background: linear-gradient(180deg, #ff7c2e, #cb4b14);
    color: #fff;
    transform: translateY(-1px);
}

.tlh-btn-outline {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}

.tlh-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.32);
    color: #fff;
}

.tlh-btn-primary.is-loading {
    pointer-events: none;
    opacity: 0.95;
}

.tlh-btn-spinner {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,0.28);
    border-top-color: rgba(255,255,255,0.92);
    border-radius: 50%;
    animation: tlhSpin 0.7s linear infinite;
    vertical-align: -2px;
}

@keyframes tlhSpin {
    to {
        transform: rotate(360deg);
    }
}

/* HERO EXACT */
.tlh-hero-exact {
    position: relative;
    min-height: 640px;
    padding: 74px 0 54px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid rgba(255, 90, 0, 0.24);
    overflow: hidden;
}

.tlh-hero-exact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.52) 50%, rgba(0,0,0,0.82) 100%),
        radial-gradient(circle at 20% 45%, rgba(0,0,0,0.65), transparent 50%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    z-index: -2;
}

.tlh-hero-exact::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(255,110,40,0.16), transparent 20%),
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.22));
    z-index: -1;
}

.tlh-hero-grid {
    display: grid;
    grid-template-columns: 1.9fr 0.9fr;
    gap: 1.6rem;
    align-items: center;
}

.tlh-hero-left {
    max-width: 760px;
}

.tlh-hero-domain {
    font-family: 'Oswald', sans-serif;
    color: rgba(255,255,255,0.62);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.tlh-hero-title {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 0.36rem;
    white-space: nowrap;

    font-family: 'UrbanJungle', 'Oswald', sans-serif;

    font-size: clamp(5.1rem, 7vw, 8.4rem);
    line-height: 0.9;
    margin: 0 0 0.95rem;

    text-transform: uppercase;
    letter-spacing: 2px;

     text-shadow:
        0 8px 20px rgba(0,0,0,0.8),
        0 0 25px rgba(0,0,0,0.3);
}

.tlh-hero-title .white {
    color: #f0f0f0;
    text-shadow: 0 6px 12px rgba(0,0,0,0.58);
}

.tlh-hero-title .red {
    color: #ff2a1f;
    text-shadow: 0 6px 12px rgba(0,0,0,0.58);
}

.tlh-hero-subtitle {
    font-family: 'Oswald', sans-serif;
    color: rgba(255,255,255,0.70);
    font-size: 1.08rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tlh-hero-text {
    max-width: 620px;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.tlh-hero-text strong {
    color: var(--orange);
}

.tlh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tlh-btn-hero {
    min-width: 248px;
    text-align: center;
}

/* RIGHT PANEL */
.tlh-hero-right {
    display: flex;
    justify-content: flex-end;
}

.tlh-panel-exact {
    width: 100%;
    max-width: 340px;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.98), rgba(5,5,5,0.98));
    border: 1px solid rgba(255,100,40,0.30);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow:
        0 0 0 1px rgba(255,80,0,0.10),
        0 16px 40px rgba(0,0,0,0.72);
}

.tlh-panel-exact-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tlh-panel-exact-head .online {
    color: var(--green);
}

.tlh-panel-exact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tlh-panel-exact-row span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
    font-size: 0.96rem;
}

.tlh-panel-exact-row strong {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1.14rem;
}

.tlh-panel-exact-status {
    margin-top: 1rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #5eff88;
    background: linear-gradient(180deg, rgba(20,58,32,0.92), rgba(7,29,16,0.95));
    border: 1px solid rgba(89,255,134,0.16);
    border-radius: 6px;
    padding: 0.92rem;
}

/* MID SECTION */
.tlh-home-mid {
    padding: 48px 0 54px;
    border-top: 1px solid rgba(255,80,0,0.24);
    border-bottom: 1px solid rgba(255,80,0,0.24);
}

.tlh-home-mid-grid {
    display: grid;
    grid-template-columns: 2.15fr 0.9fr;
    gap: 1.3rem;
    align-items: stretch;
}

.tlh-section-title-exact {
    font-size: 2.55rem;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: #dfdfdf;
}

.tlh-feature-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.tlh-card-exact {
    background:
        linear-gradient(180deg, rgba(18,18,18,0.95), rgba(8,8,8,0.98));
    border: 1px solid rgba(255,80,0,0.25);
    border-radius: 10px;
    padding: 1rem;
    min-height: 228px;
    box-shadow:
        inset 0 0 20px rgba(255,80,0,0.05),
        0 10px 25px rgba(0,0,0,0.4);
    transition: 0.25s;
}

.tlh-card-exact:hover {
    transform: translateY(-4px);
    border-color: rgba(255,120,60,0.6);
}

.tlh-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.tlh-card-exact h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    color: #f0f0f0;
}

.tlh-card-exact p {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 0;
}

.tlh-home-lore {
    display: flex;
}

.tlh-home-lore-box {
    width: 100%;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.82), rgba(5,5,5,0.90)),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    border: 1px solid rgba(255,80,0,0.25);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tlh-lore-kicker {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.tlh-home-lore-box h2 {
    font-size: 2.45rem;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
}

.tlh-home-lore-box p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* FOOTER */
.tlh-footer {
    padding: 52px 0 40px;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(10,10,10,0.96), rgba(6,6,6,0.98));
}

.tlh-footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.tlh-footer-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.tlh-footer-brand {
    font-family: 'UrbanJungle', 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tlh-footer-brand span {
    color: var(--red);
}

.tlh-footer-sub {
    margin-top: 0.2rem;
    color: var(--red);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.tlh-footer-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #fff;
}

.tlh-footer-text {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-footer-links a {
    color: var(--text-soft);
    line-height: 2;
}

.tlh-footer-links a:hover {
    color: #fff;
}

.tlh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* INTERNALS */
.tlh-page-main {
    min-height: 60vh;
}

.tlh-page-hero {
    position: relative;
    padding: 92px 0 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.tlh-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.56), rgba(0,0,0,0.74)),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
    opacity: 0.34;
    z-index: -1;
}

.tlh-page-title {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.tlh-page-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-page-card {
    background:
        linear-gradient(180deg, rgba(15,15,17,0.92), rgba(8,8,10,0.95));
    border: 1px solid rgba(255,115,35,0.14);
    border-radius: 8px;
    padding: 1.4rem;
}

.tlh-page-card h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: #fff;
}

.tlh-page-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .tlh-hero-title {
        white-space: normal;
        flex-wrap: wrap;
        font-size: clamp(3.8rem, 7vw, 6.5rem);
        gap: 0.2rem 0.45rem;
    }

    .tlh-hero-grid,
    .tlh-home-mid-grid {
        grid-template-columns: 1fr;
    }

    .tlh-feature-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .tlh-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        background: rgba(8,8,10,0.94);
    }

    .tlh-navbar-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .tlh-brand-main {
        font-size: 1.35rem;
    }

    .tlh-brand-sub {
        font-size: 0.74rem;
    }

    .tlh-navbar-logo {
        width: 56px;
        height: 56px;
    }

    .tlh-panel-exact {
        max-width: 100%;
    }

    .tlh-feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tlh-hero-exact {
        min-height: auto;
        padding: 60px 0 42px;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-title {
        font-size: 3rem;
    }

    .tlh-hero-actions {
        flex-direction: column;
    }

    .tlh-btn-hero,
    .tlh-btn-primary,
    .tlh-btn-outline {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .tlh-feature-cards {
        grid-template-columns: 1fr;
    }

    .tlh-panel-exact-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlh-brand-sub,
    .tlh-footer-sub {
        display: none;
    }
}

.tlh-status-online {
    color: var(--green);
}

.tlh-btn-sm {
    padding: 0.72rem 1rem;
}

.tlh-page-section {
    padding: 56px 0;
}

.tlh-section-heading {
    max-width: 860px;
    margin: 0 auto 2rem;
}

.tlh-section-kicker {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    color: var(--orange);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.tlh-section-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.8rem;
}

.tlh-section-copy {
    color: var(--text-soft);
    line-height: 1.85;
}

.tlh-page-card,
.tlh-mini-panel {
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.tlh-page-card {
    position: relative;
    overflow: hidden;
}

.tlh-page-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,115,35,0.42), rgba(255,115,35,0));
}

.tlh-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,115,35,0.24);
    background: rgba(255,115,35,0.08);
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tlh-elevated-card,
.tlh-step-card,
.tlh-stat-card,
.tlh-pricing-card,
.tlh-cta-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tlh-elevated-card:hover,
.tlh-step-card:hover,
.tlh-stat-card:hover,
.tlh-pricing-card:hover,
.tlh-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,115,35,0.32);
    box-shadow: 0 18px 40px rgba(0,0,0,0.34);
}

.tlh-stat-card h3,
.tlh-pricing-card h3 {
    font-size: 1.7rem;
}

.tlh-mini-panel {
    height: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(22,22,24,0.92), rgba(10,10,12,0.95));
}

.tlh-mini-panel strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

.tlh-mini-panel span {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-cta-card {
    background:
        linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,10,0.98)),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
}

@media (max-width: 767.98px) {
    .tlh-page-section {
        padding: 42px 0;
    }
}

/* HOME AAA UPGRADE */
.tlh-navbar {
    backdrop-filter: blur(8px);
    background:
        linear-gradient(180deg, rgba(15,10,10,0.95), rgba(8,6,6,0.94));
    box-shadow:
        0 10px 34px rgba(0,0,0,0.42),
        inset 0 -1px 0 rgba(255,120,40,0.08);
}

.tlh-hero-aaa {
    min-height: 720px;
    padding: 86px 0 62px;
}

.tlh-hero-aaa::before {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.54) 48%, rgba(0,0,0,0.84) 100%),
        radial-gradient(circle at 18% 38%, rgba(255,110,40,0.10), transparent 28%),
        radial-gradient(circle at 75% 40%, rgba(255,82,20,0.18), transparent 24%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    filter: saturate(1.04) contrast(1.02);
}

.tlh-hero-aaa::after {
    background:
        linear-gradient(180deg, rgba(255,100,40,0.05), rgba(0,0,0,0.18)),
        linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0));
}

.tlh-hero-topline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.tlh-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(94,255,136,0.18);
    background: rgba(17,43,26,0.68);
    color: #8cffac;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.tlh-hero-title-aaa {
    text-shadow:
        0 8px 18px rgba(0,0,0,0.62),
        0 0 28px rgba(0,0,0,0.16);
}

.tlh-hero-title-aaa .white,
.tlh-hero-title-aaa .red {
    position: relative;
}

.tlh-hero-title-aaa .white::after,
.tlh-hero-title-aaa .red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.00) 35%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.tlh-hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 620px;
    margin-top: 1.35rem;
}

.tlh-hero-mini-stat {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,120,40,0.16);
    background: linear-gradient(180deg, rgba(20,16,16,0.74), rgba(10,9,9,0.80));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tlh-hero-mini-stat span {
    display: block;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-hero-mini-stat strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-btn-discord {
    background: rgba(255,255,255,0.025);
}

.tlh-panel-aaa {
    position: relative;
    max-width: 368px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(15,12,12,0.96), rgba(5,5,5,0.98));
    box-shadow:
        0 22px 50px rgba(0,0,0,0.68),
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 1px rgba(255,90,10,0.08);
}

.tlh-panel-aaa::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}

.tlh-panel-exact-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tlh-panel-exact-row span i {
    font-style: normal;
    color: var(--orange);
    width: 0.95rem;
    text-align: center;
}

.tlh-home-mid-aaa {
    position: relative;
    background:
        linear-gradient(180deg, rgba(12,9,9,0.94), rgba(5,5,5,0.98));
}

.tlh-home-mid-aaa::before,
.tlh-home-mid-aaa::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,90,10,0), rgba(255,90,10,0.52), rgba(255,90,10,0));
}

.tlh-home-mid-aaa::before { top: 0; }
.tlh-home-mid-aaa::after { bottom: 0; }

.tlh-card-exact-aaa {
    border-radius: 14px;
    min-height: 248px;
    background:
        linear-gradient(180deg, rgba(21,17,17,0.98), rgba(8,8,8,0.98));
    box-shadow:
        inset 0 0 24px rgba(255,80,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 16px 34px rgba(0,0,0,0.34);
}

.tlh-card-exact-aaa .tlh-card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 6px 12px rgba(255,100,40,0.18));
}

.tlh-home-lore-box-aaa {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(8,7,7,0.55), rgba(4,4,4,0.80)),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 18px 44px rgba(0,0,0,0.42);
}

.tlh-home-lore-box-aaa::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.18), rgba(255,88,25,0.05));
    pointer-events: none;
}

.tlh-home-lore-box-aaa > * {
    position: relative;
    z-index: 1;
}

.tlh-home-section-dark {
    background: linear-gradient(180deg, #0b0909 0%, #050505 100%);
}

.tlh-card-panel-aaa {
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(16,16,18,0.96), rgba(7,7,8,0.98));
}

.tlh-status-strip-section {
    padding-top: 0;
    background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(8,7,7,1) 100%);
}

.tlh-status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,120,40,0.14);
    background:
        linear-gradient(180deg, rgba(19,16,16,0.96), rgba(8,8,8,0.98));
    box-shadow:
        0 18px 40px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.tlh-status-strip-item,
.tlh-status-strip-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlh-status-strip-item span {
    color: rgba(255,255,255,0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-status-strip-item strong {
    color: #fff;
    font-size: 1.02rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-status-strip-action {
    align-items: flex-end;
}

@media (max-width: 1199.98px) {
    .tlh-hero-mini-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .tlh-status-strip {
        grid-template-columns: 1fr 1fr;
    }

    .tlh-status-strip-action {
        grid-column: 1 / -1;
        align-items: stretch;
    }
}

@media (max-width: 991.98px) {
    .tlh-hero-aaa {
        min-height: auto;
        padding: 64px 0 44px;
    }

    .tlh-panel-aaa {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlh-status-strip {
        grid-template-columns: 1fr;
    }
}

/* SITE AAA EXPANSION */
.tlh-page-text-left {
    margin-left: 0;
    margin-right: 0;
}

.tlh-navbar-aaa {
    position: relative;
}

.tlh-navbar-shell {
    position: relative;
}

.tlh-navbar-shell::before {
    content: '';
    position: absolute;
    inset: auto 0 -0.7rem 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,90,10,0), rgba(255,90,10,0.22), rgba(255,90,10,0));
    pointer-events: none;
}

.tlh-navbar-logo-shell,
.tlh-footer-logo-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,140,80,0.18), rgba(10,10,10,0.72));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 24px rgba(0,0,0,0.34);
}

.tlh-navbar-logo-shell {
    width: 84px;
    height: 84px;
    border: 1px solid rgba(255,115,35,0.18);
}

.tlh-nav-pills .nav-link {
    border: 1px solid transparent;
    border-radius: 999px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.tlh-nav-pills .nav-link:hover,
.tlh-nav-pills .nav-link.active {
    background: rgba(255,115,35,0.08);
    border-color: rgba(255,115,35,0.16);
    transform: translateY(-1px);
}

.tlh-nav-pills .nav-link.active::after,
.tlh-nav-pills .nav-link:hover::after {
    left: 1rem;
    right: 1rem;
    bottom: 0.18rem;
}

.tlh-btn-nav-primary,
.tlh-btn-nav-secondary {
    border-radius: 999px;
}

.tlh-page-hero-aaa {
    padding: 102px 0 58px;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.92), rgba(5,5,5,0.98));
}

.tlh-page-hero-aaa::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.54) 48%, rgba(0,0,0,0.84) 100%),
        radial-gradient(circle at 18% 34%, rgba(255,110,40,0.10), transparent 26%),
        radial-gradient(circle at 78% 28%, rgba(255,82,20,0.14), transparent 22%),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
}

.tlh-server-hero,
.tlh-vip-hero {
    overflow: hidden;
}

.tlh-server-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.tlh-server-mini-stats {
    margin-top: 1.25rem;
    max-width: 700px;
}

.tlh-server-connect-panel,
.tlh-vip-panel {
    max-width: 100%;
}

.tlh-server-flow,
.tlh-vip-upgrade-flow {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.tlh-server-flow-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(24,22,22,0.92), rgba(9,9,9,0.98));
}

.tlh-server-flow-item strong {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    color: var(--orange);
    background: rgba(255,115,35,0.10);
    border: 1px solid rgba(255,115,35,0.24);
}

.tlh-server-flow-item span {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-vip-hero-point {
    display: grid;
    gap: 0.28rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,115,35,0.14);
    background: linear-gradient(180deg, rgba(18,15,15,0.82), rgba(8,8,8,0.90));
}

.tlh-vip-hero-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.45rem;
    max-width: 700px;
}

.tlh-vip-hero-point strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.06em;
}

.tlh-vip-hero-point span,
.tlh-pricing-copy {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-pricing-card-aaa {
    border-radius: 16px;
    padding: 1.55rem;
    background: linear-gradient(180deg, rgba(18,16,16,0.98), rgba(7,7,7,0.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.30);
}

.tlh-pricing-card-featured {
    position: relative;
    border-color: rgba(255,115,35,0.30);
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
}

.tlh-pricing-card-featured::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(255,115,35,0.12);
    border: 1px solid rgba(255,115,35,0.22);
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.tlh-vip-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.tlh-vip-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-vip-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-size: 1.1rem;
}

.tlh-footer-aaa {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(4,4,4,1) 100%);
}

.tlh-footer-aaa::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(255,110,40,0.10), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(255,70,20,0.09), transparent 20%);
    pointer-events: none;
}

.tlh-footer-aaa > .container {
    position: relative;
    z-index: 1;
}

.tlh-footer-topbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    padding: 1rem 1.1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,115,35,0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(20,16,16,0.94), rgba(8,8,8,0.98));
    box-shadow: 0 18px 40px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.04);
}

.tlh-footer-topbar-item,
.tlh-footer-topbar-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlh-footer-topbar-item span {
    color: rgba(255,255,255,0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 0.3rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-footer-topbar-item strong {
    color: #fff;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-footer-topbar-action {
    align-items: flex-end;
}

.tlh-footer-logo-shell {
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255,115,35,0.16);
}

.tlh-footer-server-card {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(18,18,18,0.92), rgba(8,8,8,0.98));
}

@media (max-width: 1199.98px) {
    .tlh-footer-topbar {
        grid-template-columns: 1fr 1fr;
    }

    .tlh-footer-topbar-action {
        grid-column: 1 / -1;
        align-items: stretch;
    }
}

@media (max-width: 991.98px) {
    .tlh-navbar-logo-shell {
        width: 62px;
        height: 62px;
    }

    .tlh-page-hero-aaa {
        padding: 82px 0 44px;
    }

    .tlh-pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .tlh-server-hero-actions {
        flex-direction: column;
    }

    .tlh-footer-topbar {
        grid-template-columns: 1fr;
    }

    .tlh-page-text-left {
        text-align: left;
    }
}


/* NAVBAR HOTFIX */
:root {
    --tlh-navbar-offset: 106px;
}

body {
    padding-top: var(--tlh-navbar-offset);
}

.tlh-navbar {
    min-height: var(--tlh-navbar-offset);
}

.tlh-navbar-shell {
    max-width: 1480px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tlh-brand-wrap {
    flex: 0 0 auto;
    min-width: 0;
}

.tlh-brand-main {
    font-size: 1.8rem;
    line-height: 0.95;
    white-space: nowrap;
}

.tlh-brand-sub {
    white-space: nowrap;
}

.tlh-navbar-collapse {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tlh-nav-pills {
    flex-wrap: nowrap;
    align-items: center;
}

.tlh-nav-pills .nav-link {
    white-space: nowrap;
    font-size: 0.92rem;
    padding: 0.52rem 0.72rem;
}

.tlh-navbar-actions {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tlh-navbar-actions .btn {
    min-width: 140px;
    padding-inline: 1.1rem;
}

@media (max-width: 1530px) {
    .tlh-navbar-shell {
        gap: 0.9rem;
    }

    .tlh-brand-main {
        font-size: 1.6rem;
    }

    .tlh-brand-sub {
        font-size: 0.74rem;
        letter-spacing: 0.09em;
    }

    .tlh-nav-pills .nav-link {
        font-size: 0.86rem;
        padding: 0.5rem 0.56rem;
    }

    .tlh-navbar-actions .btn {
        min-width: 128px;
        padding-inline: 0.95rem;
    }
}

@media (max-width: 1399.98px) {
    :root {
        --tlh-navbar-offset: 98px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --tlh-navbar-offset: 90px;
    }

    .tlh-navbar-shell {
        gap: 0.75rem;
    }

    .tlh-brand-sub {
        white-space: normal;
    }
}


/* NAVBAR FIXED FINAL */
html {
    scroll-padding-top: var(--tlh-navbar-offset);
}

body {
    padding-top: var(--tlh-navbar-offset) !important;
}

.tlh-navbar,
.navbar.tlh-navbar,
.navbar.fixed-top.tlh-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1080;
}

.tlh-navbar .container,
.tlh-navbar .container-fluid,
.tlh-navbar-shell {
    position: relative;
}

@media (min-width: 992px) {
    .tlh-navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

/* ===== NAVBAR BUTTONS WITH ICON ===== */

.tlh-btn-primary,
.tlh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Ícones */
.tlh-btn-primary i,
.tlh-btn-outline i {
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Ajuste fino no navbar */
.navbar .tlh-btn-primary,
.navbar .tlh-btn-outline {
    padding: 10px 18px;
    font-size: 14px;
}


/* ===== HERO LEGIBILITY FIX ===== */
.tlh-hero-exact,
.tlh-hero-aaa {
    position: relative;
    overflow: hidden;
}

.tlh-hero-exact::before,
.tlh-hero-aaa::before {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 32%, rgba(0,0,0,0.58) 58%, rgba(0,0,0,0.78) 100%),
        radial-gradient(circle at 22% 42%, rgba(0,0,0,0.56), transparent 38%),
        radial-gradient(circle at 76% 34%, rgba(255,88,25,0.10), transparent 24%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat !important;
    filter: saturate(1.02) contrast(1.04);
}

.tlh-hero-left {
    position: relative;
    max-width: 980px;
}

.tlh-hero-left::before {
    content: '';
    position: absolute;
    inset: -1.1rem -1.2rem -1.35rem -1.1rem;
    background: linear-gradient(180deg, rgba(8,8,8,0.28), rgba(8,8,8,0.18));
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.24);
    z-index: 0;
    pointer-events: none;
}

.tlh-hero-left > * {
    position: relative;
    z-index: 1;
}

.tlh-hero-topline,
.tlh-hero-domain,
.tlh-hero-chip,
.tlh-hero-subtitle,
.tlh-hero-text,
.tlh-hero-mini-stat,
.tlh-hero-actions {
    text-shadow: 0 3px 14px rgba(0,0,0,0.78);
}

.tlh-hero-title,
.tlh-hero-title-aaa,
.tlh-hero-title .white,
.tlh-hero-title .red {
    text-shadow:
        0 8px 24px rgba(0,0,0,0.92),
        0 3px 10px rgba(0,0,0,0.55) !important;
}

.tlh-hero-subtitle {
    color: rgba(255,255,255,0.84);
}

.tlh-hero-text {
    color: rgba(255,255,255,0.94);
}

.tlh-hero-text strong {
    color: #ff7a2f;
    text-shadow: 0 3px 12px rgba(0,0,0,0.82);
}

.tlh-hero-mini-stat {
    background: linear-gradient(180deg, rgba(15,12,12,0.84), rgba(9,8,8,0.88));
    border-color: rgba(255,120,40,0.18);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 10px 24px rgba(0,0,0,0.22);
}

@media (max-width: 991.98px) {
    .tlh-hero-left::before {
        inset: -0.8rem -0.8rem -1rem -0.8rem;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-left::before {
        inset: -0.6rem -0.4rem -0.8rem -0.4rem;
        border-radius: 14px;
    }

    .tlh-hero-subtitle {
        font-size: 0.96rem;
    }

    .tlh-hero-text {
        font-size: 1.05rem;
        line-height: 1.72;
    }
}
.tlh-brand-main,
.tlh-footer-brand {
    line-height: 1;
}
.tlh-brand-main {
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tlh-footer-brand {
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* REMOVE GRID DO TÍTULO */
.tlh-hero-left::before {
    display: none !important;
}
/* REMOVE QUADRADOS DO TÍTULO */
.tlh-hero-title-aaa .white::after,
.tlh-hero-title-aaa .red::after {
    display: none !important;
}

/* ===== VIP PLANS LAYOUT FIX ===== */
.tlh-vip-plans-row {
    align-items: stretch;
}

.tlh-vip-plans-row > [class*="col-"] {
    display: flex;
}

.tlh-vip-plans-row .tlh-pricing-card-aaa {
    width: 100%;
}

@media (min-width: 1200px) {
    .tlh-vip-plans-row {
        --bs-gutter-x: 1.1rem;
    }

    .tlh-vip-plans-row > .col-xl-3 {
        width: 25%;
    }

    .tlh-vip-plans-row .tlh-pricing-card-featured {
        transform: translateY(-10px) scale(1.015);
    }
}

.tlh-pricing-card-aaa {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(255,115,35,0.14);
    overflow: hidden;
}

.tlh-pricing-card-aaa::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,115,35,0.55), rgba(255,115,35,0));
}

.tlh-pricing-card-aaa .tlh-card-badge {
    margin-bottom: 1rem;
}

.tlh-pricing-card-aaa h3 {
    margin-bottom: 0.7rem;
}

.tlh-pricing-card-aaa .tlh-pricing-copy {
    min-height: 76px;
}

.tlh-pricing-card-aaa .tlh-vip-list {
    margin-top: 1rem;
    margin-bottom: 0;
}

.tlh-pricing-card-aaa .tlh-vip-list li:last-child {
    margin-bottom: 0;
}

.tlh-pricing-card-featured {
    border-color: rgba(255,115,35,0.34);
    background:
        linear-gradient(180deg, rgba(28,18,14,0.98), rgba(10,8,8,0.99));
    box-shadow:
        0 26px 60px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,115,35,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.tlh-pricing-card-featured::after {
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.34rem 0.72rem;
    background: linear-gradient(180deg, rgba(255,126,54,0.20), rgba(255,97,22,0.10));
    border-color: rgba(255,140,60,0.28);
    color: #ffd2b1;
    box-shadow: 0 8px 18px rgba(0,0,0,0.24);
}

.tlh-pricing-card-featured .tlh-card-badge {
    background: rgba(255,115,35,0.14);
    border-color: rgba(255,115,35,0.32);
    color: #ffb27e;
}

.tlh-pricing-card-featured h3 {
    color: #fff4ea;
}

.tlh-pricing-card-featured .tlh-pricing-copy,
.tlh-pricing-card-featured .tlh-vip-list li {
    color: rgba(255,244,234,0.86);
}

@media (max-width: 1199.98px) {
    .tlh-vip-plans-row .tlh-pricing-card-featured {
        transform: none;
    }

    .tlh-pricing-card-aaa .tlh-pricing-copy {
        min-height: auto;
    }
}

/* ===== VIP CARD: selo MAIS POPULAR corrigido ===== */

/* comportamento normal para todos os cards */
.tlh-pricing-card-aaa .tlh-card-badge {
    position: static;
    margin: 0 0 1rem;
    min-width: 72px;
    width: auto;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    text-align: center;
}

/* somente o card em destaque recebe topo especial */
.tlh-pricing-card-aaa.tlh-pricing-card-featured {
    position: relative;
    padding-top: 5.25rem;
}

.tlh-pricing-card-aaa.tlh-pricing-card-featured::after {
    top: 1rem;
    right: 1rem;
    padding: 0.38rem 0.78rem;
    font-size: 0.7rem;
    line-height: 1;
    z-index: 3;
}

.tlh-pricing-card-aaa.tlh-pricing-card-featured .tlh-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    margin: 0;
    min-width: 0;
    width: auto;
    padding: 0.75rem 7.4rem 0.75rem 1rem;
    border-radius: 999px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .tlh-pricing-card-aaa.tlh-pricing-card-featured {
        padding-top: 5.7rem;
    }

    .tlh-pricing-card-aaa.tlh-pricing-card-featured::after {
        top: 0.9rem;
        right: 0.9rem;
        font-size: 0.66rem;
        padding: 0.34rem 0.68rem;
    }

    .tlh-pricing-card-aaa.tlh-pricing-card-featured .tlh-card-badge {
        left: 0.9rem;
        right: 0.9rem;
        padding: 0.72rem 6.8rem 0.72rem 0.9rem;
    }
}

.tlh-status-online {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.35);
    font-weight: 700;
}

.tlh-status-offline {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.35);
    font-weight: 700;
}

.tlh-panel-exact-status.is-online {
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.25);
    background: rgba(34, 197, 94, 0.08);
}

.tlh-panel-exact-status.is-offline {
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.25);
    background: rgba(239, 68, 68, 0.08);
}

.tlh-status-online {
    color: #39ff88;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 136, 0.45);
    animation: tlhPulseOnline 1.8s infinite ease-in-out;
}

.tlh-status-offline {
    color: #ff5a5a;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 90, 90, 0.35);
}

@keyframes tlhPulseOnline {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

.tlh-panel-exact-row.is-active strong {
    color: #7dffb2;
    text-shadow: 0 0 10px rgba(125, 255, 178, 0.25);
}

/* mapa */
.tlh-map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 20, 34, 0.96) 0%, rgba(8, 11, 20, 0.98) 100%);
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.tlh-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tlh-map-toolbar-badge,
.tlh-map-toolbar-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.tlh-map-toolbar-badge i {
    color: #ff6a00;
}

.map-zoom-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: crosshair;
    line-height: 0;
}

.map-zoom-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
    -webkit-user-drag: none;
}

.map-lens {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.95);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.50),
        0 0 0 10px rgba(255, 106, 0, 0.14);
    background-color: rgba(12, 18, 30, 0.90);
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .12s ease;
    z-index: 5;
}

.map-lens.active {
    opacity: 1;
}

.tlh-map-fullscreen-btn {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(10, 12, 20, 0.82);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
    cursor: pointer;
}

.tlh-map-fullscreen-btn:hover {
    background: rgba(255, 106, 0, 0.20);
    border-color: rgba(255, 106, 0, 0.45);
}

.map-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(4, 6, 12, 0.96);
    backdrop-filter: blur(8px);
}

.map-modal.open {
    display: flex;
}

.map-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* MUITO IMPORTANTE */
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;

    transform-origin: center center;
    transition: transform 0.08s ease;

    cursor: grab;
}

.map-modal-image:active {
    cursor: grabbing;
}

.map-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100000;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(12,16,26,0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-modal-close:hover {
    border-color: rgba(255, 106, 0, 0.45);
    background: rgba(255, 106, 0, 0.20);
}

@media (max-width: 768px) {
    .map-lens {
        width: 140px;
        height: 140px;
    }
}

/* ===== MAPA INTERATIVO + ZOOM AVANÇADO ===== */
body.modal-open {
    overflow: hidden !important;
}

.tlh-map-full-section {
    position: relative;
}

.tlh-map-info-card {
    margin-top: 1rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(17,19,28,0.96), rgba(8,11,18,0.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tlh-map-info-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.tlh-map-info-kicker,
.tlh-map-info-risk {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.tlh-map-info-kicker {
    color: var(--orange);
    background: rgba(255,115,35,0.10);
    border: 1px solid rgba(255,115,35,0.18);
}

.tlh-map-info-risk {
    color: #ffd2b1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.tlh-map-info-card h3 {
    margin-bottom: 0.7rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.tlh-map-info-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.tlh-map-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.tlh-map-mini-info {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(22,22,26,0.92), rgba(10,10,12,0.96));
}

.tlh-map-mini-info strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tlh-map-mini-info span {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

.map-zoom-wrap {
    position: relative;
}

.map-pins {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.92);
    background: radial-gradient(circle at 30% 30%, #ffb37d, #ff6a00 60%, #7b2500 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.38);
    cursor: pointer;
    z-index: 4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.map-pin:hover,
.map-pin.is-active {
    transform: translate(-50%, -50%) scale(1.12);
    border-color: #fff4ea;
    box-shadow: 0 16px 38px rgba(0,0,0,0.45), 0 0 0 8px rgba(255,106,0,0.16);
}

.map-pin span {
    font-size: 0.95rem;
    line-height: 1;
    pointer-events: none;
}

.map-lens {
    z-index: 5;
}

.tlh-map-fullscreen-btn {
    z-index: 6;
}

.map-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(4,6,12,0.96);
    backdrop-filter: blur(8px);
}

.map-modal.open {
    display: flex;
}

.map-modal-viewer {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 360px;
    gap: 1rem;
    width: min(96vw, 1600px);
    height: min(92vh, 980px);
}

.map-modal-stage {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(10,12,18,0.98), rgba(6,8,14,0.98));
    cursor: grab;
}

.map-modal-stage.is-dragging {
    cursor: grabbing;
}

.map-modal-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 1200px);
    transform: translate(0,0) scale(1);
    transform-origin: center center;
    will-change: transform;
}

.map-modal-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    user-select: none;
    -webkit-user-drag: none;
}

.map-pins--modal {
    z-index: 4;
}

.map-pins--modal .map-pin {
    width: 42px;
    height: 42px;
}

.map-modal-side {
    position: relative;
    padding: 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(17,19,28,0.96), rgba(8,11,18,0.98));
    box-shadow: 0 20px 40px rgba(0,0,0,0.36);
    overflow: auto;
}

.map-modal-side h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-size: 2rem;
}

.map-modal-side p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.tlh-map-modal-help {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.tlh-map-modal-help div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-map-modal-help i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.map-modal-controls {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 8;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.map-control-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,12,20,0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    cursor: pointer;
}

.map-control-btn:hover {
    border-color: rgba(255,106,0,0.45);
    background: rgba(255,106,0,0.20);
}

.map-control-btn-reset {
    min-width: 130px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 100000;
}

.tlh-feature-cards-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1399.98px) {
    .map-modal-viewer {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 1199.98px) {
    .tlh-feature-cards-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .map-modal-viewer {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 92vh;
    }

    .map-modal-side {
        max-height: 32vh;
    }

    .map-modal-stage {
        min-height: 58vh;
    }
}

@media (max-width: 767.98px) {
    .tlh-map-info-grid {
        grid-template-columns: 1fr;
    }

    .tlh-feature-cards-map {
        grid-template-columns: 1fr;
    }

    .map-pin {
        width: 34px;
        height: 34px;
    }

    .map-pins--modal .map-pin {
        width: 36px;
        height: 36px;
    }

    .map-modal {
        padding: 14px;
    }

    .map-modal-stage {
        min-height: 46vh;
    }

    .map-control-btn,
    .map-control-btn-reset {
        min-width: 44px;
        height: 44px;
    }

    .map-control-btn-reset {
        min-width: 112px;
        font-size: 0.82rem;
    }
}


/* TRADERS E MARCADORES CUSTOMIZADOS */
.map-marker-wrap {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.map-marker-wrap.is-active {
    z-index: 7;
}

.map-pin-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--pin-ring, rgba(255, 106, 0, 0.18));
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
    animation: traderPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.map-pin {
    background: radial-gradient(circle at 30% 30%, #ffb37d, var(--pin-color, #ff6a00) 58%, #7b2500 100%);
    color: #ffffff;
}

.map-pin span {
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
}

@keyframes traderPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.45;
    }
}
