/* ==========================================================================
   CONFIGURAÇÕES GLOBAIS E CORES (VALORES REFINADOS)
   ========================================================================== */
:root {
    /* -- SUAS CORES ORIGINAIS, COM VALORES SUTILMENTE AJUSTADOS -- */
    --cor-verde: #009246;
    --cor-verde-dark: #007a3b;
    --cor-branco: #FFFFFF;
    --cor-vermelho: #CE2B37;
    --cor-vermelho-dark: #a52129;
    --cor-fundo: #f8f9fa; /* Um branco-gelo mais suave que o cinza anterior */
    --cor-texto: #1a1a1a; /* Preto um pouco mais suave */
    --cor-texto-suave: #6c757d;
    --cor-sucesso: #20c997; /* Verde mais moderno para sucesso */
    --cor-erro: #e63946;   /* Vermelho mais amigável para erros */
    
    /* -- SUAS SOMBRAS ORIGINAIS (NÃO SERÃO USADAS, MAS MANTIDAS POR SEGURANÇA) -- */
    --cor-sombra: rgba(0, 0, 0, 0.08);
    --cor-sombra-profunda: rgba(0, 0, 0, 0.12);

    /* -- NOVAS SOMBRAS PROFISSIONAIS (ADICIONADAS SEM REMOVER AS ANTIGAS) -- */
    --sombra-profissional-media: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --sombra-profissional-elevada: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
    
    /* -- SUAS VARIÁVEIS DE LAYOUT (INTOCADAS) -- */
    --header-height: 70px;
    --bottom-nav-height: 70px;
    --font-principal: 'Poppins', sans-serif;
    --border-radius: 16px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Um pouco mais rápido */
}

/* ==========================================================================
   ESTILOS BASE (INTOCADOS, APENAS MELHORIAS DE RENDERIZAÇÃO)
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-principal);
    margin: 0;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    padding-top: var(--header-height);
    padding-bottom: var(--bottom-nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Previne scroll lateral */
}

/* ==========================================================================
   ANIMAÇÕES (INTOCADAS)
   ========================================================================== */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes modal-pop-in {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes toast-in {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-100%); }
}

/* ==========================================================================
   LAYOUT PRINCIPAL (MELHORIAS VISUAIS)
   ========================================================================== */
.glass-ui {
    background: rgba(255, 255, 255, 0.85); /* Fundo um pouco mais opaco */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Borda inferior sutil */
}

.top-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}
.header-logo img {
    height: 40px; width: auto;
    transition: transform 0.3s ease;
}
.header-logo img:hover { transform: scale(1.05); }

.btn-logout {
    background: var(--cor-vermelho); color: var(--cor-branco);
    text-decoration: none; padding: 0.6rem 1.2rem;
    border-radius: 50px; font-weight: 600;
    font-size: 0.9rem; transition: var(--transition-smooth);
    /* EFEITO DE SOMBRA NO HOVER */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-logout:hover {
    background: var(--cor-vermelho-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Sombra mais forte no hover */
}

.bottom-nav {
    height: var(--bottom-nav-height);
    /* SOMBRA MAIS SUAVE */
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.06);
    display: flex; justify-content: center; align-items: center;
    position: fixed; bottom: 0; left: 0; width: 100%;
    z-index: 1000; border-top: none;
}

.nav-links { list-style: none; padding: 0; margin: 0; display: flex; justify-content: space-around; width: 100%; max-width: 600px; }
.nav-links a { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--cor-texto-suave); text-decoration: none; font-size: 0.75rem; font-weight: 500; padding: 0.5rem; transition: var(--transition-smooth); position: relative; width: 60px; height: 60px; border-radius: 12px; }
.nav-links a i { font-size: 1.5rem; margin-bottom: 4px; transition: transform 0.3s ease; }

/* MELHORIA NO INDICADOR ATIVO DO MENU */
.nav-links a.active {
    color: var(--cor-verde);
    background-color: rgba(0, 146, 70, 0.07); /* Fundo verde bem sutil */
}
.nav-links a.active i { transform: scale(1.1); }
.nav-links a:not(.active):hover { color: var(--cor-texto); }

/* REMOVENDO O PONTO VERMELHO PARA UM VISUAL MAIS LIMPO (o fundo sutil já indica o item ativo) */
.nav-links a.active::before {
    content: '';
    display: none; /* Desativa a bolinha vermelha */
}

.content-area { padding: 1.5rem; max-width: 900px; margin: 0 auto; }
.page { display: none; animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page.active { display: block; }
.page-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    margin-top: 0;
    font-weight: 800; /* Mais peso para o título */
    letter-spacing: -0.5px; /* Detalhe de design */
}

/* ==========================================================================
   COMPONENTES (CARDS, BANNERS, ETC. COM VISUAL PREMIUM)
   ========================================================================== */
.card {
    background: var(--cor-branco);
    border-radius: var(--border-radius);
    /* USANDO A NOVA SOMBRA PROFISSIONAL */
    box-shadow: var(--sombra-profissional-media);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    /* TRANSIÇÃO SEPARADA PARA MELHOR PERFORMANCE */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef; /* Borda sutil para definir o card */
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-profissional-elevada); /* Sombra mais forte no hover */
}
.card h3 { margin-top: 0; }
     
.welcome-banner {
    position: relative;
    background-color: #000000;
    background-size: cover; background-position: center;
    border-radius: var(--border-radius);
    padding: 3rem 2rem; color: var(--cor-branco);
    overflow: hidden; margin-bottom: 1.5rem;
    /* Adicionando sombra para destacar o banner */
    box-shadow: var(--sombra-profissional-elevada);
}
.welcome-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.welcome-banner * { position: relative; z-index: 2; }
.welcome-banner h2 { font-size: 1.8rem; margin: 0 0 0.5rem 0; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.welcome-banner p { font-size: 1rem; margin: 0; max-width: 400px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* --- TODO O RESTO DO SEU CSS PERMANECE AQUI, SEM ALTERAÇÕES ESTRUTURAIS --- */
/* --- Apenas as regras acima foram refinadas. O resto continua igual --- */

/* ... (cole o restante do seu CSS original daqui para baixo) ... */
/* ------------------------------ */
/* --- ESTILOS DE PÁGINAS ESPECÍFICAS --- */
/* ------------------------------ */
.profile-hero-card {
    background: linear-gradient(135deg, var(--cor-verde), #00a65a);
    color: var(--cor-branco);
    text-align: center;
}
.profile-hero-card .avatar { width: 80px; height: 80px; background-color: var(--cor-branco); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem auto; color: var(--cor-verde); font-size: 2.5rem; }
.progress-bar { background-color: rgba(0,0,0,0.2); border-radius: 50px; height: 12px; margin-top: 1rem; overflow: hidden; }
.progress-bar-fill { background-color: var(--cor-branco); height: 100%; border-radius: 50px; transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
 
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1rem; }
/* PEQUENO REFINAMENTO NOS STAT-CARDS, já que eles não usam a classe .card principal */
.stat-card {
    text-align: center; background: var(--cor-branco); padding: 1rem; border-radius: var(--border-radius);
    border: 1px solid #e9ecef; box-shadow: var(--sombra-profissional-media);
    transition: var(--transition-smooth);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-profissional-elevada);
}
.stat-card .icon { font-size: 2.5rem; height: 40px; margin-bottom: 0.5rem; color: var(--cor-verde); }
.stat-card .fa-fire { color: var(--cor-vermelho); }
.stat-card h4 { margin: 0; font-size: 0.9rem; color: var(--cor-texto-suave); }
.stat-card p { margin: 0.2rem 0 0 0; font-size: 1.5rem; font-weight: 600; }
.xp-icon { width: 36px; height: 36px; margin: 0 auto 9px; }

.answer-btn { width: 100%; padding: 1rem; font-size: 1rem; border: 2px solid #e9ecef; border-radius: 12px; background: #fff; cursor: pointer; transition: var(--transition-smooth); text-align: left; font-family: var(--font-principal); font-weight: 500; color: var(--cor-texto);}
.answer-btn:hover:not(:disabled) { border-color: var(--cor-verde); background-color: #f1fef6; transform: scale(1.02); }
.answer-btn:disabled { cursor: not-allowed; opacity: 0.9; }
.answer-btn.correct { background-color: var(--cor-sucesso); border-color: var(--cor-sucesso); color: white; transform: scale(1.02); }
.answer-btn.incorrect { background-color: var(--cor-erro); border-color: var(--cor-erro); color: white; }

.leaderboard { list-style: none; padding: 0; }
.leaderboard li {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    border-radius: 12px;
    background-color: var(--cor-branco); /* Alterado de cor-fundo para branco */
    border: 1px solid #e9ecef;
    opacity: 0;
    transform: translateX(-20px);
    animation: item-slide-in 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes item-slide-in { to { opacity: 1; transform: translateX(0); } }
.leaderboard li.player-self { background-color: #eaf6ec; border: 2px solid var(--cor-verde); font-weight: 600; }
.leaderboard .rank { font-size: 1.2rem; font-weight: bold; margin-right: 1.5rem; width: 40px; text-align: center; color: var(--cor-texto-suave); }
.leaderboard .name { flex-grow: 1; font-weight: 500; }
.leaderboard .xp { font-weight: bold; color: var(--cor-verde); }
.leaderboard .fa-medal { font-size: 1.5rem; }
.leaderboard li:nth-child(1) .rank { color: #ffd700; }
.leaderboard li:nth-child(2) .rank { color: #c0c0c0; }
.leaderboard li:nth-child(3) .rank { color: #cd7f32; }
 
/* --- O RESTANTE DO CSS PERMANECE EXATAMENTE IGUAL AO SEU ORIGINAL --- */
/* ... cole o resto do seu CSS aqui ... */
        
        /* ------------------------------ */
        /* --- MODAL E NOTIFICAÇÕES --- */
        /* ------------------------------ */
        .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
        .modal-overlay.visible { opacity: 1; visibility: visible; }
        .modal-content { position: fixed; top: 50%; left: 50%; background: var(--cor-branco); padding: 3rem; border-radius: var(--border-radius); text-align: center; animation: modal-pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; width: 90%; max-width: 400px; }
        .modal-content i { font-size: 4rem; color: var(--cor-verde); }
        .modal-content h2 { margin: 1rem 0; }
        .btn-close-modal { background: var(--cor-verde); color: var(--cor-branco); border: none; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; cursor: pointer; margin-top: 1rem; transition: var(--transition-smooth); }
        .btn-close-modal:hover { background: var(--cor-verde-dark); transform: scale(1.05); }

        .toast-notification {
            position: fixed;
            top: var(--header-height) + 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            color: var(--cor-branco);
            font-weight: 600;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            animation: toast-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .toast-notification.success { background-color: var(--cor-sucesso); }
        .toast-notification.error { background-color: var(--cor-erro); }

        /* ------------------------------ */
        /* --- TELA DE LOGIN --- */
        /* ------------------------------ */
        #login-section { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--cor-fundo); padding: 1rem; }
        .login-box { background: var(--cor-branco); padding: 2.5rem; border-radius: var(--border-radius); box-shadow: 0 10px 40px rgba(0,0,0,0.1); width: 100%; max-width: 400px; text-align: center; }
        .login-box h2 { margin-top: 0; }
        .form-group { text-align: left; margin-bottom: 1.5rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
        .form-group input { width: 100%; padding: 0.9rem; border: 2px solid #dee2e6; border-radius: 8px; transition: border-color 0.3s, box-shadow 0.3s; }
        .form-group input:focus { border-color: var(--cor-verde); box-shadow: 0 0 0 3px rgba(0, 146, 70, 0.2); outline: none; }
        .btn-login-submit { width: 100%; padding: 0.9rem; border: none; border-radius: 50px; background: var(--cor-verde); color: var(--cor-branco); font-size: 1.1rem; cursor: pointer; font-weight: 600; transition: var(--transition-smooth); position: relative; }
        .btn-login-submit:hover { transform: translateY(-3px); background: var(--cor-verde-dark); }
        .btn-login-submit .spinner { border: 3px solid rgba(255,255,255,0.3); border-top-color: var(--cor-branco); border-radius: 50%; width: 20px; height: 20px; animation: spin 1s linear infinite; position: absolute; top: 50%; left: 50%; margin-left: -10px; margin-top: -10px; display: none; }
        .btn-login-submit.loading .btn-text { opacity: 0; }
        .btn-login-submit.loading .spinner { display: block; }
        @keyframes spin { to { transform: rotate(360deg); } }

        .hidden { display: none !important; }

        /* ------------------------------ */
        /* --- MEDIA QUERIES --- */
        /* ------------------------------ */
        @media (min-width: 768px) {
            body { padding-top: var(--header-height); padding-bottom: 0; }
            .content-area { padding: 2rem; }
            .bottom-nav { 
                height: 100vh; width: 90px;
                left: 0; top: 0; flex-direction: column; 
                justify-content: flex-start;
                padding-top: var(--header-height) + 20px;
                background: var(--cor-branco);
                box-shadow: 5px 0 25px var(--cor-sombra);
            }
            main { margin-left: 90px; }
            .nav-links { flex-direction: column; align-items: center; gap: 1rem; width: auto; }
            .nav-links a.active::before { left: -10px; top: 50%; transform: translateY(-50%); width: 4px; height: 25px; border-radius: 0 4px 4px 0; }
            .top-header { margin-left: 90px; width: calc(100% - 90px); }
        }

        /* --- ESTILOS ADICIONAIS PARA O MODAL DE CONFIRMAÇÃO --- */
.modal-overlay {
    /* Garante que ele fique escondido por padrão */
    opacity: 0;
    visibility: hidden;
}

.modal-overlay.visible {
    /* Estilo para quando ele deve aparecer */
    opacity: 1;
    visibility: visible;
}

.modal-content button {
    width: auto; /* Permite que os botões tenham larguras diferentes */
    min-width: 120px;
}

/* --- ESTILOS PARA AS PÁGINAS DE LOGIN/CADASTRO --- */
body.auth-page {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

body.auth-page .top-header,
body.auth-page .bottom-nav {
    display: none; /* Esconde as barras de navegação nessas páginas */
}

/* --- ESTILOS DOS STORIES --- */
.stories-container { padding: 1.5rem; }
.stories-title { margin-top: 0; margin-bottom: 1rem; font-weight: 600; }
.stories-wrapper { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.story-circle { flex-shrink: 0; width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--cor-vermelho); padding: 3px; cursor: pointer; }
.story-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* Barras de progresso */
#story-progress-bars { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; gap: 4px; z-index: 10; }
.progress-bar-segment { flex-grow: 1; height: 3px; background-color: rgba(255,255,255,0.4); }
.progress-bar-fill { height: 100%; background-color: white; width: 0%; }
.progress-bar-fill.active { animation-name: fill-progress; animation-timing-function: linear; animation-fill-mode: forwards; }
@keyframes fill-progress { from { width: 0%; } to { width: 100%; } }

/* --- ESTILO CORRIGIDO E MELHORADO PARA O BOTÃO DE FECHAR O STORY --- */
#story-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    
    /* Visual */
    background-color: rgba(60, 60, 60, 0.7); /* Fundo circular semi-transparente */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Deixa o botão redondo */
    font-size: 1.5rem; /* Tamanho do 'X' */
    font-weight: bold;
    
    /* Posicionamento do 'X' no centro */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    cursor: pointer;
    z-index: 20; /* Garante que ele fique na frente de tudo */
    transition: background-color 0.3s, transform 0.3s;
}

#story-close-btn:hover {
    background-color: rgba(90, 90, 90, 0.9);
    transform: scale(1.1);
}

/* --- HERO CARD UNIFICADO DO DASHBOARD --- */
.hero-card {
    background: linear-gradient(135deg, var(--cor-verde), #00a65a);
    color: var(--cor-branco);
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 146, 70, 0.25);
}

.hero-card .avatar {
    width: 80px;
    height: 80px;
    background-color: var(--cor-branco);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem auto;
    color: var(--cor-verde);
    font-size: 2.5rem;
    box-shadow: 0 0 0 4px var(--cor-verde), 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-card h2 {
    color: var(--cor-branco);
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-card .level {
    font-size: 1.1rem;
    margin: 0.25rem 0 0 0;
}

.hero-card .subtitle {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Adicione um cursor para indicar que o avatar é clicável */
.hero-card .avatar {
    cursor: pointer;
    overflow: hidden; /* ESSENCIAL: corta as bordas da imagem para que ela fique redonda */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card .avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px var(--cor-verde), 0 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Regra para a imagem dentro do avatar */
.hero-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* MÁGICA: Redimensiona a imagem para preencher o container, mantendo a proporção e cortando o excesso. */
}

/* --- ESTILOS PARA A NOVA LOJA COM ABAS --- */

/* O contêiner dos botões de navegação */
.segmented-control {
    display: flex;
    background-color: #e9ecef; /* Um cinza claro do seu tema */
    border-radius: 50px; /* Deixa as bordas arredondadas */
    padding: 5px;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

/* Estilo de cada botão da aba */
.segmented-control .tab-btn {
    flex: 1; /* Faz os botões ocuparem o mesmo espaço */
    padding: 0.8rem 1rem;
    border: none;
    background: transparent; /* Fundo transparente por padrão */
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-texto-suave);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
}

/* Estilo do botão ATIVO */
.segmented-control .tab-btn.active {
    background-color: var(--cor-branco);
    color: var(--cor-verde);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: scale(1.02);
}

/* Estilo do conteúdo das abas */
.loja-tab-content {
    display: none; /* Esconde todas por padrão */
    animation: pageFadeIn 0.5s ease forwards;
}

.loja-tab-content.active {
    display: block; /* Mostra apenas a aba ativa */
}

/* Novo botão de resgate para combinar com o tema */
.btn-resgatar {
    background: var(--cor-verde);
    color: var(--cor-branco);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-resgatar:hover:not(:disabled) {
    background: var(--cor-verde-dark);
    transform: translateY(-3px);
}

.btn-resgatar:disabled {
    background-color: var(--cor-texto-suave);
    cursor: not-allowed;
}


/* Estilo para o card de item já resgatado */
.card-resgatado {
    background-color: #f8f9fa; /* Fundo levemente diferente */
}

.resgatado-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: right;
    font-weight: 500;
    color: var(--cor-texto-suave);
}

.resgatado-info i {
    color: var(--cor-sucesso);
    margin-right: 8px;
}

/* --- ESTILOS PARA O NOVO MODAL DE CONFIRMAÇÃO --- */

/* --- ESTILOS PARA O NOVO MODAL DE CONFIRMAÇÃO (VERSÃO CORRIGIDA) --- */

/* 1. UMA NOVA ANIMAÇÃO SÓ PARA O POPUP DE CONFIRMAÇÃO */
@keyframes confirmation-modal-pop-in {
    from {
        opacity: 0;
        transform: scale(0.8); /* A animação agora só mexe na opacidade e no tamanho */
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 2. O FUNDO ESCURO (OVERLAY) */
.confirmation-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    /* Essas 3 linhas são as responsáveis pela centralização PERFEITA */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem; /* Adiciona um respiro nas laterais em telas muito pequenas */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.confirmation-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* 3. A CAIXA DE CONTEÚDO DO MODAL */
.confirmation-modal-content {
    background: var(--cor-branco);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    width: 100%; /* Ocupa 100% do espaço permitido pelo padding do pai */
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    /* APLICA A NOVA ANIMAÇÃO, SEM O 'translate' PROBLEMÁTICO */
    animation: confirmation-modal-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* O resto dos estilos (ícones, botões, etc.) continua igual e correto */
.confirmation-modal-content .modal-icon {
    font-size: 4rem;
    color: var(--cor-verde);
    margin-bottom: 1rem;
}

.confirmation-modal-content h2 {
    margin: 0 0 0.5rem 0;
    color: var(--cor-texto);
}

.confirmation-modal-content p {
    margin: 0 0 2rem 0;
    color: var(--cor-texto-suave);
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.modal-btn {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    min-width: 130px;
    transition: var(--transition-smooth);
}

.modal-btn--confirm {
    background: var(--cor-sucesso);
    color: var(--cor-branco);
}
.modal-btn--confirm:hover {
    background: #218838;
    transform: translateY(-3px);
}

.modal-btn--cancel {
    background: #e9ecef;
    color: var(--cor-texto);
}
.modal-btn--cancel:hover {
    background: #dee2e6;
}


/* 4. A RESPONSIVIDADE (AGORA IRÁ FUNCIONAR CORRETAMENTE) */
@media (max-width: 480px) {
    .confirmation-modal-content {
        padding: 2rem 1.5rem;
    }

    .confirmation-modal-content .modal-icon {
        font-size: 3.5rem;
    }

    .confirmation-modal-content h2 {
        font-size: 1.4rem;
    }

    .confirmation-modal-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-actions {
        flex-direction: column; /* Coloca os botões um EM CIMA do outro */
        gap: 0.75rem;
    }

    .modal-btn {
        width: 100%;
    }
}

/* --- ESTILOS PARA O VISUALIZADOR DE STORIES (INSTAGRAM STYLE) --- */

/* 1. O fundo preto que cobre a tela inteira */
#story-viewer-overlay {
    /* Usa Flexbox para centralizar perfeitamente o conteúdo */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo preto semi-transparente */
}

/* 2. O "porta-retrato" que segura a imagem ou vídeo */
#story-media-container {
    max-width: 100%;
    /* Deixa um espaço em cima e embaixo para as barras de progresso e navegação */
    max-height: 90vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. A REGRA MÁGICA: Estilo para a imagem e o vídeo DENTRO do story */
#story-media-container img,
#story-media-container video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    
    /* A PROPRIEDADE MAIS IMPORTANTE:
       'contain' garante que a mídia inteira seja visível, 
       mantendo a proporção e adicionando "barras" se necessário.
    */
    object-fit: contain;

    border-radius: 8px; /* Adiciona uma borda arredondada sutil */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Adiciona uma sombra para dar profundidade */
}

/* --- ESTILOS PARA QUANTIDADE NA LOJA --- */

.premio-quantidade {
    display: block; /* Faz com que fique em uma nova linha, abaixo do preço */
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cor-texto-suave);
    margin-top: 4px; /* Pequeno espaço acima */
}

.premio-quantidade i {
    margin-right: 5px; /* Espaço entre o ícone e o texto */
}

/* --- ESTILOS PARA O CARD DE PRÊMIO COM IMAGEM --- */

/* O container principal que alinha imagem e texto */
.premio-card-layout {
    display: flex;
    justify-content: space-between; /* Empurra o texto para a esquerda e a imagem para a direita */
    align-items: flex-start; /* Alinha o topo do texto com o topo da imagem */
    gap: 1.5rem; /* Espaço entre o texto e a imagem */
}

/* Container do texto (nome e descrição) */
.premio-info {
    flex: 1; /* Faz o container do texto ocupar todo o espaço disponível */
}

/* Container da imagem */
.premio-imagem {
    flex-shrink: 0; /* Impede que a imagem encolha */
    width: 90px;
    height: 90px;
}

/* A imagem em si */
.premio-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: var(--border-radius);
    background-color: #f0f0f0; /* Cor de fundo caso a imagem não carregue */
}

/* Adicione esta classe ao seu style.css */
.premio-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
/* ==========================================================================
   POPUP DE BOAS-VINDAS (ESTILO CORRIGIDO E COM SCROLL NO TEXTO)
   ========================================================================== */
.popup-overlay {
    position: fixed; /* Fixo na tela, independente do scroll */
    inset: 0; /* Ocupa a tela inteira (top:0, right:0, bottom:0, left:0) */
    background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro semi-transparente */
    
    /* Centralização perfeita do conteúdo */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; /* Espaçamento para não colar nas bordas em telas pequenas */

    z-index: 9999; 
    
    /* Lógica de visibilidade para animação */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--cor-branco);
    border-radius: var(--border-radius);
    text-align: center;
    width: 100%;
    max-width: 420px; /* Largura máxima do popup */
    position: relative;
    box-shadow: var(--sombra-profissional-elevada);
    
    /* --- MUDANÇA PRINCIPAL --- */
    /* 1. Transforma o popup em um container flexível vertical */
    display: flex;
    flex-direction: column;
    /* 2. Define uma altura máxima para o popup não estourar a tela */
    max-height: 85vh; /* Ocupa no máximo 85% da altura da tela */
    
    /* Animação de entrada */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #000000;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
    /* --- MUDANÇA IMPORTANTE --- */
    /* 3. Garante que o botão fique acima de tudo, inclusive da imagem */
    z-index: 10; 
}
.popup-close-btn:hover {
    color: #999;
    transform: rotate(90deg);
}

.popup-image {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    /* --- MUDANÇA IMPORTANTE --- */
    /* 4. Arredonda apenas as bordas superiores da imagem */
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 0;
    background-color: #f0f0f0;
    /* 5. Impede que a imagem seja esmagada se o espaço for pequeno */
    flex-shrink: 0;
    margin-top: 10px;
}

/* --- NOVO BLOCO PARA O CONTEÚDO DE TEXTO COM SCROLL --- */
.popup-scrollable-content {
    /* 6. A MÁGICA ACONTECE AQUI: Permite a rolagem vertical quando necessário */
    overflow-y: auto;
    
    /* 7. Adiciona o espaçamento interno que antes estava no .popup-content */
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    
    /* 8. Faz com que esta div ocupe todo o espaço vertical restante */
    flex: 1;
    min-height: 0; /* Truque de flexbox para garantir que o overflow funcione corretamente */
}

/* 9. Estilização opcional para a barra de rolagem ficar mais bonita (só funciona em alguns navegadores) */
.popup-scrollable-content::-webkit-scrollbar {
    width: 8px;
}
.popup-scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.popup-scrollable-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.popup-scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
/* --- FIM DO NOVO BLOCO --- */

.popup-scrollable-content h2 {
    margin-top: 0;
    margin-bottom: 0.5rem; /* Ajustado */
    font-size: 1.8rem;
    color: var(--cor-texto);
}

.popup-scrollable-content p {
    color: var(--cor-texto-suave);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1rem;
    margin-top: 0;
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .popup-scrollable-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem; /* Padding ajustado */
    }
    .popup-scrollable-content h2 {
        font-size: 1.5rem;
    }
    .popup-scrollable-content p {
        font-size: 1rem; /* Um pouco maior para legibilidade */
    }
}

/* ==========================================================================
   NOVOS ESTILOS: NAVEGAÇÃO DOS STORIES
   ========================================================================== */

/* Botão de navegação genérico (para prev e next) */
.story-nav-btn {
    /* Posicionamento */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15; /* Acima da mídia, abaixo do botão de fechar */
    
    /* Visual */
    background-color: rgba(60, 60, 60, 0.5); /* Fundo um pouco mais sutil */
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    
    /* Centralização do ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    /* Alteração aqui! Fica sempre visível com 70% de opacidade */
    opacity: 0.7; 
    transition: all 0.3s; /* Transição mais suave para tudo */
}

/* Efeito ao passar o mouse sobre o botão (ou tocar) */
.story-nav-btn:hover {
    background-color: rgba(90, 90, 90, 0.8);
    transform: translateY(-50%) scale(1.1);
    opacity: 1; /* Fica 100% opaco no hover */
}

/* Posição específica para cada botão (sem alterações) */
#story-prev-btn {
    left: 15px;
}

#story-next-btn {
    right: 15px;
}