/* Estilos para o plugin S4A1 */
.s4a1-lesson-container {
    margin: 0 auto;
}
.s4a1-lesson-container p:not(.has-background):last-of-type {
    text-align:left!important;
}
.s4a1-intro {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.s4a1-intro h2 {
    color: #2c3e50;
    margin-top: 0;
}

.s4a1-reflection {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.s4a1-scenario {
    margin-bottom: 25px;
}

.s4a1-options {
    margin: 20px 0;
}

.s4a1-option {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.s4a1-option:hover {
    background-color: #e9ecef;
}

.s4a1-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.s4a1-option-checkbox {
    margin-right: 10px;
    transform: scale(1.2);
}

.s4a1-feedback {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background-color: #98D3BA;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
}

.s4a1-feedback p {
    margin-top: 0;
    margin-bottom: 10px;
}

.s4a1-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 80px;
    font-family: inherit;
    resize: vertical;
}

.s4a1-completed-info {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #4caf50;
}

.s4a1-completed-info ul {
    list-style-type: none;
    padding-left: 0;
}

.s4a1-completed-info li {
    padding: 8px 0;
    border-bottom: 1px solid #c8e6c9;
}

.s4a1-status {
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.9em;
}

.s4a1-status.completed {
    background-color: #4caf50;
    color: white;
}

.s4a1-status.not-completed {
    background-color: #f44336;
    color: white;
}

.s4a1-final-text {
    margin-top: 30px;
}

.s4a1-continue-button {
    text-align: center;
    margin-top: 20px;
}

.s4a1-btn {
    width:auto!important;
    border: 0;
    border-radius: 12px;
    background: #F47600;
    display: 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;
}

.s4a1-btn:hover {
    background: #CD6300;
    transform: scale(1.05);
}
.s4a1-mensagem-continuar {
    margin-top: 20px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .s4a1-lesson-container {
        padding: 15px;
    }
    
    .s4a1-intro,
    .s4a1-reflection,
    .s4a1-final-text {
        padding: 15px;
    }
}