body {
    font-family: Arial, sans-serif;
    background-color: #7b3539; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 80%;
    margin-bottom: 80px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#resposta {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: left;
    white-space: pre-wrap;
    position: relative;
}

.copy-button {
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 5px;
}

.copy-button:hover {
    background-color: transparent;
}

.copy-icon {
    font-size: 22px;
    vertical-align: middle;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 8%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.footer-content img {
    width: 90px;
    margin-right: 10px;
}

.pre-nav-image {
    display: block;
    margin: 0 auto;
    max-width: 320px;
    height: auto;
}

.progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.content {
    text-align: center;
    margin-top: 50px;
}

.construction {
    position: relative;
}

.construction img {
    width: 100px;
}

.help-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.help-button i {
    font-size: 24px;
}

.help-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.help-content {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    width: 400px;
    max-height: 80%;
    overflow-y: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.adsense-container {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .help-content {
        max-width: 90%;
        width: 90%;
        max-height: 90%;
    }
}


/* Container das redes sociais */
.social-container {
    display: flex; /* Colocar o texto e os ícones na mesma linha */
    align-items: center; /* Alinhar verticalmente os itens no centro */
    position: absolute; /* Posicionar em relação ao conteúdo da página */
    bottom: 44px; /* Ficar antes do footer */
    right: 15px; /* Alinhar à direita */
    z-index: 999; /* Manter acima de outros elementos */
}

/* Texto da frase */
.social-text {
    color: white; /* Cor do texto em branco */
    font-size: 1rem; /* Tamanho da fonte */
    margin-right: 1px; /* Espaço entre o texto e os ícones */
}

/* Estilo dos ícones sociais */
.social-icons {
    display: flex; /* Manter os ícones em linha */
    gap: 1px; /* Espaçamento entre os ícones */
}

.social-icons a {
    color: white; /* Ícones brancos */
    border-radius: 20%; /* Ícones arredondados */
    padding: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    outline: none; /* Remover contorno azul */
}

.social-icons a i {
    font-size: 1.3rem; /* Tamanho dos ícones */
}

.social-icons a:hover {
    color: white; /* Cor dos ícones no hover */
}
