/* Estilos principais do formulário */
.dmpm-form-container p:not(.has-background):last-of-type{
    text-align: left !important;
}
.dmpm-intro, .dmpm-final {
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}
.dmpm-submit-btn {
    width:auto!important;
    border: 0;
    border-radius: 12px;
    background: #F47600;
    display: flex;
    height: 56px;
    padding: 0 40px;
    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;
}

.dmpm-submit-btn:hover {
    background: #CD6300;
    transform: scale(1.05);
}

.dmpm-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.dmpm-intro p, .dmpm-final p {
    margin-bottom: 20px;
}

.dmpm-intro p:last-child, .dmpm-final p:last-child {
    margin-bottom: 0;
}

/* Seção de conclusão */
.dmpm-completed-section {
    animation: fadeInUp 0.6s ease;
}

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

.dmpm-completion-message {
    padding: 20px;
    background: #d4edda;
    border-radius: 16px;
}

.dmpm-success-icon {
    margin: 20px 0 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 50%;
}

.dmpm-success-icon svg {
    color: #155724;
    stroke-width: 1.5;
}

.dmpm-completion-title {
    display: inline-block;
    margin-left:20px;
    color: #1c7ed6;
    font-size: 24px;
    font-weight: 600;
}

.dmpm-completion-subtitle {
    margin: 0 auto;
    color: #155724;
    font-size: 17px;
    opacity: 0.9;
    width:auto;
}
.dmpm-your-message h4 {
    margin:0;
}

.dmpm-message-preview {
    padding:10px 0px;
    position: relative;
}

.dmpm-message-content {
    padding: 25px;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    border: 1px solid #e9ecef;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-style: italic;
    position: relative;
}

.dmpm-message-content:before {
    content: "❝";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 40px;
    color: #4dabf7;
    opacity: 0.3;
    font-style: normal;
}

.dmpm-message-content:after {
    content: "❞";
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 40px;
    color: #4dabf7;
    opacity: 0.3;
    font-style: normal;
}

.dmpm-message-date {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 8px;
    margin-top: 25px;
    font-size: 14px;
    color: #6c757d;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
}

.dmpm-message-date svg {
    color: #adb5bd;
}

/* Grupo de opções de rádio */
.dmpm-options {
    margin: 40px 0;
}

.dmpm-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.dmpm-radio-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.dmpm-radio-option:hover {
    background: #f1f3f5;
    border-color: #ced4da;
    transform: translateY(-2px);
}

.dmpm-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.dmpm-radio-checkmark {
    position: relative;
    top: 2px;
    height: 22px;
    min-width: 22px;
    background-color: #fff;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 16px;
    transition: all 0.2s ease;
}

.dmpm-radio-option input:checked ~ .dmpm-radio-checkmark {
    background-color: #4dabf7;
    border-color: #4dabf7;
}

.dmpm-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.dmpm-radio-option input:checked ~ .dmpm-radio-checkmark:after {
    display: block;
}

.dmpm-option-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #212529;
}

/* Seção de resposta personalizada */
.dmpm-custom-section {
    margin-top: 10px;
}

.dmpm-custom-input-container {
    margin-left: 38px;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

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

.dmpm-custom-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background: #fff;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.dmpm-custom-textarea:focus {
    outline: none;
    border-color: #4dabf7;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.1);
}

.dmpm-custom-textarea:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

.dmpm-char-count {
    text-align: right;
    font-size: 13px;
    color: #6c757d;
    margin-top: 6px;
}

.dmpm-char-overlimit {
    color: #fa5252;
    font-weight: bold;
}

/* Botão de envio */
.dmpm-submit-section {
    margin: 50px 0 30px;
    text-align: center;
}


/* Loading */
.dmpm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    color: #495057;
    font-size: 15px;
}

.dmpm-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4dabf7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Feedback */
.dmpm-feedback {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    animation: slideIn 0.3s ease;
}

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

.dmpm-feedback-success {
    background-color: #d3f9d8;
    color: #2b8a3e;
    border: 1px solid #b2f2bb;
}

.dmpm-feedback-error {
    background-color: #ffe3e3;
    color: #c92a2a;
    border: 1px solid #ffc9c9;
}

/* Notificação para login */
.dmpm-notice {
    text-align: center;
    padding: 30px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .dmpm-form-container {
        margin: 20px;
        padding: 25px;
    }
    
    .dmpm-completion-message {
        padding: 25px;
    }
    
    .dmpm-success-icon {
        width: 60px;
        height: 60px;
    }
    
    .dmpm-radio-option {
        padding: 16px;
    }
    
    .dmpm-custom-input-container {
        margin-left: 0;
    }
    
    .dmpm-message-preview {
        padding: 20px;
    }
    
    .dmpm-message-content {
        padding: 20px;
        font-size: 15px;
    }
    
    .dmpm-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
.et-db #et-boc .et-l .et_pb_section{
    padding:0!important;
}