* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto; /* Mantém a proporção da imagem */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-position: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
}

.header {
    text-align: center;
    padding: 4px 0; /* Ajusta o padding superior e inferior */
}

.header h1 {
    color: rgb(25, 25, 25);
    font-size: 38px; /* Tamanho da fonte no desktop */
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.coming-block {
    margin: 0; 
    max-width: 750px;
    text-align: center;
    padding: 1em 0; /* Ajusta o padding superior e inferior */
    display: grid;
}

.content {
    background-color: transparent;
    padding: 20px;
    margin: 0 auto;
    width: 45%; /* Largura do conteúdo no desktop */
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.content1 {
    padding: 14px;
    margin: 2% auto;
    display: flex;
    justify-content: center;
}

.progress {
    height: 30px!important; /* Altura da barra de progresso no desktop */
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.progress .progress-bar {
    position: absolute;
    height: 100%; /* Garante que a altura da barra de progresso interna se ajuste */
    background-color: #0099de;
    width: 20%; /* Largura da barra de progresso interna */
}

footer {
    background-color: #0099de;
    color: #fff;
    padding: 5px;
    padding-bottom: 12px;
    padding-top: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 0px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icon img {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 30px; /* Reduz o tamanho da fonte */
    }
    
    .content {
        width: 90%; /* Ajusta a largura do conteúdo */
    }
    
    .progress {
        height: 25px; /* Reduz a altura da barra de progresso */
    }
}

@media (max-width: 576px) {
    .header h1 {
        font-size: 24px; /* Reduz ainda mais o tamanho da fonte */
    }
    
    .content {
        width: 95%; /* Ajusta a largura do conteúdo */
    }
    
    .progress {
        height: 20px; /* Ajusta a altura da barra de progresso  */
    }
}

@media (min-width: 1920px) {
    .progress {
        max-width: 600px;
    }

    .content1 img {
        max-width: 400px; 
        height: auto;
    }
    .header h1{
        font-size: 34px;
        padding-left: 70px;
    }
}