/* Estilos principais */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F1F5F2;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: auto;
}


.container {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden; /* Evita que o conteúdo ultrapasse os limites */
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 20px;
    height: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background-color: #444444;
    width: 16.66%; /* Começa com 0% */
    border-radius: 20px;
    animation: loadProgress 1.5s ease-out forwards; /* Animação de carregamento */
}

/* Animação para a barra de progresso */
@keyframes loadProgress {
    from {
        width: 16.66%;
    }
    to {
        width: 33.32%; /* Representa a Etapa 2 de 5 */
    }
}

.step-indicator {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.header {
    margin-bottom: 20px;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4A4A4A;
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #767676;
}

.results {
    text-align: left;
    margin-top: 15px;
}

.highlight {
    font-weight: bold;
    color: #444444;
    font-size: 1.2rem;
}

/* Radio buttons estilizados */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.radio-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #F9F9F9;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
    box-sizing: border-box;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #444444;
    color: #fff;
    border-color: #fdce63;
    transform: scale(1.02);
}

.radio-group label:hover {
    background-color: #eef1ff;
    border-color: #fdce63;
}

/* Botões */
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    height: 50px;
    width: 45%;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-btn {
    background-color: #444444;
    color: #fff;
}

.primary-btn:hover {
    background-color: #fdce63;
}

.secondary-btn {
    background-color: #ddd;
    color: #333;
}

.secondary-btn:hover {
    background-color: #bbb;
}
