/* Estilos Globais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 10px;
}





.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Estilos Específicos para Desktop */
@media (min-width: 769px) {
    .container {
        max-width: 800px; /* Definir um limite de largura para telas maiores */
    }

    h1, h2 {
        color: #444;
        text-align: center;
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }

    #progress-bar {
        width: 100%;
        background-color: #ddd;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    #progress {
        height: 20px;
        background-color: #4caf50;
        width: 0%;
    }

    .question {
        margin-bottom: 20px;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .radio-group label {
        display: block;
        font-size: 16px;
        margin-bottom: 5px;
        cursor: pointer;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 5px;
        border: 1px solid #ddd;
        transition: background-color 0.3s;
    }

    .radio-group label:hover {
        background-color: #e9e9e9;
    }

    .radio-group input[type="radio"] {
        margin-right: 10px;
    }

    button {
        padding: 10px 20px;
        background-color: #76c7c0;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    button:hover {
        background-color: #5aa8a3;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    }

    .buttons {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .buttons button {
        width: 150px;
    }

    #resultado {
        font-size: 18px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .logo-container {
    text-align: center; /* Centraliza horizontalmente */
    margin-bottom: 30px; /* Adiciona um espaçamento abaixo da logomarca */
	}

	.logo {
    width: 250px; /* Define a largura da logomarca */
    height: auto; /* Mantém a proporção original da imagem */
	}
}

/* Estilos para Mobile */
@media (max-width: 768px) {
	body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 5px;
	}

    .container {
        width: 100%; /* Usar a largura total em dispositivos móveis */
        padding: 20px; /* Ajuste o padding para telas menores */
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.2em; /* Ajustar o tamanho do texto para telas menores */
        text-align: center;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px; /* Reduzir o tamanho da fonte para telas menores */
        line-height: 1.4;
        margin-bottom: 15px;
    }

    button {
        width: 100%; /* Botões ocupam 100% da largura */
        padding: 12px;
        margin-top: 15px;
        font-size: 16px; /* Manter o tamanho do texto do botão legível */
        background-color: #76c7c0;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    button:hover {
        background-color: #5aa8a3;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .buttons {
        flex-direction: column; /* Botões ficam empilhados em telas menores */
        gap: 10px;
    }

    .radio-group {
        display: flex;
        flex-direction: column; /* Um item por linha */
        gap: 10px;
    }

    .radio-group label {
        font-size: 14px; /* Reduzir o tamanho do texto dos radio buttons */
        padding: 10px; /* Ajustar o padding para telas menores */
        background-color: #f9f9f9;
        border-radius: 5px;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .radio-group input[type="radio"] {
        margin-right: 10px;
    }

    .radio-group label:hover {
        background-color: #e9e9e9;
    }

    #progress-bar {
        margin-bottom: 15px;
    }

    #resultado {
        font-size: 16px; /* Ajuste o tamanho do texto para resultados em mobile */
        padding: 15px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .logo-container {
    text-align: center; /* Centraliza horizontalmente */
    margin-bottom: 30px; /* Adiciona um espaçamento abaixo da logomarca */
	}

	.logo {
    width: 200px; /* Define a largura da logomarca */
    height: auto; /* Mantém a proporção original da imagem */
	}
}
