/* @import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400;800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,800;1,400;1,600;1,800&display=swap');

/* 16k + 16K */


:root {
    /* Nova paleta de cores original */
    --primary: #2bd9e2;
    --primary-verylight: #cefdff;
    --primary-light: #86f9ff;
    /* Verde água - botões principais e feedback positivo */
    /* Verde água claro */
    --primary-dark: #1aa2a9;
    /* Verde água escuro */
    --secondary: #3700FE;
    /* Turquesa - elementos secundários */
    --secondary-light: #70b1ff;
    /* Turquesa claro */
    --secondary-dark: #1f0090;
    /* Turquesa escuro */
    --tertiary: #FFD166;
    /* Amarelo ouro - alertas e destaques */
    --tertiary-light: #FFE199;
    /* Amarelo ouro claro */
    --tertiary-dark: #E5B74D;
    /* Amarelo ouro escuro */
    --accent-1: #6A8EFF;
    /* Azul violeta - destaque especial */
    --accent-2: #e8dfff;
    /* Violeta - destaques secundários */
    --accent-3: #FF6B6B;
    /* Coral vermelho-rosa - alertas e feedback negativo */
    --accent-3-light: #FF9E9E;
    /* Coral claro */
    --accent-3-dark: #E74E4E;
    /* Coral escuro */
    --feedback-positivo-100: rgb(216, 255, 222);
    --feedback-positivo-light: #9affce;
    --feedback-positivo: #02c164;
    --feedback-positivo-dark: #008042;
    --feedback-negativo: #FF6B6B;
    --feedback-negativo-light: #FF9E9E;
    --feedback-negativo-dark: #E74E4E;
    --neutral-100: #fdfcf9;
    --neutral-200: #F0EEEE;
    --neutral-300: #CAC5C3;
    --neutral-400: #A69D9B;
    --neutral-500: #827673;
    --neutral-600: #625855;
    --neutral-700: #453E3C;
    --neutral-800: #272322;
    --neutral-900: #0A0908;

    /* Manter cores antigas para compatibilidade */
    --bege1: #F4F1ED;
    --bege2: #E3DCD2;
    --bege3: #BEB7AF;
    --bege4: #DDD6CE;
    --bege5: #A0968A;
    --bege6: #B1A99F;
    --texto0: #57534D;
    --texto1: #6C6A67;
    --verde1: #E7FFE3;
    --verde2: #C2E9C9;
    --verde3: #41C49F;
    --verde4: #62E5C0;
    --azul1: #6A8EFF;
    --rosa1: #FEE9F3;
    --rosa2: #ac4242;
    --rosa3: #EACBD6;
}



* {
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    /* font-size: 22px; */
    margin: 0;
    line-height: 1.2em;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    font-size: 20px;
    font-weight: 600;
    padding: 16px 22px;
    border-radius: 16px;
    border: none;
    background: var(--primary);
    color: white;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
    /* box-shadow: 0 5px 0 var(--neutral-400); */
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--primary-dark);
}

button:active {
    filter: brightness(0.95);
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--primary-dark);
}

button img {
    vertical-align: middle;
    margin-right: 8px;
}

.btn-verde {
    background: var(--feedback-positivo);
    color: white;
    box-shadow: 0 5px 0 var(--feedback-positivo-dark);
}

.btn-verde:hover {
    box-shadow: 0 7px 0 var(--feedback-positivo-dark);
}

.btn-avancar {
    background: white;
    color: var(--feedback-positivo-dark);
    box-shadow: 0 5px 0 var(--feedback-positivo-light);
}

.btn-avancar:hover {
    box-shadow: 0 7px 0 var(--feedback-positivo-light);
}



.btn-verde:active {
    box-shadow: 0 2px 0 var(--feedback-positivo-dark);
}

.btn-azul {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 0 var(--primary-dark);
}

.btn-azul:hover {
    box-shadow: 0 7px 0 var(--primary-dark);
}

.btn-azul:active {
    box-shadow: 0 2px 0 var(--primary-dark);
}

html,
body {
    height: 100%;
    background: var(--neutral-100);
    color: var(--neutral-800);
    font-size: 22px;
}

header {
    background: var(--neutral-100);
    /* border-bottom: 1px solid var(--neutral-300); */
    height: 70px;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    position: relative;
    /* Para posicionar a barra de progresso */
    width: 100%;
    flex-direction: column;


    .header-content {
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex: 1;

        @media (max-width: 768px) {
            padding: 0;
            gap: 8px;
        }
    }


    .caminho_de_pao {
        display: flex;
        align-items: center;
        justify-content: space-between;

        ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin: 0;
            padding: 0;

            li {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: left;



                a {
                    color: var(--neutral-800);
                    background: var(--neutral-200);
                    padding: 5px 10px;
                    margin-left: 10px;
                    border-radius: 10px;
                    font-size: 14px;


                    max-width: 200px;
                    /* liminar em 2 linhas */
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    display: -webkit-box;

                    &[href="#"] {
                        font-weight: 600;
                        font-size: 18px;
                        background: #3700fe;
                        color: white;


                    }

                    &:hover {
                        background: #000;
                        color: white;
                    }
                }
            }
        }
    }

    .fechar {
        width: 40px;
        height: 40px;
        margin-right: 16px;
        img {
            width: 16px;
            height: 16px;
        }
    }
}

header .fechar,
.help {
    background: rgba(0, 0, 0, 0.04);
    /* width: 48px; */
    /* height: 48px; */
    text-align: center;
    /* margin: 10px; */
    /* padding-top: 10px; */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;

    a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

header .brand {
    display: inline-flex;
    /* margin-right: 15px; */
    position: relative;
    align-items: center;
    justify-content: center;
}

header .brand img {
    display: block;
    transition: transform 0.3s ease;
}

header .brand:hover img {
    transform: scale(1.1);
}

header .fechar:hover,
.help:hover {
    background: var(--neutral-300);
    transform: scale(1.05);
}

/* Estilos específicos para o novo botão de reportar erro */
.help {
    flex-direction: column;
    gap: 2px;
    padding: 6px 8px !important;
    width: auto !important;
    min-width: 48px;
    border-radius: 12px !important;
}

.bug-icon {
    font-size: 16px;
    line-height: 1;
}

.bug-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--neutral-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    flex: 1;
    /* Ocupar espaço disponível */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 8px;
    /* Margem nas laterais */
}

.barra {
    background: rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 6px;
    /* Altura ligeiramente maior para melhor UX */
    border-radius: 0;
    overflow: visible;
    /* Permitir tooltip */
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    z-index: 1;
    transition: height 0.3s ease;
    /* Animação de altura */
}

.barra:hover {
    height: 8px;
    /* Cresce no hover para melhor interação */
}

.barra-inner {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 0;
    height: 100%;
    color: transparent;
    /* Esconder texto dentro da barra */
    font-size: 0;
    /* Remover espaço do texto */
    position: relative;
    transition: width 1s cubic-bezier(0.1, 0.8, 0.2, 1);
    overflow: visible;
}

/* Tooltip com a porcentagem */
.barra-inner::before {
    content: attr(data-progress) '%';
    position: absolute;
    top: -20px;
    /* Posicionar acima da barra */
    right: -12px;
    /* Alinhado com o fim da barra */
    background: var(--primary);
    color: white;
    padding: 8px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1000;
    font-family: 'Nunito', sans-serif;
}

/* Seta do tooltip */
.barra-inner::after {
    content: '';
    position: absolute;
    top: -4px;
    /* Ajustar posição da seta */
    right: 4px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1000;
}

/* Mostrar tooltip no hover da barra */
.barra:hover .barra-inner::before,
.barra:hover .barra-inner::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Efeito shimmer melhorado */
.barra-inner .shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmerProgress 2s infinite;
    pointer-events: none;
}

@keyframes shimmerProgress {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



.placar {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    /* Espaçamento entre elementos */
    flex-shrink: 0;
    /* Não encolher */
    position: relative;
    /* Para controlar z-index */
    z-index: 1002;
    /* Acima da barra de progresso */
}

.sticker,
.moeda {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /* background: var(--neutral-200); */
    padding: 4px 12px;
    border-radius: 50px;
    /* margin-right: 12px; */
    transition: all 0.3s ease;
    /* border: 2px solid var(--neutral-300); */
}

.sticker:hover,
.moeda:hover {
    transform: scale(1.05);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* border-color: var(--accent-2); */
}

.sticker img,
.moeda img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.moeda-pontos,
.sticker-pontos {
    color: #e6a71e;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-pontos {
    color: #ac34bf;
}

#main {
    position: fixed;
    top: 70px;
    width: calc(100% - 200px);
    height: calc(100% - 70px);
    overflow-y: auto;
    padding: 0px;
    scroll-behavior: smooth;
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
}

aside {
    width: 200px;
    height: calc(100% - 70px);
    position: fixed;
    top: 70px;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 100;
}

/* ========================================
   SISTEMA DE FEEDBACK - PADRONIZADO
   ======================================== */

#feed {
    display: none;
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 24px 24px;
    border-radius: 16px;
    /* animation: feedBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); */
    margin: 0 auto;
}

/* Estado: Acertou */
#feed.feed-acerto {
    background: #fff;
    border: 1px solid var(--feedback-positivo);
    color: var(--feedback-positivo-dark);
    box-shadow: 0 5px 0 var(--feedback-positivo);
}

/* Estado: Errou */
#feed.feed-erro {
    background: var(--feedback-negativo);
    border: 1px solid var(--feedback-negati vo);
    box-shadow: 0 5px 0 var(--feedback-negativo-dark);
    color: white;
}

/* Estrutura interna */
#feed .feed-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    @media (max-width: 768px) {
        flex-direction: column;
        gap: 8px;
    }
}

#feed .feed-icon {
    flex-shrink: 0;
    font-size: 48px;
    line-height: 1;
}

#feed .feed-msg {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    @media (max-width: 768px) {
        font-size: 16px;
        text-align: center;
    }
}

#feed .feed-action {
    flex-shrink: 0;
}

/* Botões do feedback */
#feed button {
    font-size: 16px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botão Avançar (acerto) */
#feed.feed-acerto button {
    background: var(--feedback-positivo);
    color: white;
    box-shadow: 0 5px 0 var(--feedback-positivo-dark);
}

#feed.feed-acerto button:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--feedback-positivo-dark);
}

/* Botão Tentar Novamente (erro) */
#feed.feed-erro button {
    background: white;
    color: var(--feedback-negativo-dark);
    box-shadow: 0 5px 0 var(--feedback-negativo-dark);
}

#feed.feed-erro button:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--feedback-negativo-dark);
}

/* Animação de entrada */
@keyframes feedBounce {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    70% {
        transform: translateY(-5px) scale(1.02);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.voltar {
    width: 40px;
    height: 40px;
    background-image: url(../imgs/btn-voltar.svg);
    background-size: 100% 100%;
    position: fixed;
    bottom: 16px;
    left: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 900;
    border: 1px solid var(--neutral-300);
    border-radius: 100px;
    /* filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2)); */
}

.voltar:hover {
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
    transform: scale(1.1);
}

.parceiro {
    width: 100% !important;
}

.parceiro~aside {
    display: none;
}

.parceiro~#feed {
    width: 100% !important;
}

.animaCoin {
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2000;
    width: 100px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.animaCoin img {
    width: 100%;
}

#stk {
    width: 400px;
    height: 400px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../imgs/bonus.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1500;
    animation: bonusModern 6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, filter 0.3s ease;
}

#stk::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite alternate;
    pointer-events: none;
}

#stk::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(135deg, 
        rgba(255,255,255,0.4) 0%, 
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.3) 100%); */
    border-radius: 12px;
    opacity: 0;
    animation: shineSurface 6s ease-in-out 0.8s forwards;
    pointer-events: none;
    transform: translateZ(10px);
}

#stk img {
    width: 150px;
    height: auto;
    display: block;
    border: 5px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    background: white;
    transform: rotate(-8deg) scale(0.9) translateZ(50px);
    backface-visibility: hidden;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    animation: imgBounce 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards,
        floatImg 3s ease-in-out 2.3s infinite alternate;
    will-change: transform, box-shadow;
    cursor: pointer;
}

#stk img:hover {
    transform: rotate(0deg) scale(1.2) translateZ(80px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes bonusModern {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(-10deg) perspective(1000px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) brightness(0.8);
    }

    5% {
        opacity: 0.3;
    }

    15% {
        opacity: 1;
        transform: translate(-50%, -40%) scale(1.1) rotate(5deg) perspective(1000px);
        filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.7)) brightness(1.2);
    }

    22% {
        transform: translate(-50%, -50%) scale(1) rotate(-3deg) perspective(1000px);
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7)) brightness(1);
    }

    78% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg) perspective(1000px);
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7)) brightness(1);
    }

    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1) rotate(3deg) perspective(1000px);
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8)) brightness(1.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -100%) scale(0.3) rotate(10deg) perspective(1000px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) brightness(1.5);
    }
}

@keyframes imgBounce {
    0% {
        opacity: 0;
        transform: rotate(-20deg) scale(0.5) translateY(30px) translateZ(20px);
    }

    30% {
        opacity: 1;
    }

    60% {
        transform: rotate(5deg) scale(1.15) translateY(-10px) translateZ(60px);
    }

    80% {
        transform: rotate(-3deg) scale(1.05) translateY(5px) translateZ(55px);
    }

    100% {
        opacity: 1;
        transform: rotate(-8deg) scale(0.9) translateY(0) translateZ(50px);
    }
}

@keyframes floatImg {
    0% {
        transform: rotate(-8deg) scale(0.9) translateY(0) translateZ(50px);
    }

    100% {
        transform: rotate(-5deg) scale(0.95) translateY(-15px) translateZ(55px);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes shineSurface {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    75% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.3;
    }
}

/* Partículas do sticker */
.stk-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    z-index: 1600;
    pointer-events: none;
}

/* Efeito de holograma */
.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.2) 49%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transform: translateZ(20px);
    animation: hologramShine 4s ease-in-out infinite;
}

@keyframes hologramShine {
    0% {
        opacity: 0;
        transform: translateZ(20px) translateX(-100%) rotate(10deg);
    }

    20% {
        opacity: 0.3;
    }

    30% {
        opacity: 0.5;
    }

    40% {
        opacity: 0.3;
    }

    50% {
        opacity: 0;
        transform: translateZ(20px) translateX(100%) rotate(10deg);
    }

    100% {
        opacity: 0;
        transform: translateZ(20px) translateX(100%) rotate(10deg);
    }
}

#ad-mobile {
    display: none;
    z-index: 2000;
}

#ad-mobile h2 {
    color: white;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
}

#ad-mobile-area {
    width: 100%;
    height: 70%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#ad-mobile-button {
    width: 100%;
    max-height: 50px;
    margin-top: 20px;
    background: white;
    color: var(--neutral-800);
}

#ad-mobile-content {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 20px;
}

/* MODAL */
.modal-help {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.contaner-help {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    transform: translate(-50%, -50%);
    background: white;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: modalAppear 0.3s forwards;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.header-help>h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
}

.form-help {
    margin-top: 25px;
}

.form-help>input,
.form-help>textarea {
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    outline-style: none;
    box-shadow: none;
    color: var(--neutral-800);
    border: 2px solid var(--neutral-300);
    transition: all 0.3s;
}

.form-help>input::placeholder,
.form-help>textarea::placeholder {
    color: var(--neutral-500);
}

.form-help>input:focus,
.form-help>textarea:focus {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 3px rgba(65, 196, 159, 0.2);
}

.form-help>textarea {
    background: var(--neutral-200);
    min-height: 120px;
    resize: none;
    margin-bottom: 20px;
}

.form-help>.control-help {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.control-help>.btn-modal-help {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    color: white;
    background: var(--primary);
    box-shadow: 0 4px 0 var(--primary-dark);
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
}

.control-help>.btn-modal-help:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--primary-dark);
}

.control-help>.btn-modal-help[disabled] {
    background: var(--neutral-400);
    color: var(--neutral-600);
    box-shadow: 0 4px 0 var(--neutral-500);
    cursor: default;
}

.control-help>.btn-modal-help[disabled]:hover {
    transform: none;
    box-shadow: 0 4px 0 var(--neutral-500);
    filter: none;
}

.btn-help-cancel {
    background: white !important;
    color: var(--neutral-800) !important;
    border: 2px solid var(--neutral-400) !important;
    box-shadow: 0 4px 0 var(--neutral-500) !important;
}

.btnGuia {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    width: 36px;
    height: 36px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 0 var(--secondary-dark);
    transition: all 0.3s;
    color: white;
    margin-left: 8px;
}

.btnGuia svg {
    fill: white;
    width: 18px;
    height: 18px;
}

.btnGuia:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 0 var(--primary-light);
}

.btnGuia:active {
    filter: brightness(0.95);
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--secondary-dark);
}

#termos-popup {
    position: fixed;
    max-width: 500px;
    display: flex;
    background-color: white;
    border-radius: 16px;
    padding: 15px 20px;
    bottom: 20px;
    left: 50%;
    color: var(--neutral-700);
    font-size: 16px;
    border: none;
    transform: translateX(-50%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    align-items: center;
    max-height: calc(100vh - 40px);
    overflow: visible;
}

#termos-popup * {
    font-size: 16px;
}

#termos-btn {
    background: var(--primary);
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    margin-left: 15px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 0 var(--primary-dark);
    white-space: nowrap;
    text-transform: uppercase;
    min-width: 120px;
}

#termos-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--primary-dark);
}

/* Mascote estilo Duolingo */
.mascote {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 120px;
    height: 120px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.mascote:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3));
}

.mascote-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mascote-balloon {
    position: absolute;
    top: -80px;
    right: 0;
    background: white;
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    width: 220px;
    z-index: 1000;
}

.mascote-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.mascote:hover .mascote-balloon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.mascote.celebrating {
    animation: jump 0.8s ease infinite;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 18px;
    }

    #termos-popup {
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: none;
        padding: 16px 20px;
        flex-direction: column;
        transform: none;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        min-height: auto;
    }

    #termos-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .contaner-help {
        width: 90%;
        padding: 20px;
    }

    .header-help>h4 {
        font-size: 18px;
    }

    .form-help>textarea {
        min-height: 100px;
    }

    #ad-mobile {
        display: flex;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 5000;
        background: rgba(0, 0, 0, 0.8);
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        backdrop-filter: blur(5px);
    }

    /* Header mobile melhorado - mudanças conservadoras */
    header {
        height: 80px;
        /* Ligeiramente maior para melhor respiração */
        padding: 8px 12px;
        position: fixed;
        flex-direction: row;
        /* Mantém em linha única */
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    header .fechar {
        width: 40px;
        height: 40px;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        border-radius: 12px;
        flex-shrink: 0;
    }



    header .brand {
        margin: 0;
        flex-shrink: 0;
    }

    header .brand img {
        width: 28px;
        height: 35px;
    }

    .header-title {
        font-size: 15px;
        font-weight: 600;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 0 8px 0 0;
        line-height: 1.2;
    }

    .barra {
        width: 100%;
        height: 5px;
        /* Ligeiramente maior em mobile */
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .barra:hover {
        height: 7px;
        /* Menor crescimento no hover em mobile */
    }

    .barra-inner::before {
        font-size: 11px;
        /* Tooltip menor em mobile */
        top: -30px;
        padding: 3px 6px;
    }

    .placar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        flex-shrink: 0;
    }

    .sticker,
    .moeda {
        margin: 0;
        padding: 4px 6px;
        height: auto;
        /* Permitir altura automática */
        border-radius: 16px;
        flex-direction: column-reverse;
        /* Organizar em coluna */
        align-items: center;
        /* Centralizar conteúdo */
        gap: 2px;
        /* Espaçamento entre elementos */
    }

    .sticker img,
    .moeda img {
        height: 20px;
        width: auto;
    }

    .moeda-pontos,
    .sticker-pontos {
        font-size: 11px;
        /* Diminuir fonte para caber melhor */
        font-weight: 700;
        margin-right: 0;
        /* Remover margem direita */
        text-align: center;
        /* Centralizar texto */
    }

    header .help {
        width: auto;
        min-width: 35px;
        /* Diminuir largura mínima */
        height: 35px;
        /* Diminuir altura */
        margin: 0;
        padding: 3px 6px;
        /* Diminuir padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    header .help .bug-icon {
        font-size: 16px;
        /* Aumentar ícone já que o texto está escondido */
        line-height: 1;
    }

    header .help .bug-text {
        font-size: 8px;
        font-weight: 600;
        line-height: 1;
        display: none;
        /* Esconder em telas pequenas */
    }

    #main {
        top: 80px;
        /* Ajustado para novo header */
        width: 100%;
        height: calc(100% - 80px);
        /* padding: 10px; */
    }

    aside {
        display: none;
    }

    #feed {
        padding: 20px 15px;
        /* box-shadow: 0 5px 0 var(--primary-dark); */
        flex-direction: column;
        align-items: flex-start;
    }

    #feed .icon {
        margin-bottom: 10px;
    }

    #feed .msg {
        font-size: 16px;
        margin-bottom: 15px;
        width: 100%;
    }

    #feed button {
        width: 100%;
        margin-top: 5px;
        font-size: 16px;
    }

    .voltar {
        bottom: 8px;
        left: 8px;
        width: 50px;
        height: 50px;
    }

    .btn-novamente {
        width: 100%;
        margin-top: 10px;
    }

    .mascote {
        bottom: 80px;
        right: 20px;
        width: 80px;
        height: 80px;
    }

    .mascote-balloon {
        width: 180px;
        font-size: 14px;
        top: -70px;
    }
}

/* Modal de Stickers - Design Renovado */
.stickers-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.stickers-modal.active {
    opacity: 1;
    visibility: visible;
}

.stickers-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stickers-modal-header {
    flex-shrink: 0;
    /* Header fixo, não encolhe */
}

.stickers-modal-body {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f9fafb;
}

/* Personalizar scrollbar */
.stickers-modal-body::-webkit-scrollbar {
    width: 6px;
}

.stickers-modal-body::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.stickers-modal-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.stickers-modal-body::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Indicador de scroll (sombra gradiente no topo/bottom) */
.stickers-modal-body {
    background:
        /* Sombra superior quando há scroll */
        linear-gradient(white 30%, rgba(255, 255, 255, 0)) 0 0/100% 20px,
        /* Sombra inferior quando há scroll */
        linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%/100% 20px,
        /* Background do modal */
        linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    background-repeat: no-repeat;
    background-attachment: local, local, scroll;

    /* Scroll suave */
    scroll-behavior: smooth;
}

/* Para navegadores que não suportam webkit-scrollbar */
.stickers-modal-body {
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(102, 126, 234, 0.1);
}

/* Indicadores visuais quando há scroll disponível */
.stickers-modal-body.has-scroll:not(.scroll-at-top)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.1), transparent);
    pointer-events: none;
    z-index: 10;
}

.stickers-modal-body.has-scroll:not(.scroll-at-bottom)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.1), transparent);
    pointer-events: none;
    z-index: 10;
}

/* Adicionar posição relativa ao modal body para os pseudo-elementos */
.stickers-modal-body {
    position: relative;
}

/* Estilo para quando o modal tem scroll */
.stickers-modal-body.has-scroll {
    /* Adicionar um border sutil para indicar área rolável */
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
}

/* Dica de scroll */
.scroll-hint {
    position: sticky;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    animation: scrollHintPulse 2s ease-in-out infinite;
    margin-top: 20px;
    transition: opacity 0.3s ease;
    pointer-events: none;
    width: fit-content;
    white-space: nowrap;
}

@keyframes scrollHintPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }
}



.stickers-modal.active .stickers-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.stickers-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 24px 32px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 2;
}

.stickers-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    letter-spacing: -0.025em;
}

.stickers-modal-title::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%236366f1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9H4.5a2.5 2.5 0 0 1 0-5H6"/><path d="M18 9h1.5a2.5 2.5 0 0 0 0-5H18"/><path d="M4 22h16"/><path d="M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22"/><path d="M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22"/><path d="M18 2H6v7a6 6 0 0 0 12 0V2Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

@keyframes titleIcon {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.stickers-modal-close {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    color: #6b7280;

    img {
        width: 20px !important;
        height: 20px !important;
        transition: transform 0.2s ease;
        margin: 0;
        filter: none;
    }
}

.stickers-modal-close:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.stickers-modal-close:hover img {
    transform: scale(1.2);
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    padding: 0;
}

.sticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: 3px solid #ffffff;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 0;
    min-height: 250px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
    }
}

.sticker-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.sticker-item::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    z-index: 1;
}

.sticker-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.8);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: 1;
}

.sticker-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    margin: 0;
    width: 100%;
    border-bottom: 2px solid #ffffff;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticker-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticker-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    border: 2px solid #10b981;
}

.sticker-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.sticker-icon {
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.sticker-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sticker-footer {
    /* background: #8b5cf6; */
    padding: 16px 20px;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.sticker-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticker-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Removidos estilos de progresso - não são mais necessários */

.sticker-item.locked {
    cursor: not-allowed;
    position: relative;
    /* animation: pulse 2s ease-in-out infinite; */

    .sticker-title {
        display: none;
    }
}

.sticker-item.locked::before {
    background: rgba(139, 92, 246, 0.5) !important;
}

.sticker-item.locked::after {
    background: rgba(236, 72, 153, 0.5) !important;
}

.sticker-item.locked:hover {
    opacity: 0.8;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

.sticker-item.collected {
    cursor: pointer;
    border-color: #ffffff;
}

.sticker-item.collected:hover {
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(16, 185, 129, 0.2);
    border-color: #00fff2;
}

.sticker-item.collected::after {
    /* Removemos o checkmark para manter o design clean */
}



/* Overview da coleção */
.collection-overview {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

.overview-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.overview-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.overview-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 16px;
    /* border-radius: 12px; */
    /* background: #f9fafb; */
    /* border: 1px solid #e5e7eb; */
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.collection-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmerCollection 4s ease-in-out infinite;
}

@keyframes shimmerCollection {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.progress-numbers {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.15);
    height: 16px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    background: linear-gradient(90deg, #ffffff 0%, #f8faff 50%, #e0e7ff 100%);
    height: 100%;
    border-radius: 12px;
    transition: width 2s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.progress-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.progress-percentage {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.progress-details {
    text-align: center;
    font-size: 14px;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    word-break: break-word;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sticker-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* border: 2px dashed rgba(108, 117, 125, 0.3); */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    font-size: 48px;
    color: #adb5bd;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sticker-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 8px,
            rgba(108, 117, 125, 0.03) 8px,
            rgba(108, 117, 125, 0.03) 16px);
    border-radius: inherit;
}

/* Efeito de zoom para stickers */
.sticker-zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stickerZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticker-zoom-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.sticker-zoom-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.sticker-zoom-content img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: stickerBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.sticker-zoom-content h3 {
    margin: 15px 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticker-zoom-content p {
    margin: 0;
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

@keyframes stickerZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes stickerBounce {
    0% {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .stickers-grid {
        grid-template-columns: 1fr;
    }

    .stickers-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .stickers-modal-header {
        padding: 20px 24px;
    }

    .stickers-modal-body {
        padding: 24px;
    }

    .stickers-modal-title {
        font-size: 20px;
    }

    .overview-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stickers-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .sticker-item {
        padding: 20px;
        gap: 12px;
    }

    .stickers-modal-header {
        padding: 16px 20px;
    }

    .stickers-modal-body {
        padding: 20px;
    }

    .stickers-modal-title {
        font-size: 18px;
    }

    .overview-header h2 {
        font-size: 18px;
    }
}

.sticker {
    /* position: relative; */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sticker:hover {
    transform: scale(1.1);
}

.sticker::after {
    content: "Ver coleção";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: white;
    white-space: nowrap;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4px 8px;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1010;
    /* Bem acima de tudo */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.sticker::after::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #667eea;
}

.sticker:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* Indicador de Pré-visualização */
.preview-indicator {
    position: fixed;
    top: 75px;
    right: 20px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1001;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: previewPulse 2s infinite ease-in-out;
}

@keyframes previewPulse {

    0%,
    100% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@media only screen and (max-width: 768px) {
    .preview-indicator {
        top: 80px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Media query para telas muito pequenas */
@media only screen and (max-width: 480px) {
    .placar {
        gap: 4px;
        /* Reduzir espaçamento */
    }

    .sticker,
    .moeda {
        padding: 3px 4px;
        /* Diminuir padding ainda mais */
        min-width: 30px;
        /* Largura mínima */
    }

    .sticker img,
    .moeda img {
        height: 18px;
        /* Diminuir ícones */
    }

    .moeda-pontos,
    .sticker-pontos {
        font-size: 10px;
        /* Fonte ainda menor */
    }

    header .help {
        min-width: 30px;
        height: 30px;
        padding: 2px 4px;
    }

    header .help .bug-icon {
        font-size: 14px;
    }

    .barra {
        width: 100%;
        height: 4px;
        /* Mais fina em telas muito pequenas */
    }

    .barra:hover {
        height: 6px;
        /* Crescimento menor em telas pequenas */
    }

    .barra-inner::before {
        font-size: 10px;
        /* Tooltip ainda menor */
        top: -20px;
        padding: 8px 5px;
    }

    /* Ajustes específicos para modal de termos em telas pequenas */
    #termos-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        padding: 12px 16px;
        max-height: calc(100vh - 20px);
        font-size: 14px;
    }

    #termos-popup * {
        font-size: 14px;
    }

    #termos-btn {
        margin-top: 12px;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Ajustes específicos para orientação landscape em mobile */
@media only screen and (max-height: 500px) and (orientation: landscape) {
    #termos-popup {
        bottom: 10px;
        max-height: calc(100vh - 20px);
        padding: 10px 15px;
    }

    #termos-btn {
        margin-top: 8px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ==============================================
   MODAL DE CELEBRAÇÃO DE NOVO STICKER
   ============================================== */

.sticker-celebration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    pointer-events: none;
    overflow: hidden;
}

.sticker-celebration-modal.active {
    display: block;
    pointer-events: all;
}

.celebration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(46, 217, 226, 0.15) 0%,
            rgba(152, 56, 248, 0.25) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
}

/* ==============================================
   EFEITOS DE PARTÍCULAS
   ============================================== */

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.confetti-container::before,
.confetti-container::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    animation: confettiFall 3s linear infinite;
}

.confetti-container::before {
    left: 10%;
    animation-delay: 0s;
    background: var(--tertiary);
}

.confetti-container::after {
    left: 30%;
    animation-delay: 0.5s;
    background: var(--accent-1);
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stars-container::before,
.stars-container::after {
    content: '⭐';
    position: absolute;
    font-size: 20px;
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

.stars-container::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.stars-container::after {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0% {
        transform: scale(0.5) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* ==============================================
   CONTEÚDO PRINCIPAL
   ============================================== */

.celebration-content {
    position: relative;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    border-radius: 32px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: calc(100vh - 60px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: celebrationEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    margin: auto;
    flex-shrink: 0;
}

/* Estilização da barra de rolagem do modal de celebração */
.celebration-content::-webkit-scrollbar {
    width: 8px;
}

.celebration-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.celebration-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.celebration-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

@keyframes celebrationEntrance {
    0% {
        transform: scale(0.3) translateY(100px) rotate(-10deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) translateY(-20px) rotate(5deg);
    }

    100% {
        transform: scale(1) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

/* ==============================================
   HEADER DA CELEBRAÇÃO
   ============================================== */

.celebration-header {
    margin-bottom: 30px;
}

.celebration-badge {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--tertiary-dark) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 8px 16px rgba(255, 209, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--tertiary), var(--primary));
    border-radius: 50px;
    opacity: 0.6;
    filter: blur(8px);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* ==============================================
   SHOWCASE DO STICKER
   ============================================== */

.celebration-main {
    margin-bottom: 8px;
}

.sticker-showcase {
    margin-bottom: 25px;
}

.sticker-frame {
    position: relative;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 50%;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1),
        inset 0 5px 10px rgba(255, 255, 255, 0.8);
    animation: stickerReveal 1s ease-out 0.3s both;
}

@keyframes stickerReveal {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(-90deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(var(--primary),
            var(--tertiary),
            var(--secondary),
            var(--accent-1),
            var(--primary));
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(15px);
    z-index: -1;
    animation: frameRotate 4s linear infinite;
}

@keyframes frameRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sticker-image-container {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.celebration-sticker-img {
    width: 156px;
    height: 156px;
    object-fit: cover;
    border-radius: 12px;
    animation: stickerFloat 3s ease-in-out infinite;
}

@keyframes stickerFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-4px) rotate(2deg);
    }
}

/* Sparkles ao redor do sticker */
.sticker-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--tertiary) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleAnimation 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.4s;
}

.sparkle-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 0.8s;
}

.sparkle-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.2s;
}

.sparkle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 1.6s;
}

@keyframes sparkleAnimation {

    0%,
    100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* ==============================================
   TEXTO DA CELEBRAÇÃO
   ============================================== */

.celebration-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: titleBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

@keyframes titleBounce {
    0% {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.sticker-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 8px;
    animation: slideInFromLeft 0.6s ease-out 0.7s both;
}

.celebration-description {
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 0;
    animation: slideInFromRight 0.6s ease-out 0.9s both;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==============================================
   ESTATÍSTICAS
   ============================================== */

.celebration-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    /* padding: 20px; */
    animation: statsSlideUp 0.6s ease-out 1.1s both;
}

@keyframes statsSlideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.celebration-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.celebration-stats .stat-icon {
    font-size: 28px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.celebration-stats .stat-info {
    text-align: left;
}

.celebration-stats .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.celebration-stats .stat-label {
    font-size: 12px;
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==============================================
   BOTÕES DE AÇÃO
   ============================================== */

.celebration-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: actionsSlideUp 0.6s ease-out 1.3s both;
}

@keyframes actionsSlideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-celebration-advance {
    position: relative;
    background: linear-gradient(135deg, var(--feedback-positivo), var(--feedback-positivo-dark));
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 16px rgba(93, 213, 97, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-celebration-advance:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 24px rgba(93, 213, 97, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-celebration-understand {
    background: transparent;
    color: var(--neutral-600);
    border: 2px solid var(--neutral-400);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        background: var(--neutral-200);
        color: var(--neutral-800);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(175, 175, 175, 0.3);
        border-color: var(--neutral-400);
    }
}

.btn-celebration-understand:hover {
    background: var(--neutral-800);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(175, 175, 175, 0.3);
}

/* ==============================================
   EFEITO DE RAIOS
   ============================================== */

.rays-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform-origin: center bottom;
    animation: rayRotate 8s linear infinite;
}

.ray-1 {
    transform: translate(-50%, -100%) rotate(0deg);
}

.ray-2 {
    transform: translate(-50%, -100%) rotate(60deg);
}

.ray-3 {
    transform: translate(-50%, -100%) rotate(120deg);
}

.ray-4 {
    transform: translate(-50%, -100%) rotate(180deg);
}

.ray-5 {
    transform: translate(-50%, -100%) rotate(240deg);
}

.ray-6 {
    transform: translate(-50%, -100%) rotate(300deg);
}

@keyframes rayRotate {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.3;
    }
}

/* ==============================================
   RESPONSIVIDADE
   ============================================== */

@media (max-width: 768px) {
    .celebration-overlay {
        align-items: flex-start;
        padding: 10px 0;
    }

    .celebration-content {
        padding: 25px 20px;
        margin: 10px;
        max-height: calc(100vh - 20px);
        width: calc(100% - 20px);
    }

    .celebration-title {
        font-size: 32px;
    }

    .sticker-frame {
        padding: 15px;
    }

    .sticker-image-container {
        width: 120px;
        height: 120px;
    }

    .celebration-sticker-img {
        width: 100px;
        height: 100px;
    }

    .celebration-actions {
        flex-direction: column;
        margin-top: 10px;
    }

    .btn-celebration-advance,
    .btn-celebration-understand {
        width: 100%;
    }

    .celebration-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin: 20px 0;
    }

    .celebration-stats .stat-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .celebration-overlay {
        padding: 5px 0;
    }

    .celebration-content {
        padding: 20px 15px;
        margin: 5px;
        max-height: calc(100vh - 10px);
        width: calc(100% - 10px);
    }

    .celebration-title {
        font-size: 28px;
    }

    .sticker-name {
        font-size: 20px;
    }

    .celebration-description {
        font-size: 14px;
    }

    .celebration-header {
        margin-bottom: 20px;
    }

    .celebration-main {
        margin-bottom: 0px;
    }

    .celebration-stats {
        margin: 15px 0;
        padding: 15px;
    }
}

/* Ajustes específicos para telas de altura muito baixa (landscape mobile) */
@media (max-height: 600px) {
    .celebration-overlay {
        align-items: flex-start;
        padding: 5px 0;
    }

    .celebration-content {
        max-height: calc(100vh - 100px);
        padding: 20px;
    }

    .celebration-header {
        margin-bottom: 15px;
    }

    .celebration-main {
        margin-bottom: 15px;
    }

    .sticker-frame {
        padding: 10px;
    }

    .sticker-image-container {
        width: 100px;
        height: 100px;
    }

    .celebration-sticker-img {
        width: 80px;
        height: 80px;
    }

    .celebration-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .celebration-stats {
        margin: 10px 0;
        padding: 15px;
    }

    .celebration-actions {
        margin-top: 10px;
    }
}