.contador {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(163, 102, 11);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    z-index: 1000;
    opacity: 0; /* Inicialmente invisível */
    visibility: hidden; /* Não ocupa espaço */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contador span {
    font-weight: bold;
    color: rgb(10, 21, 121);
}

/* Visível */
.contador.visivel {
    opacity: 1;
    visibility: visible;
}