body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.container {
    width: 80%;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    line-height: 1.6;
}
h1 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}
h2 {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: justify;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin: 10px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
li span {
    font-weight: bold;
    font-size: 1em;
    color: #333;
}
a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
a:hover {
    color: #0056b3;
}
.download-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 20%;
}
.download-button:hover {
    background-color: #09c709;
}
.support {
    margin-top: 40px;
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 5px;
}
.support h2 {
    margin-top: 0;
    color: #444;
}
.support p {
    margin-bottom: 10px;
    font-size: 1em;
}
.contact {
    font-weight: bold;
    color: #333;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #1ebe5d;
}
.whatsapp-button img {
    margin-right: 10px;
}

/* Estilo da barra de progresso */
.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #f3f3f3;
    margin-top: 5px; /* Margem para a barra não encostar no botão */
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 0.4s ease;
}

.download-button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-bottom: 10px; /* Espaço entre botão e barra */
}

.download-button:hover {
    background-color: #0056b3;
}

/* Estilo da barra de progresso global */
.global-progress-bar-container {
    width: 100%;
    height: 25px; /* Aumentamos a altura para acomodar o texto */
    background-color: #f3f3f3;
    margin-top: 20px; /* Margem para a barra não encostar no conteúdo acima */
    border-radius: 25px;
    overflow: hidden;
    position: fixed;
    bottom: 20px; /* Fixa a barra no final da tela */
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 1000; /* Garante que esteja sobre o conteúdo */
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2); /* Sombra leve para destaque */
}

.global-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #81c784); /* Gradiente elegante */
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: width 0.4s ease;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.2); /* Efeito de brilho */
    position: relative;
    overflow: hidden;
}

#progress-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: white;
    z-index: 1;
}

.download-button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-bottom: 10px; /* Espaço entre botão e barra */
}

.download-button:hover {
    background-color: #0056b3;
    color: #25d366;
}
