/* Botão LearnPress desabilitado inicialmente */
form.learn-press-form .lp-button.button-complete-lesson.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #ccc !important;
}

/* Botão LearnPress quando ativado */
form.learn-press-form .lp-button.button-complete-lesson {
    transition: all 0.3s ease;
}
/* Container Principal */
.arv-container {
    text-align:left!important;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1.6;
    color: #333;
}
.arv-container p:not(.has-background):last-of-type {
    text-align:left!important;
}
/* Texto Introdutório */
.arv-intro {
    padding: 25px 0;
    margin-bottom: 30px;
}

.arv-intro h2 {
    color: #000;
    margin-bottom: 15px;
}

/* Opções de Reflexão */
.arv-opcoes {
    margin: 25px 0;
}

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

.arv-opcao:hover {
    border-color: #e9ecef;
}

.arv-opcao input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.arv-opcao label {
    font-weight: 400;
    cursor: pointer;
    color: #000;
}

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

.arv-feedback p {
    margin-bottom: 12px;
}

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

.arv-feedback textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.25);
}

/* Texto Final */
.arv-texto-final {
    padding: 30px 0;
    margin-top: 30px;

}

.arv-texto-final p {
    margin-bottom: 20px;
}

/* Botão Continuar */

.arv-btn-continuar {
    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;
}

button:hover, .arv-btn-continuar:hover {
    background: #CD6300;
    transform: scale(1.05);
}

button:disabled {
    background: #AD845D;
    cursor: not-allowed;
}

/* Estados de Checkbox */

.arv-opcao input[type="checkbox"]:checked ~ .arv-feedback {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .arv-container {
        padding: 15px;
    }
    
    .arv-intro,
    .arv-opcao,
    .arv-texto-final {
        padding: 20px;
    }
    
    .arv-btn-continuar {
        width: 100%;
        padding: 15px;
    }
}

/* Animações de transição */
.arv-opcao,
.arv-feedback,
.arv-texto-final {
    transition: all 0.3s ease;
}
/* Mensagens de continuar */
.arv-mensagem-continuar {
    margin-top: 20px;
    text-align: center;
}

.arv-sucesso {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.arv-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #bee5eb;
}

.arv-instrucao {
    font-weight: 600;
    margin: 10px 0 0 0;
    font-size: 16px;
}

/* Estados do botão */
.arv-btn-continuar:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.arv-btn-continuar:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Animações */
.arv-mensagem-continuar {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}