/* =============================================================
   BBBVR - CSS Principal
   Versão: 1.0.0
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
    --orange: #F4820A;
    --yellow: #F5C700;
    --dark: #5C2A00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(160deg, #F4820A 0%, #E06A00 60%, #C85500 100%);
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 255, 255, .15);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 1.5rem;
}

.hinner {
    max-width: 1160px;
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hlogo img {
    height: 72px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
}

nav {
    display: flex;
    gap: .2rem;
}

nav a {
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem .95rem;
    border-radius: 100px;
    transition: background .2s;
}

nav a:hover {
    background: rgba(255, 255, 255, .16);
}

.socials {
    display: flex;
    gap: .5rem;
}

.soc {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1.1rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    transition: transform .15s, box-shadow .15s;
}

.soc:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

.syt {
    background: #FF0000;
}

.sig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Hero */
.hero {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 230, 100, .18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 0, 0, .3);
    border: 1.5px solid rgba(255, 255, 255, .25);
    padding: .4rem 1.2rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hstat {
    background: rgba(0, 0, 0, .25);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: .9rem 1.8rem;
    text-align: center;
    min-width: 105px;
}

.hstat-n {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
    line-height: 1;
}

.hstat-l {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 3px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .4);
    transition: transform .15s, box-shadow .15s;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.03);
}

.btn-out {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: transparent;
    color: #fff;
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .15s, transform .15s;
}

.btn-out:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-3px);
}

/* Seções */
.sec {
    padding: 3.5rem 1.5rem;
}

.cont {
    max-width: 1160px;
    margin: 0 auto;
}

.sec-hdr {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sec-tag {
    display: inline-block;
    background: rgba(0, 0, 0, .2);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .85);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 100px;
    margin-bottom: .6rem;
}

.sec-ttl {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .35);
}

/* Participantes Carrossel */
.part-bg {
    background: rgba(0, 0, 0, .15);
    border-radius: 24px;
    padding: 2rem 0;
    overflow: hidden;
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.carousel-wrap:last-child {
    margin-bottom: 0;
}

.carousel-wrap::before,
.carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .35), transparent);
}

.carousel-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(0, 0, 0, .35), transparent);
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.carousel-track.ltr {
    animation: scrollLTR 28s linear infinite;
}

.carousel-track.rtl {
    animation: scrollRTL 28s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scrollRTL {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.pcard {
    background: rgba(0, 0, 0, .3);
    border: 2px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 1.25rem .9rem 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 150px;
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 18px 18px 0 0;
}

.pcard:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
    border-color: rgba(255, 230, 0, .4);
}

.pcard-av {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto .85rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.pcard-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcard-name {
    font-family: 'Fredoka One', cursive;
    font-size: .95rem;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .5);
    letter-spacing: .02em;
}

.pcard-eliminated {
    filter: grayscale(1) brightness(.75);
    transition: filter .35s, transform .2s, box-shadow .2s;
}

.pcard-eliminated:hover {
    filter: grayscale(.6) brightness(.85);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}

.pcard-eliminated::after {
    content: '🚶 ELIMINADO';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 100%);
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .1em;
    padding: .35rem .25rem;
    color: rgba(255, 100, 100, .95);
    text-align: center;
}

/* Paredão */
.par-wrap {
    background: rgba(0, 0, 0, .2);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.par-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: .75rem;
}

.par-ttl {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
}

.live-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vtotal {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
}

.warn-box {
    background: rgba(0, 0, 0, .35);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: .85rem 1.25rem;
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2rem;
    letter-spacing: .04em;
    text-align: center;
}

.warn-box strong {
    color: var(--yellow);
}

.nom-img-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .3);
    flex-shrink: 0;
}

.nom-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rbar {
    border-radius: 12px;
    padding: .9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
}

.res-bars {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.rb-red {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.rb-dark {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
}

.rb-green {
    background: linear-gradient(135deg, #16a085, #2ecc71);
}

.rbar:hover {
    transform: scale(1.02);
}

.rbar.sel {
    box-shadow: 0 0 0 3px var(--yellow), 0 4px 20px rgba(0, 0, 0, .4);
    transform: scale(1.02);
}

.rbar.sel::after {
    content: '✔';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--yellow);
    z-index: 3;
    filter: drop-shadow(0 0 6px rgba(245, 199, 0, .8));
}

.rbar-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #fff;
    flex: 1;
    position: relative;
    z-index: 2;
}

.rbar-pct {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
    position: relative;
    z-index: 2;
}

.rbar-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 0, 0, .2);
}

.bf-y {
    height: 100%;
    background: linear-gradient(90deg, #F5C700, #FFE566);
    transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.bf-w {
    height: 100%;
    background: rgba(255, 255, 255, .4);
    transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.vote-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vote-hint {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .06em;
}

.vote-btn {
    padding: .9rem 2.8rem;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .4);
    transition: transform .15s, opacity .2s;
}

.vote-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.03);
}

.vote-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.voted-msg {
    display: none;
    text-align: center;
    background: rgba(0, 200, 100, .15);
    border: 2px solid rgba(0, 255, 130, .35);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #fff;
}

.voted-msg small {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin-top: .25rem;
}

.voted-msg.show {
    display: block;
}

.pow-status {
    text-align: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .5rem;
    display: none;
}

/* Videos */
.vid-bg {
    background: rgba(0, 0, 0, .18);
    border-radius: 24px;
    padding: 2.5rem;
}

.vid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vcard {
    background: rgba(0, 0, 0, .35);
    border: 2px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: block;
}

.vcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
    border-color: rgba(245, 199, 0, .4);
}

.vthumb {
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
}

.vthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg1 {
    background: linear-gradient(135deg, #c0392b, #8e44ad);
}

.vg2 {
    background: linear-gradient(135deg, #e67e22, #c0392b);
}

.vg3 {
    background: linear-gradient(135deg, #16a085, #2c3e50);
}

.vg4 {
    background: linear-gradient(135deg, #8e44ad, #2c3e50);
}

.vplay {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.vplay::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #222;
    margin-left: 3px;
}

.vcard:hover .vplay {
    transform: scale(1.12);
}

.vinfo {
    padding: 1.1rem;
}

.vlabel {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .4rem;
}

.vtitle {
    font-size: .88rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
    line-height: 1.4;
    margin-bottom: .65rem;
}

.vmeta {
    display: flex;
    gap: 1rem;
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .35);
}

.vid-foot {
    text-align: center;
}

.btn-ytall {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2.4rem;
    background: #FF0000;
    color: #fff;
    font-weight: 900;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    transition: transform .15s;
}

.btn-ytall:hover {
    transform: translateY(-3px);
}

/* Loading skeleton */
.skel {
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% {
        opacity: .5
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .5
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, .35);
    border-top: 2px solid rgba(255, 255, 255, .1);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

footer p {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

/* ── Modal de Participante ────────────────────────────────── */
.pmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.pmodal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.pmodal {
    background: linear-gradient(160deg, rgba(244, 130, 10, .12) 0%, rgba(10, 10, 20, .95) 60%);
    border: 1.5px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    width: 100%;
    max-width: 400px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .85);
    transform: translateY(50px) scale(.94);
    transition: transform .32s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden;
}

.pmodal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
    background-size: 200% 100%;
    animation: shimmerGold 2s linear infinite;
}

@keyframes shimmerGold {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.pmodal-overlay.open .pmodal {
    transform: translateY(0) scale(1);
}

.pmodal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, transform .2s;
    line-height: 1;
}

.pmodal-close:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    transform: scale(1.1);
}

.pmodal-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid rgba(245, 199, 0, .55);
    box-shadow: 0 0 0 8px rgba(245, 199, 0, .09), 0 14px 50px rgba(0, 0, 0, .7);
    object-fit: cover;
    margin: 0 auto 1.25rem;
    display: block;
}

.pmodal-avatar-placeholder {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid rgba(245, 199, 0, .35);
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin: 0 auto 1.25rem;
}

.pmodal-nome {
    font-family: 'Fredoka One', cursive;
    font-size: 1.65rem;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .5);
    letter-spacing: .02em;
    margin-bottom: .3rem;
}

.pmodal-status {
    display: inline-block;
    padding: .2rem .85rem;
    border-radius: 100px;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.pmodal-status.ativo {
    background: rgba(46, 204, 113, .15);
    border: 1px solid rgba(46, 204, 113, .35);
    color: #2ecc71;
}

.pmodal-status.eliminado {
    background: rgba(231, 76, 60, .15);
    border: 1px solid rgba(231, 76, 60, .35);
    color: #e74c3c;
}

.pmodal-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0 0 1.1rem;
}

.pmodal-bio-label {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .5rem;
}

.pmodal-bio {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    max-height: 155px;
    overflow-y: auto;
    text-align: left;
    padding: 0 .15rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) transparent;
}

.pmodal-bio:empty::before {
    content: 'Sem bio cadastrada.';
    color: rgba(255, 255, 255, .28);
    font-style: italic;
}

@media(max-width:640px) {
    nav {
        display: none;
    }

    .soc span {
        display: none;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .par-wrap,
    .part-bg,
    .vid-bg {
        padding: 1.5rem 1rem;
    }

    .vote-row {
        justify-content: center;
    }

    .pmodal {
        padding: 2rem 1.25rem 1.5rem;
    }
}

/* ── Queridômetro ─────────────────────────────────────────── */
.queri-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .65rem;
}

.queri-hint {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    font-style: italic;
}

.queri-pow {
    font-size: .68rem;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    min-height: 1.2em;
    margin-bottom: .4rem;
    transition: opacity .3s;
}

.queri-pow.ready {
    color: rgba(46, 204, 113, .6);
}

.queri-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: .45rem;
    overflow-x: auto;
    padding-bottom: .6rem;
    margin-bottom: .4rem;

    /* Scrollbar minimalista */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .2) transparent;
}

.queri-grid::-webkit-scrollbar {
    height: 4px;
}

.queri-grid::-webkit-scrollbar-track {
    background: transparent;
}

.queri-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
}

.queri-emote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: .5rem .6rem .35rem;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .15s, box-shadow .15s;
    min-width: 52px;
    position: relative;
}

.queri-emote:hover:not(.disabled) {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(244, 130, 10, .5);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(244, 130, 10, .25);
}

.queri-emote.selected {
    background: rgba(244, 130, 10, .2);
    border-color: var(--orange);
    box-shadow: 0 0 16px rgba(244, 130, 10, .35);
}

.queri-emote.disabled {
    opacity: .45;
    cursor: default;
    pointer-events: none;
}

.queri-emote .qemoji {
    font-size: 1.55rem;
    line-height: 1;
}

.queri-emote .qlabel {
    font-size: .52rem;
    color: rgba(255, 255, 255, .45);
    text-align: center;
    line-height: 1.1;
    max-width: 50px;
}

.queri-emote .qcount {
    font-size: .68rem;
    font-weight: 900;
    color: var(--yellow);
    position: absolute;
    top: -6px;
    right: -6px;
    background: rgba(0, 0, 0, .75);
    border-radius: 100px;
    padding: .05rem .35rem;
    min-width: 20px;
    text-align: center;
}

.queri-emote .qcount.zero {
    display: none;
}

/* Barras de resultado ocultas conforme feedback, usando display: none mas mantendo para APIs futuras se necessário */
.queri-bars {
    display: none;
    flex-direction: column;
    gap: .4rem;
}

.queri-bar-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
}

.queri-bar-emoji {
    font-size: 1rem;
    min-width: 22px;
    text-align: center;
}

.queri-bar-track {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
}

.queri-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 100px;
    transition: width .5s ease;
}

.queri-bar-count {
    font-size: .7rem;
    font-weight: 800;
    color: var(--yellow);
    min-width: 24px;
    text-align: right;
}

/* Top-4 no card do carrossel */
.pcard-queri {
    display: flex;
    gap: .18rem;
    justify-content: center;
    margin-top: .25rem;
    flex-wrap: wrap;
}

.pcard-queri-item {
    font-size: .8rem;
    background: rgba(0, 0, 0, .45);
    border-radius: 100px;
    padding: .05rem .32rem;
    display: flex;
    align-items: center;
    gap: .15rem;
    white-space: nowrap;
}

.pcard-queri-item span {
    font-size: .58rem;
    font-weight: 900;
    color: var(--yellow);
}