body{
    font-family: poppins;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    --background-overlay: '';
    min-height: 100vh;
}

   .progress {
    width: 100%;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 5px;
    position: relative;
}

.progress-bar {
    height: 30px;
    background-color: black;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

/* INICIO Código para animação */
.progress-bar {
    position: inherit;
    background:#fefbe3;
    background-color: -webkit-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
    background: -moz-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
    background: -o-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
    background: linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
    background-size: 27px 27px;
    -webkit-animation: barberpole 1.5s infinite linear;
    animation: barberpole 5s infinite linear;
}

@-webkit-keyframes barberpole {
    from {background-position: 0%;}
    to {background-position: 100%;}
}

/* FIM Código para animação */

.progress-bar:before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2196F3;
    transition: width 0.3s ease-in-out;
}

.progress-bar.red:before {
    background-color: #f44336;
}

.progress-bar.yellow:before {
    background-color: #ffeb3b;
}

.progress-bar.green:before {
    background-color: #4caf50;
}

.progress-text {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: black;
    font-weight: bold;
    z-index: 9;
}

.progress-bar.red {
    background-color: #F0271B;
}

.progress-bar.yellow {
    background-color: #ffd500;
}

.progress-bar.green {
    background-color: #00D11D;
}.popup {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d0f0c0;
    color: #333333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Inicialmente escondido */
    z-index: 1000;
}

.popup-show {
    display: block;
}

.popup-button {
    background-color: #f44336;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}#pisca {
    width: 10px; /* Ajuste o tamanho da bolinha */
    height: 10px; /* Ajuste o tamanho da bolinha */
    background-color: #00D11D; /* Cor verde da bolinha */
    border-radius: 50%; /* Faz com que o elemento seja circular */
    display: inline-block; /* Faz com que a bolinha se comporte como um bloco inline */
    animation: pisca 1s infinite; /* Animação chamada 'pisca', com duração de 1 segundo e repetição infinita */
}

/* Definindo a animação 'pisca' */
@keyframes pisca {
    0% {
        opacity: 1; /* Totalmente visível no início */
    }
    50% {
        opacity: 0; /* Totalmente invisível no meio */
    }
    100% {
        opacity: 1; /* Totalmente visível no final */
    }
}


#infotop{
    padding: 20px;
}#infotop h1{
    text-align: center;
    color: white;
    font-family: poppins;
    line-height: 1.2;
    font-weight: 800;
    margin-top: -13px;
}#infotop img{
       width: 333px;
}#infotop h3{
    text-align: center;
    color: white;
    font-family: poppins;
    font-weight: 300;
    margin-top: -13px;
}#btjogar{
font-family: "Poppins", Sans-serif;
    font-weight: 700;
    background-color: transparent;
    background-image: linear-gradient(204deg, #00D11D 0%, #1C8300 100%);
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: #00FF48;
    margin-top: 6px;
    width: 100%;
    border-radius: 4px;
    height: 40px;
    color: white;
    cursor: pointer;
}.floating-button {
    position: fixed;
    bottom: 143px;
    right: 20px;  /* Distância da borda direita da página */
    z-index: 1000; /* Para garantir que o botão fique acima de outros elementos */
}

.floating-button img {
    display: block; /* Remove o espaço embaixo da imagem */
    width: 50px; /* Ajuste o tamanho da imagem conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 89px;
}

.container {
    flex: 1 1 calc(13.333% - 40px);
    box-sizing: border-box;
    max-width: calc(33.333% - 252px);
    text-align: center;
    background-color: #0000009C;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .container {
        flex: 1 1 calc(50% - 40px); /* 2 por linha */
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .container {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(100% - 40px);
    }
}

.imagem {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.progress-container {
    width: 100%;
    background-color: white;
    margin-top: 10px;
    height: 30px;
    position: relative;
    border-radius: 5px;
}

.progress-bar {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
}

.progress-text {
    margin-top: 10px;
    font-size: 18px;
    padding-top: 5px;
}
@media (max-width: 480px) {
#modal {
    width: 97%;
}
}
@media (max-width: 768px) {
#modal {
    width: 97%;
}
}
