/* ---
Configurações Globais
--- */
* {
    box-sizing: border-box; /* Garante que padding não afete o tamanho final */
}

/* --- Configurações Globais e Fundo --- */
body {
    font-family: "Sora", Sans-serif;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../BG.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* --- Container Principal --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.logo-title {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 5.5px;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 12px; 
    
    /* --- EFEITO APLICADO --- */
    animation: fadeIn 0.8s ease-out; /* Duração de 0.8s */
    animation-fill-mode: backwards; /* Garante que comece invisível */
}

.title {
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2em;
    /* --- SUA MARGEM APLICADA --- */
    margin-bottom: 30px; 
    /* --- EFEITO APLICADO --- */
    animation: fadeIn 0.8s ease-out 0.2s; /* Delay de 0.2s */
    animation-fill-mode: backwards;

    /* --- CÓDIGO DO DEGRADÊ NO TEXTO --- */
    
    /* 1. Cria o degradê laranja como um fundo */
    background: linear-gradient(to right, #ffffff, #ffffffb7);
    
    /* 2. "Corta" o fundo no formato do texto */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* 3. Deixa a cor do texto transparente para o fundo aparecer */
    color: transparent;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 10px;
}

.subtitle.vagas {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    margin: 0;
}

/* --- Imagem --- */
.image-container {
    margin: 0;
    padding: 0 16px;
    margin-bottom: 12px;
    width: 100%;
}

.image-container img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Botão (Com a correção final de altura) --- */
.button-wrapper {
    padding-top: 15px; 
    margin-bottom: 15px;
    width: 100%;
}

.btn {
    background: linear-gradient(90deg, #13a82b, #4be363);
    position: relative;
    border-radius: 12px;
    
    /* --- SUA CORREÇÃO APLICADA (DESKTOP) --- */
    padding: 18px 30px; 
    
    line-height: 1;     
    font-weight: 700;   
    
    overflow: hidden;
    cursor: pointer;
    animation: pulsar 1.5s infinite ease-in-out;
    transition: transform 0.3s ease-in-out;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    border: none;
    
    gap: 5px; 
}

.btn-text {
    font-size: 15px; 
}

.btn:hover {
    transform: scale(1.1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    transition: left 0.5s ease-in-out;
}

.btn:hover::after {
    left: 150%;
}








/* --- Container Geral --- */
.store-grid-container {
    width: 100%;
    /*margin-bottom: 25px;*/
    /* Efeito de entrada */
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.store-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* O Grid Flexível */
.store-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px; /* Espaço entre as bolinhas */
}

/* --- A BOLINHA (CÍRCULO) --- */
.store-circle {
    width: 35px;  /* Tamanho da bolinha */
    height: 35px;
    
    border-radius: 50%; /* Isso faz virar um círculo perfeito */
    background: #FFFFFF; /* Fundo branco para o logo aparecer */
    
    /* Borda semi-transparente igual ao seu exemplo (border-white/20) */
    border: 2px solid rgba(255, 255, 255, 0.3); 
    
    /* Sombra e Layout */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    overflow: hidden; /* Garante que a imagem não saia do círculo */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Animação suave */
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Efeito Hover (Quando passa o mouse cresce) */
.store-circle:hover {
    transform: scale(1.15); /* Cresce 15% */
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    border-color: #ffffff; /* Borda fica branca sólida */
}

/* --- A Imagem dentro do Círculo --- */
.store-circle img {
    width: 110%;
    height: 110%;
    object-fit: contain; /* Garante que o logo caiba inteiro */
    
}




/* --- Barra de Progresso Gamer (Versão Clean) --- */
.loading-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-family: "Sora", sans-serif;
}

.loading-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff; /* Texto de fora continua branco para ler no fundo escuro */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

#progress-text {
    color: #ffcc00; /* Amarelo destaque */
    font-weight: 900;
}

.progress-container {
    width: 100%;
    height: 26px;
    
    /* --- MUDANÇA AQUI: Fundo Branco --- */
    background: #ffffff81; 
    border: 1px solid #ffffff; /* Borda cinza suave */
    
    border-radius: 12px;
    padding: 3px;
    
    /* Sombra interna suave para dar profundidade */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); 
    
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%; 
    background: linear-gradient(90deg, #ff9900, #ff4500); /* Laranja Top */
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.4); 
    
    /* Animação de largura mais lenta e suave */
    transition: width 1s linear; 
}

/* Listras animadas */
.progress-stripes {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
}

.loading-status {
    font-size: 12px;
    color: #ffffff;
    margin-top: 5px;
    font-style: italic;
    font-style: bold;
    animation: piscar 1.5s infinite;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

@keyframes piscar {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}




@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.10);
        box-shadow: 0 0 20px rgba(75, 227, 99, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }
}

.icon-whatsapp {
    width: 1em; 
    height: auto; 
    fill: #FFFFFF;
}

/* --- Responsividade (Media Queries) --- */

@media (max-width: 1024px) {
    .container {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .logo-title {
        font-size: 17px;
    }
    .title {
        font-size: 32px;
    }
    .image-container img {
        max-width: 78%; 
    }
    .subtitle {
        font-size: 16px;
    }
    .subtitle.vagas {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    body {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../BG.webp");
        background-attachment: scroll;
        align-items: flex-start;
    }
    
    .container {
        padding-top: 40px;
        padding-bottom: 32px;
        width: 100%;
    }
    
    .logo-title {
        font-size: 15px;
    }
    
    .title {
        font-size: 25px;
        line-height: 1.2em;
    }
    
    .image-container {
        padding: 0;
    }
    .image-container img {
        max-width: 80%;
    }
    
    .button-wrapper {
        width: 100%;
        padding-top: 18px;
        margin-bottom: 20px; 
    }
    
    .btn {
        font-size: 14px; 
        
        /* --- SUA CORREÇÃO APLICADA (MOBILE) --- */
        padding: 18px 20px; 
        
        width: 90%; 
    }
    
    .btn-text {
        font-size: 14px;
    }
    
    .subtitle {
        font-size: 15px;
        margin-bottom: 10px; 
    }
    
    .subtitle.vagas {
        font-size: 15px;
    }
}