/* =========================================================
   CENTRAL ORION — TOPO CLIENTE GLOBAL
========================================================= */

.central-orion-topo-cliente,
.central-orion-topo-cliente * {
    box-sizing: border-box;
}

.central-orion-topo-cliente {
    width: 100%;
    min-height: 82px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 150px minmax(280px, 360px);
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
    position: relative;
    z-index: 5;
}

.central-orion-topo-cliente-esquerda {
    min-width: 0;
}

.central-orion-topo-cliente-esquerda h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.9px;
}

.central-orion-topo-cliente-esquerda h1 span {
    display: inline-block;
}

.central-orion-topo-cliente-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(0, 100, 35, 0.35);
    color: #00ff66;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.central-orion-topo-cliente-status span {
    width: 10px;
    height: 10px;
    background: #00ff5a;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(0, 255, 90, 0.8);
}

.central-orion-topo-cliente-status strong {
    color: #00ff66;
    font-size: 13px;
    font-weight: 800;
}

.central-orion-topo-cliente-logo {
    width: 150px;
    max-width: 150px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.central-orion-topo-cliente-logo img {
    display: block;
    width: 126px;
    max-width: 126px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.14));
}

.central-orion-topo-cliente-logo strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
}

.central-orion-topo-cliente-logo strong span {
    color: #ff1616;
}

.central-orion-topo-cliente-direita {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-width: 0;
}

.central-orion-topo-cliente-sino {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.68);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 19px;
}

.central-orion-topo-cliente-sino span {
    display: block;
    line-height: 1;
}

.central-orion-topo-cliente-sino em {
    position: absolute;
    right: 9px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff1616;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.central-orion-topo-cliente-vip {
    width: 250px;
    min-height: 70px;
    padding: 12px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 0, 0.38);
    background:
        radial-gradient(circle at 95% 0%, rgba(255, 0, 0, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(5, 5, 5, 0.98));
    text-decoration: none;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 14px;
    align-items: center;
    box-shadow: 0 0 24px rgba(255, 0, 0, 0.12);
}

.central-orion-topo-cliente-vip-icone {
    color: #ffb020;
    font-size: 31px;
    line-height: 1;
}

.central-orion-topo-cliente-vip-texto {
    min-width: 0;
}

.central-orion-topo-cliente-vip-texto strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 900;
    white-space: nowrap;
}

.central-orion-topo-cliente-vip-texto p {
    margin: 0;
    color: #00ff66;
    font-size: 13px;
    font-weight: 700;
}

.central-orion-topo-cliente-vip b {
    color: #ffffff;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

/* =========================================================
   DESKTOP MENOR
========================================================= */

@media (max-width: 1450px) and (min-width: 768px) {

    .central-orion-topo-cliente {
        grid-template-columns: minmax(220px, 1fr) 130px minmax(250px, 330px);
        gap: 16px;
    }

    .central-orion-topo-cliente-logo {
        width: 130px;
        max-width: 130px;
    }

    .central-orion-topo-cliente-logo img {
        width: 112px;
        max-width: 112px;
    }

    .central-orion-topo-cliente-vip {
        width: 230px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .central-orion-topo-cliente {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 54px;
        grid-template-areas:
            "logo sino"
            "boas boas"
            "vip vip";
        gap: 14px;
        align-items: center;
        margin-bottom: 16px;
    }

    .central-orion-topo-cliente-logo {
        grid-area: logo;
        width: 100%;
        max-width: 100%;
        height: 58px;
        justify-content: center;
        padding-left: 44px;
    }

    .central-orion-topo-cliente-logo img {
        width: 118px;
        max-width: 118px;
    }

    .central-orion-topo-cliente-direita {
        display: contents;
    }

    .central-orion-topo-cliente-sino {
        grid-area: sino;
        width: 50px;
        height: 50px;
        min-width: 50px;
        justify-self: end;
    }

    .central-orion-topo-cliente-esquerda {
        grid-area: boas;
    }

    .central-orion-topo-cliente-esquerda h1 {
        font-size: 30px;
        line-height: 1.05;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .central-orion-topo-cliente-status {
        min-height: 32px;
        font-size: 14px;
        padding: 0 14px;
    }

    .central-orion-topo-cliente-status strong {
        font-size: 14px;
    }

    .central-orion-topo-cliente-vip {
        grid-area: vip;
        width: 100%;
        min-height: 70px;
        padding: 12px 14px;
        grid-template-columns: 34px 1fr auto;
        justify-self: stretch;
    }

    .central-orion-topo-cliente-vip-icone {
        font-size: 28px;
    }

    .central-orion-topo-cliente-vip-texto strong {
        font-size: 17px;
    }

    .central-orion-topo-cliente-vip-texto p {
        font-size: 14px;
    }
}

/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {

    .central-orion-topo-cliente-logo img {
        width: 108px;
        max-width: 108px;
    }

    .central-orion-topo-cliente-esquerda h1 {
        font-size: 28px;
    }
}

