.s9a3-wrapper, .content-item-summary{width:100%;}
.s9a3-step { display:none; width:100%;}
.s9a3-step.active { display:block; }
.s9a3-step p:not(.has-background):last-of-type {
    text-align: left;
}
.s9a3-range { width:100%; }

.slider-row {
    position:relative;
    padding-bottom:26px;
}

.slider-value {
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    font-weight:bold;
}

.s9a3-step textarea {
    margin-bottom:20px;
}
.s9a3-question{
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slider-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.s9a3-range{
flex-grow: 1;
    height: 4px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #e74c3c 0%, #f1c40f 50%, #2ecc71 100%);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
} 
.s9a3-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}
.slider-label.right {
    color: green;
}
.slider-label.left {
    color: orange;
}
.s9a3-next{
    width: auto;
    border: 0;
    border-radius: 12px;
    background: #F47600;
    display: inline-flex;
    height: 56px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #F7FAFC;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease;
}
.s9a3-prev{
    width: auto !important;
    border: 0;
    border-radius: 12px;
    background: #eee;
    display: inline-block;
    height: 56px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #333;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease;
    margin-right:24px;
}
.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.mensagem {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
/* ===== ESTILOS DOS RADIO BUTTONS ===== */
.s9a3-question {
    background: #f8f9fa;
    
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.s9a3-question p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #2c3e50;
    font-weight: 500;
}

.radio-scale-wrapper {
    margin: 25px 0;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 10px;
}

.scale-label {
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.scale-label small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.radio-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.radio-circle {
    position: relative;
    cursor: pointer;
    flex: 1;
    max-width: 60px;
    text-align: center;
}

.radio-circle input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-number {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.radio-circle input[type="radio"]:checked + .radio-number {
    background: #F47600;
    color: white;
    border-color: #F47600;
    transform: scale(1.1);
}

.radio-circle:hover .radio-number {
    border-color: #F47600;
    background: #fefefe;
    transform: scale(1.05);
}

.radio-circle input[type="radio"]:focus + .radio-number {
    outline: 2px solid #F47600;
    outline-offset: 2px;
}

.s9a3-question.s9a3-error {
    border-left-color: #e74c3c;
    background: #fff5f5;
}

.s9a3-question.s9a3-error .radio-number {
    border-color: #e74c3c;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .radio-buttons {
        gap: 5px;
    }
    
    .radio-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }
    
    .scale-labels {
        flex-direction: column;
        gap: 10px;
    }
    
    .scale-label {
        text-align: left;
    }
    
    .scale-label:last-child {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .radio-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .radio-circle {
        flex: 0 0 calc(33.333% - 10px);
        margin-bottom: 10px;
    }
    
    .radio-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    .scale-labels {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== ESTADO DESABILITADO ===== */
.radio-circle input[type="radio"]:disabled + .radio-number {
    background: #f5f5f5;
    border-color: #eee;
    color: #bbb;
    cursor: not-allowed;
}

.radio-circle input[type="radio"]:disabled:hover + .radio-number {
    transform: none;
    border-color: #eee;
    background: #f5f5f5;
}