/* Perfil estilo Threads */

.profile-page {
    padding-top: 8px;
}

.profile-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.profile-header__top,
.profile-header__identity,
.profile-header__name-row {
    overflow: visible;
}

.profile-header__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-header__name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.2;
}

.profile-header__name-input {
    width: 100%;
    max-width: 280px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-name-save {
    align-self: flex-start;
    margin-bottom: 4px;
}

.profile-list-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: none;
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.85rem;
    cursor: pointer;
}

.profile-list-back:hover {
    color: var(--white);
    background: var(--surface);
}

.profile-header__meta {
    font-size: 0.95rem;
    color: var(--text-3);
    margin: 0 0 6px;
    min-height: 0;
}

.profile-header__meta:not(:empty) {
    min-height: 1.4em;
}

.profile-header__nick {
    font-size: 0.95rem;
    color: var(--text-3);
    margin: 0 0 6px;
}

.profile-followsyou-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-2);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.profile-header__title {
    font-size: 0.88rem;
    color: var(--text-2);
    margin: 8px 0 0;
    font-weight: 500;
    line-height: 1.45;
}


.profile-joined i {
    font-size: 0.95rem;
}

.profile-identity-edit {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-identity-edit__label {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
}

.profile-type-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-type-picker__opt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text);
    cursor: pointer;
    background: var(--surface);
}

.profile-type-picker__opt:has(input:checked) {
    border-color: var(--accent);
    color: var(--white);
    background: rgba(99, 102, 241, 0.12);
}

.profile-type-picker__opt input {
    accent-color: var(--accent);
}

.profile-identity-fields__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.profile-field-hint {
    margin: 0;
    font-size: 0.72rem;
    color: var(--text-3);
    line-height: 1.4;
}

@media (max-width: 520px) {
    .profile-identity-fields__row {
        grid-template-columns: 1fr;
    }
}

.profile-header__avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-2);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-2);
}

.profile-header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header__name-edit {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 6px;
    transition: color var(--duration);
}

.profile-header__name-edit:hover .profile-header__name,
.profile-header__name-edit:focus-visible .profile-header__name {
    color: var(--accent);
}

.profile-header__avatar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.profile-header__avatar-edit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--duration);
    pointer-events: none;
}

.profile-header__avatar:hover .profile-header__avatar-edit,
.profile-header__avatar-link:focus-visible .profile-header__avatar-edit {
    opacity: 1;
}


.profile-location__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.profile-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 20px;
    white-space: pre-wrap;
}

.profile-bio-edit {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-size: 0.88rem;
    color: var(--text-3);
    margin-bottom: 22px;
    line-height: 1.5;
}

.profile-stats strong {
    color: var(--white);
    font-weight: 700;
}

.profile-stats__link {
    color: var(--text-3);
    transition: color var(--duration);
}

.profile-stats__link:hover {
    color: var(--accent);
}

.profile-stats__link:hover strong {
    color: var(--accent);
}

.profile-stats__pts {
    color: var(--accent);
    font-weight: 600;
}

.profile-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    --profile-action-h: 44px;
}

.profile-actions .btn {
    flex: 1;
    min-width: 0;
    height: var(--profile-action-h);
    min-height: var(--profile-action-h);
    padding: 0 14px;
    font-size: 0.85rem;
    line-height: 1;
}

.profile-actions__follow {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.profile-follow-btn__icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1;
}

.profile-follow-btn__label {
    line-height: 1.2;
}

.profile-actions__follow--mutual {
    background: rgba(79, 142, 247, 0.14);
    border: 1px solid rgba(79, 142, 247, 0.38);
    color: var(--accent);
}

.profile-actions__follow--mutual:hover {
    background: rgba(79, 142, 247, 0.22);
    border-color: rgba(79, 142, 247, 0.5);
    color: var(--accent);
}

.profile-actions__follow--following,
.profile-actions__follow--pending {
    color: var(--text);
}

.profile-actions__wave {
    width: 100%;
    height: 100%;
    min-width: 0;
    flex: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-bipoi {
    position: relative;
    flex: 0 0 var(--profile-action-h);
    width: var(--profile-action-h);
    height: var(--profile-action-h);
}

.profile-bipoi__ring {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.profile-bipoi.is-charging .profile-bipoi__ring {
    opacity: 1;
}

.profile-bipoi__ring-track {
    fill: none;
    stroke: var(--border);
    stroke-width: 2.5;
}

.profile-bipoi__ring-progress {
    fill: none;
    stroke: #f59e0b;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 131.95;
    stroke-dashoffset: 131.95;
    transition: stroke-dashoffset 0.35s linear;
}

.profile-actions__wave:disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: auto;
}

.profile-actions__wave:disabled:hover {
    transform: none;
}

.profile-wave-icon {
    display: block;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: #fbbf24;
    transform: rotate(-10deg);
    transform-origin: 72% 88%;
    transition: transform 0.35s ease;
}

.profile-wave-icon--lg {
    width: 44px;
    height: 44px;
}

.profile-actions__wave:not(:disabled):hover .profile-wave-icon {
    animation: profile-wave-shake 0.55s ease;
}

.profile-actions__wave.is-sent .profile-wave-icon {
    animation: profile-wave-pop 0.55s ease;
}

.profile-bipoi-modal {
    width: min(400px, calc(100vw - 32px));
    padding: 28px 24px 24px;
    text-align: center;
    position: relative;
}

.profile-bipoi-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-3);
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-bipoi-modal__close:hover {
    color: var(--text);
    background: var(--surface-2);
}

.profile-bipoi-modal__icon {
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.profile-bipoi-modal h2 {
    font-size: 1.15rem;
    margin: 0 0 12px;
    color: var(--white);
}

.profile-bipoi-modal__lead {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.5;
}

.profile-bipoi-modal__timer {
    margin: 0 0 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f59e0b;
}

.profile-bipoi-modal__ok {
    width: 100%;
    max-width: 200px;
}

.profile-actions__wave.is-cooldown {
    opacity: 0.55;
}

@keyframes profile-wave-pop {
    0% { transform: rotate(-10deg) scale(1); }
    25% { transform: rotate(8deg) scale(1.08); }
    50% { transform: rotate(-18deg) scale(1.12); }
    75% { transform: rotate(6deg) scale(1.05); }
    100% { transform: rotate(-10deg) scale(1); }
}

@keyframes profile-wave-shake {
    0%, 100% { transform: rotate(-10deg); }
    20% { transform: rotate(8deg); }
    40% { transform: rotate(-16deg); }
    60% { transform: rotate(6deg); }
    80% { transform: rotate(-12deg); }
}

.profile-actions__depoimentos {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}

.profile-actions__more {
    flex: 0 0 var(--profile-action-h);
    width: var(--profile-action-h);
    min-width: var(--profile-action-h);
    height: var(--profile-action-h);
    padding: 0;
}

.profile-actions--own .profile-actions__depoimentos {
    max-width: 220px;
}

#modal-depoimentos.modal-overlay {
    overflow: hidden;
}

#modal-depoimentos.modal-overlay.active {
    overflow: hidden;
}

.profile-depoimentos-modal {
    width: min(520px, calc(100vw - 32px));
    max-width: min(520px, calc(100vw - 32px));
    max-height: min(82vh, 720px);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.profile-depoimentos-modal,
.profile-depoimentos-modal * {
    scrollbar-width: none;
}

.profile-depoimentos-modal::-webkit-scrollbar,
.profile-depoimentos-modal *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.profile-depoimentos-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 10px;
    border-bottom: 1px solid var(--border);
}

.profile-depoimentos-modal__head h2 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
}

.profile-depoimentos-modal__close {
    border: none;
    background: transparent;
    color: var(--text-3);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.profile-depoimentos-modal__close:hover {
    color: var(--white);
}

.profile-depoimentos-modal__lead {
    margin: 0;
    padding: 10px 20px 0;
    font-size: 0.85rem;
    color: var(--text-3);
}

.profile-depoimentos-compose {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.profile-depoimentos-compose__label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-2);
    margin-bottom: 8px;
}

.profile-depoimentos-compose__input {
    width: 100%;
    resize: vertical;
    min-height: 88px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: 10px 12px;
    font: inherit;
}

.profile-depoimentos-compose__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.profile-depoimentos-compose__foot .btn {
    flex-shrink: 0;
}

.profile-depoimentos-list {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-depoimento {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 12px 14px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.profile-depoimento__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    min-width: 0;
}

.profile-depoimento__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-depoimento__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-depoimento__meta {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.profile-depoimento__name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    max-width: 100%;
    line-height: 1.3;
}

.profile-depoimento__name .country-flag {
    flex-shrink: 0;
}

.profile-depoimento__delete {
    border: none;
    background: transparent;
    color: var(--text-3);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.profile-depoimento__delete:hover {
    color: var(--danger, #f87171);
}

.profile-depoimento__time {
    display: block;
    font-size: 0.72rem;
    color: var(--text-3);
}

.profile-depoimentos-compose__counter {
    font-size: 0.75rem;
    color: var(--text-3);
}

.profile-depoimento__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
}

.profile-depoimentos-empty {
    text-align: center;
    color: var(--text-3);
    font-size: 0.9rem;
    padding: 24px 8px;
}

.profile-actions__message {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 0.85rem;
}

.profile-actions__message--active {
    box-shadow: 0 0 0 1px rgba(79, 142, 247, 0.25);
}

.profile-actions__message.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    filter: grayscale(0.35);
    background: var(--surface-2) !important;
    border-color: var(--border) !important;
    color: var(--text-3) !important;
    box-shadow: none !important;
}

.profile-actions__message.is-disabled:hover {
    transform: none;
}

.profile-actions__message[hidden] {
    display: none !important;
}

.btn-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.15rem;
}

.profile-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 228px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    z-index: 100;
    overflow: hidden;
}

.profile-dropdown__item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background var(--duration), color var(--duration);
}

.profile-dropdown__item[hidden] {
    display: none !important;
}

.profile-dropdown__item i {
    font-size: 1.15rem;
}

.profile-dropdown__item:hover {
    background: var(--surface-2);
}

.profile-dropdown__item--danger {
    color: var(--red);
}

.profile-dropdown__item--danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.profile-dropdown__item--warn {
    color: #ffca28;
}

.profile-dropdown__item--warn:hover {
    background: rgba(255, 193, 7, 0.1);
}

.profile-dropdown__item--ok {
    color: #a5d6a7;
}

.profile-dropdown__item--ok:hover {
    background: rgba(76, 175, 80, 0.12);
}

.profile-dropdown__divider {
    height: 1px;
    margin: 6px 0;
    background: var(--border);
}

.profile-blocked-msg {
    color: var(--text-3);
    font-size: 0.9rem;
    padding: 12px 0;
}

.profile-unlock-panel {
    margin-top: 8px;
    padding: 48px 32px;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}

.profile-unlock-panel__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(79, 142, 247, 0.25);
}

.profile-unlock-panel__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
}

.profile-unlock-panel__text {
    color: var(--text-2);
    font-size: 0.92rem;
    max-width: 360px;
    margin: 0 auto 24px;
    line-height: 1.55;
}

.profile-unlock-panel__text strong {
    color: var(--white);
}

.profile-unlock-panel__btn {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.profile-tabs::-webkit-scrollbar { display: none; }

.profile-tab {
    flex: 1;
    min-width: max-content;
    padding: 14px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-3);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--duration), border-color var(--duration);
}

.profile-tab:hover { color: var(--text); }

.profile-tab.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.profile-tab-content {
    min-height: 120px;
}

.profile-loading {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-3);
    font-size: 1.5rem;
}

.profile-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-3);
    font-size: 0.9rem;
}

.profile-reply-card {
    display: block;
    padding: 16px 12px;
    margin: 0 -12px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    transition: background var(--duration);
}

.profile-reply-card--link {
    cursor: pointer;
}

.profile-reply-card--link:hover {
    background: var(--surface-2);
}

.profile-reply-card--link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.profile-reply-card__parent {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 8px;
}

.profile-reply-card__parent strong { color: var(--text-2); }

.profile-reply-card__text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.45;
    margin: 0;
}

.profile-save-lists {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
}

.profile-save-list-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background var(--duration);
}

.profile-save-list-btn:hover { background: var(--surface-2); }

.profile-save-list-btn span {
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
}

.profile-visitors--compact {
    margin: 20px 0;
    padding: 18px 20px;
}

.profile-visitors--compact .profile-visitors__head {
    margin-bottom: 14px;
}

.profile-visitors--compact .profile-visitors__list--inline {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-visitors--compact .profile-visitors__list--inline > li {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

.profile-visitors--compact .profile-visitors__list--inline a {
    display: block;
    width: 100%;
    max-width: 46px;
}

.profile-visitors--compact .profile-visitors__mini {
    width: 100%;
    max-width: 46px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    background: var(--bg-2);
}

.profile-visitors--compact .profile-visitors__mini--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    color: var(--text-2);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .profile-visitors--compact {
        padding: 16px 14px;
    }

    .profile-visitors--compact .profile-visitors__list--inline {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 12px 10px;
        justify-content: start;
        overflow: visible;
    }

    .profile-visitors--compact .profile-visitors__list--inline > li {
        flex: unset;
        min-width: 0;
        justify-content: center;
    }

    .profile-visitors--compact .profile-visitors__list--inline a {
        max-width: none;
        width: 100%;
    }

    .profile-visitors--compact .profile-visitors__mini {
        max-width: none;
        width: 100%;
        height: auto;
    }
}

.save-picker-lists {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    max-height: 220px;
    overflow-y: auto;
}

.save-picker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-2);
    color: var(--white);
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
}

.save-picker-item:hover { border-color: var(--accent); }

.save-picker-item__meta {
    font-size: 0.72rem;
    color: var(--text-3);
}

.save-picker-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.save-picker-public {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-2);
    cursor: pointer;
}

.save-picker-public input { accent-color: var(--accent); }

.repost-badge {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* === Verificar perfil === */
.profile-own-actions {
    margin-bottom: 14px;
}

.profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.5;
}

.profile-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.profile-meta-item i,
.profile-social-links__icon,
.profile-location__icon {
    width: 16px;
    height: 16px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.8;
}

.profile-social-link:hover,
.profile-social-link:focus-visible {
    color: var(--white);
}

.profile-social-link--link:hover,
.profile-social-link--link:focus-visible {
    color: var(--accent);
}

.profile-social-link--instagram:hover,
.profile-social-link--instagram:focus-visible {
    color: #e4405f;
}

.profile-social-link--whatsapp:hover,
.profile-social-link--whatsapp:focus-visible {
    color: #25d366;
}

.verify-step {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 12px;
    background: var(--surface-2);
}

.verify-step.is-done {
    border-color: rgba(16, 185, 129, 0.4);
}

.verify-step__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verify-step__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--text-2);
    font-size: 1.2rem;
}

.verify-step__text {
    flex: 1;
    min-width: 0;
}

.verify-step__title {
    margin: 0;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.verify-step__status {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: var(--text-3);
}

.verify-step__check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 1rem;
}

.verify-step__body {
    margin-top: 12px;
}

.verify-step__hint {
    font-size: 0.82rem;
    color: var(--text-2);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verify-action-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.verify-action-row .input-control {
    flex: 1;
    min-width: 0;
}

.verify-action-row .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.verify-error {
    margin: 10px 0 0;
    color: var(--red);
    font-size: 0.85rem;
}

.verify-qr {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.verify-qr img {
    width: 188px;
    height: 188px;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    image-rendering: pixelated;
}

.verify-qr__link {
    font-size: 0.8rem;
    color: var(--text-2);
    word-break: break-all;
    margin: 6px 0 0;
}

.verify-doc-upload {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.verify-doc-filename {
    flex: 1;
    min-width: 120px;
    font-size: 0.82rem;
    color: var(--text-2);
    word-break: break-all;
}

.profile-warning-modal {
    width: min(100%, 440px);
    padding: 24px;
}

.profile-warning-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.profile-warning-modal__head h2 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--white);
}

.profile-warning-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--text-2);
    cursor: pointer;
}

.profile-warning-modal__lead {
    margin: 0 0 16px;
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.5;
}

.profile-warning-modal__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
}

.profile-warning-modal__input {
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-2);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.92rem;
    line-height: 1.5;
    resize: vertical;
}

.profile-warning-modal__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.profile-warning-modal__counter {
    font-size: 0.78rem;
    color: var(--text-3);
}

.profile-warning-modal__actions {
    display: flex;
    gap: 8px;
}

.profile-warning-modal__select {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-3) 50%), linear-gradient(135deg, var(--text-3) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}
