*{
    padding: 0;
    margin: 0;
     font-family: "Inter", sans-serif;
}

body{
    background-color: black;
}

.bannerInicial{
    width: 100%;
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
}

.baseBtn{
    width: 80%;
    margin: 35px auto;
    display: block;
    padding: 20px 0;
    background: linear-gradient(90deg, #393939 0%, #9C9C9C 100%);
    border: none;
    color: #fff;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 900;
}

.btnLite{
    background: transparent !important;
    border: 2px solid #fff !important;
}

.bannerInicialLogo{
    margin-top: 70px;
    width: 100%;
}
.bannerInicialData{
    width: 100%;
    transform: scale(0.8);
    margin-bottom: 80px;
    margin-top: 15px;
}
.cronometro{
    height: 120px;
    background-color: #B10000;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cronometro .box{
    color: white;
    font-size: 2rem;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.cronometro .box .num:first-child{
    font-weight: 800;
    font-size: 2.6rem;
}

.cronometro .box .num:last-child{
    font-weight: 600;
    font-size: 1rem;
}

.SubTituloCronometro{
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin: 15px 0;
    font-weight: 900;

}

.mapaEvento{
    width: 100%;
    margin-top: 50px;
    padding: 15px;
}

.mapaEventoLogo{
    width: 200px;
}

.mapaEventoDesc{
    font-size: 15px;
    color: #fff;
    font-weight: 200;
    padding: 5px 15px;
}

.mapaEventoImg{
    width: 100%;
    margin-top: 20px;
}

.titulo{
    text-align: center;
    font-weight: 900;
    color: #fff;
    font-size: 40px;
    margin: 25px 0;

}




.card {
    position: relative;
    width: 280px;
    padding: 40px 20px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    background-color: #000;
    text-align: center;
    box-sizing: border-box;

    margin: 70px auto;
}

/* O "selo" azul no topo */
.badge {
    position: absolute;
    top: -25px; /* Sobe metade do elemento para fora do card */
    left: 50%;
    transform: translateX(-50%);
    background-color: #0080ff;
    color: white;
    padding: 12px 35px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.card-content {
    margin-top: 20px;
}

.lote {
    color: #00ff88; /* Verde vibrante */
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 10px;
}

.preco {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 10px 0 30px 0;
}

/* Botão com degradê verde */
.btn-comprar {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to bottom, #00ff77, #006400);
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-comprar:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    filter: brightness(1.2);
}


        :root {
            /* Altere a porcentagem aqui */
            --progresso: 67%;
        }

        .barra-container {
            width: 90%;
            margin: 40px auto;
            max-width: 800px; /* Largura máxima da barra */
            height: 45px;
            background-color: #480000; /* Cor do fundo (parte não preenchida) */
            border-radius: 6px;
            position: relative;
            font-family: 'Arial', sans-serif;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .barra-preenchimento {
            height: 100%;
            width: var(--progresso);
            background-color: #ff0000; /* Vermelho vibrante da imagem */
            border-radius: 6px;
            transition: width 0.5s ease-in-out;
        }

        .conteudo-texto {
            position: absolute;
            width: 100%;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            box-sizing: border-box;
            color: white;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
            pointer-events: none; /* Garante que o texto não atrapalhe cliques na barra */
        }

        /* Ajuste para o texto não sumir se a barra estiver muito baixa */
        .barra-container[style*="--progresso: 0%"] .conteudo-texto,
        .barra-container[style*="--progresso: 1%"] .conteudo-texto {
            color: #333;
        }