/* Ayuda para organizadores */
.so-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    font-size: 14px;
    color: #71717a;
}

.so-loading__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e4e4e7;
    border-top-color: #3d15ce;
    border-radius: 50%;
    animation: soSpin 0.7s linear infinite;
}

@keyframes soSpin {
    to { transform: rotate(360deg); }
}

.so-auth {
    margin-top: 8px;
}

.so-auth__box {
    padding: 24px 20px;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    background: #fafafa;
}

.so-auth__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #18181b;
}

.so-auth__text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: #52525b;
}

.so-auth__btn {
    width: 100%;
    min-height: 48px;
}

.so-auth__hint {
    margin: 14px 0 0;
    font-size: 13px;
    color: #71717a;
    line-height: 1.45;
}

.so-user-badge {
    margin: 0 0 20px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    font-size: 13px;
    color: #5b21b6;
    line-height: 1.45;
}

.sc-option-list--nested {
    padding-left: 12px;
    border-left: 2px solid #ede9fe;
}

.so-info {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #334155;
    line-height: 1.55;
}

.so-info ul {
    margin: 10px 0 0;
    padding-left: 1.2em;
}

.so-info li + li {
    margin-top: 6px;
}

.so-info p {
    margin: 0;
}

.so-info p + p,
.so-info p + ul {
    margin-top: 10px;
}

.so-info a {
    color: #3d15ce;
    font-weight: 600;
}

.so-desc {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.so-desc__label {
    font-size: 14px;
    font-weight: 600;
    color: #18181b;
}

.so-desc__hint {
    font-size: 13px;
    color: #71717a;
    line-height: 1.4;
}

.so-desc__input {
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
    color: #18181b;
    resize: vertical;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.so-desc__input:focus {
    outline: none;
    border-color: #c4b5fd;
    box-shadow: 0 0 0 3px rgba(61, 21, 206, 0.12);
}

.so-verify-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.so-verify-actions .me-btn-primary,
.so-verify-actions .so-verify-secondary {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.so-verify-secondary {
    background: #fff;
    color: #3d15ce;
    border: 1px solid #ddd6fe;
    cursor: pointer;
    font-family: inherit;
}

.so-verify-secondary:hover {
    background: #faf8ff;
}

.so-profile-summary {
    margin: 0;
    padding: 0;
    list-style: none;
}

.so-profile-summary li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    line-height: 1.45;
}

.so-profile-summary li:last-child {
    border-bottom: none;
}

.so-profile-summary strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .so-loading__spinner {
        animation: none;
    }
}
