body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.container-custom {
    background-color: #B5C04E;
    padding: 0;
    margin: 5rem auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.profissional-img {
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.headline {
    color: #3b2d64;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Poppins", serif;
    margin-bottom: 1rem;
}
.text-content {
    color: #3b2d64;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    font-family: "Poppins", serif;
    font-weight: 300;
}
.text-respostas {
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 300;
}

.resultado {
    font-size: 22px;
    font-family: "Poppins", serif;
    font-weight: 700;
}

.resultado-outros {
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 500;
}

.info {
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.btn-custom {
    background-color: #a1bb66;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-custom:hover {
    background-color: #8fa956;
    color: white;
    transform: scale(1.05);
}
.btn-custom:active {
    transform: scale(0.98);
}
.click-icon {
    margin-left: 10px;
}
.form-group input:focus {
    border: 2px solid #4a743b; /* Borda verde escuro */
    outline: none;
}
@media (max-width: 767px) {
    .container-custom {
        width: 90%;
    }
    .text-content {
        text-align: center;
    }
    .btn-custom {
        width: 100%;
        margin-top: 1rem;
    }
}
.hidden {
    display: none;
}

.text-respostas {
    position: relative;
    padding-left: 30px; /* Espaçamento para o ícone de rádio */
    cursor: pointer; /* Muda o cursor ao passar o mouse */
    font-size: 18px; /* Tamanho da fonte */
    transition: color 0.3s ease; /* Transição suave para a cor */
}

.text-respostas input[type="radio"] {
    position: absolute;
    opacity: 0; /* Torna o input invisível */
}

.text-respostas label {
    width: 100%;
    position: relative;
    padding: 10px;
    border: 2px solid #4a743b; /* Borda verde */
    border-radius: 5px; /* Bordas arredondadas */
    background-color: #B5C04E; /* Fundo branco */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Transição suave para a borda e fundo */
    cursor: pointer;
}

.text-respostas input[type="radio"]:checked + label {
    background-color: #04af5f; /* Fundo verde quando selecionado */
    color: white; /* Texto branco quando selecionado */
    border-color: #4a743b; /* Borda mais escura quando selecionado */
}

.text-respostas label:hover {
    background-color: #0a9856; /* Fundo claro ao passar o mouse */
}

/* Barra de progresso */
.progress {
    background-color: #e6e6e6; /* Fundo neutro para o contêiner da barra */
    border-radius: 10px;
    height: 15px;
    overflow: hidden;
}

.progress-bar {
    background-color: #04af5f;
    height: 100%;
    transition: width 0.6s ease; /* Transição de largura */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Sombra sutil */
}

/* Estilo para o overlay de loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

/* Animação do Spinner */
.loading-spinner {
    border: 6px solid #e6e6e6;
    border-top: 6px solid #04af5f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
