/**
 * Meu Perfil ABHO — Estilos v2
 *
 * Design accordion unificado, responsivo, acessível.
 * Voltado para membros com pouca experiência tecnológica.
 *
 * @package ABHO
 * @since   1.1.0
 */

/* ============================
   Container principal
   ============================ */
.abho-perfil {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* ============================
   Cabeçalho do perfil
   ============================ */
.abho-perfil__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0b3d6b 0%, #155fa0 100%);
    color: #fff;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.abho-perfil__header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.abho-perfil__avatar-wrap {
    flex-shrink: 0;
}

.abho-perfil__avatar-wrap img,
.abho-perfil__avatar-wrap .avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.45);
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.abho-perfil__header-info {
    flex: 1;
    min-width: 0;
}

.abho-perfil__nome {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.4rem !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    color: #fff !important;
    line-height: 1.2;
}

.abho-perfil__header .abho-perfil__section-title,
.abho-perfil__header h2,
.abho-perfil__header h3 {
    color: #fff !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.abho-perfil__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.abho-perfil__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
    line-height: 1.4;
    white-space: nowrap;
}

.abho-perfil__badge--type {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.abho-perfil__badge--pf {
    background: rgba(92, 184, 92, 0.25);
    border-color: rgba(92, 184, 92, 0.5);
}

.abho-perfil__badge--pj {
    background: rgba(91, 192, 222, 0.25);
    border-color: rgba(91, 192, 222, 0.5);
}

.abho-perfil__badge--estudante {
    background: rgba(240, 173, 78, 0.25);
    border-color: rgba(240, 173, 78, 0.5);
}

.abho-perfil__badge--status {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid;
}

.abho-perfil__badge--cert {
    background: rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
}

.abho-perfil__badge--category {
    background: rgba(167, 139, 250, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: #e0d4ff;
}

/* SVG dentro de badges deve alinhar com texto */
.abho-perfil__badge svg {
    flex-shrink: 0;
    vertical-align: middle;
}

/* Matrícula — agora badge na mesma fila */
.abho-perfil__badge--matricula {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Links clicáveis dentro do perfil */
.abho-perfil__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #60a5fa;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.15s ease;
}
.abho-perfil__link:hover,
.abho-perfil__link:focus {
    color: #93bbfc;
    text-decoration: underline;
}
.abho-perfil__link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Datas formatadas */
.abho-perfil__date {
    font-variant-numeric: tabular-nums;
}

/* Booleanos SIM/NÃO */
.abho-perfil__bool {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
    line-height: 1.4;
}
.abho-perfil__bool svg {
    flex-shrink: 0;
}
.abho-perfil__bool--yes {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.abho-perfil__bool--no {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================
   Seções — layout coluna única
   ============================ */
.abho-perfil__sections {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ============================
   Accordion (details/summary)
   ============================ */
.abho-perfil__accordion {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
}

.abho-perfil__accordion:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.abho-perfil__accordion[open] {
    border-color: #bfdbfe;
    box-shadow: 0 1px 6px rgba(21, 95, 160, 0.08);
}

.abho-perfil__accordion-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
    min-height: 52px;
}

.abho-perfil__accordion-header:hover {
    background: #f8fafc;
}

.abho-perfil__accordion-header::-webkit-details-marker {
    display: none;
}

.abho-perfil__accordion-header > svg {
    flex-shrink: 0;
    color: #155fa0;
    width: 20px;
    height: 20px;
}

.abho-perfil__accordion-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e3a5f;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.abho-perfil__field-count {
    background: #eef2ff;
    color: #3b5998;
    padding: 0.1rem 0.5rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.abho-perfil__accordion-header::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
    transition: transform 0.25s ease;
    margin-left: 0.25rem;
}

.abho-perfil__accordion[open] > .abho-perfil__accordion-header::after {
    transform: rotate(180deg);
}

.abho-perfil__edit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.15s;
    flex-shrink: 0;
    border: 1px solid transparent;
}

.abho-perfil__edit-link:hover {
    color: #155fa0;
    background: #eef2ff;
    border-color: #bfdbfe;
}

.abho-perfil__edit-link svg {
    width: 14px;
    height: 14px;
}

.abho-perfil__edit-text {
    display: none;
}

.abho-perfil__accordion-body {
    padding: 0 1.25rem 1rem;
    border-top: 1px solid #f1f3f5;
}

/* ============================
   Data list (dt/dd pairs)
   ============================ */
.abho-perfil__data-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}

.abho-perfil__data-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: baseline;
}

.abho-perfil__data-item:last-child {
    border-bottom: none;
}

.abho-perfil__data-item dt {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.abho-perfil__data-item dd {
    font-size: 0.9rem;
    color: #1f2937;
    margin: 0;
    word-break: break-word;
    line-height: 1.5;
}

.abho-perfil__data-list--compact .abho-perfil__data-item {
    grid-template-columns: 130px 1fr;
    padding: 0.4rem 0;
}

.abho-perfil__icon {
    margin-right: 0.25rem;
}

/* ============================
   Cert tag
   ============================ */
.abho-perfil__cert-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.abho-perfil__cert-tag--yes {
    background: #d4edda;
    color: #155724;
}

.abho-perfil__cert-tag--no {
    background: #f8f9fa;
    color: #6c757d;
}

/* ============================
   Endereço
   ============================ */
.abho-perfil__endereco {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
    padding: 0.5rem 0;
}

.abho-perfil__location {
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
    padding: 0.5rem 0;
}

.abho-perfil__empty {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px dashed #d1d5db;
    line-height: 1.6;
}

.abho-perfil__empty-link {
    color: #155fa0;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
}

.abho-perfil__empty-link:hover {
    text-decoration: underline;
}

/* ============================
   Documentos — Grid stats
   ============================ */
.abho-perfil__doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 0.5rem 0 0.75rem;
}

.abho-perfil__doc-stat {
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #f0f0f0;
}

.abho-perfil__doc-stat--approved {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.abho-perfil__doc-stat--pending {
    background: #fffbeb;
    border-color: #fde68a;
}

.abho-perfil__doc-stat--rejected {
    background: #fef2f2;
    border-color: #fecaca;
}

.abho-perfil__doc-count {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.abho-perfil__doc-stat--approved .abho-perfil__doc-count {
    color: #059669;
}

.abho-perfil__doc-stat--pending .abho-perfil__doc-count {
    color: #d97706;
}

.abho-perfil__doc-stat--rejected .abho-perfil__doc-count {
    color: #dc2626;
}

.abho-perfil__doc-label {
    font-size: 0.72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.abho-perfil__doc-progress {
    margin-top: 0.25rem;
}

.abho-perfil__progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.abho-perfil__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #059669, #34d399);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.abho-perfil__progress-text {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0.4rem 0 0;
}

/* ============================
   Anuidade card
   ============================ */
.abho-perfil__anuidade-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border-left: 4px solid #e5e7eb;
    margin-top: 0.25rem;
}

.abho-perfil__anuidade-card--active {
    border-left-color: #059669;
    background: #ecfdf5;
}

.abho-perfil__anuidade-card--on-hold {
    border-left-color: #d97706;
    background: #fffbeb;
}

.abho-perfil__anuidade-card--cancelled,
.abho-perfil__anuidade-card--expired {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.abho-perfil__anuidade-card--pending {
    border-left-color: #6366f1;
    background: #eef2ff;
}

.abho-perfil__anuidade-status {
    margin-bottom: 0.5rem;
}

/* ============================
   Ações (botões)
   ============================ */
.abho-perfil__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.abho-perfil__actions .abho-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    line-height: 1.4;
    border: 1px solid transparent;
}

.abho-perfil__actions .abho-btn svg {
    flex-shrink: 0;
}

.abho-btn--lg {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.92rem !important;
}

.abho-perfil__actions .abho-btn--primary {
    background: #0b3d6b;
    color: #fff !important;
    border-color: #0b3d6b;
}

.abho-perfil__actions .abho-btn--primary:hover {
    background: #155fa0;
    border-color: #155fa0;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(11, 61, 107, 0.25);
}

.abho-btn--outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.abho-btn--outline:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #1f2937;
}

/* ============================
   Badge genérico
   ============================ */
.abho-badge--active {
    background: #d1fae5;
    color: #065f46;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

.abho-badge--on-hold {
    background: #fef3c7;
    color: #92400e;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

.abho-badge--cancelled,
.abho-badge--expired {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

.abho-badge--pending-cancel {
    background: #fef3c7;
    color: #92400e;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

/* ============================
   Animação suave para abertura
   ============================ */
.abho-perfil__accordion-body {
    animation: abho-slide-down 0.2s ease-out;
}

@keyframes abho-slide-down {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   Responsivo — Tablet
   ============================ */
@media (max-width: 768px) {
    .abho-perfil__header {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .abho-perfil__avatar-wrap img,
    .abho-perfil__avatar-wrap .avatar {
        width: 80px;
        height: 80px;
    }

    .abho-perfil__badges {
        justify-content: center;
    }

    .abho-perfil__nome {
        font-size: 1.25rem;
    }

    .abho-perfil__accordion-header {
        padding: 0.75rem 1rem;
    }

    .abho-perfil__accordion-body {
        padding: 0 1rem 0.75rem;
    }

    .abho-perfil__data-item {
        grid-template-columns: 1fr;
        gap: 0.1rem;
    }

    .abho-perfil__data-item dt {
        font-size: 0.7rem;
    }

    .abho-perfil__data-item dd {
        font-size: 0.88rem;
    }

    .abho-perfil__edit-text {
        display: inline;
    }

    .abho-perfil__doc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .abho-perfil__actions {
        flex-direction: column;
    }

    .abho-perfil__actions .abho-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================
   Responsivo — Mobile
   ============================ */
@media (max-width: 480px) {
    .abho-perfil {
        margin: 0 -0.5rem;
    }

    .abho-perfil__header {
        border-radius: 10px;
        padding: 1rem 0.75rem;
    }

    .abho-perfil__nome {
        font-size: 1.15rem;
    }

    .abho-perfil__badge {
        font-size: 0.68rem;
        padding: 0.12rem 0.4rem;
    }

    .abho-perfil__accordion {
        border-radius: 10px;
    }

    .abho-perfil__accordion-header {
        padding: 0.7rem 0.75rem;
        gap: 0.4rem;
    }

    .abho-perfil__accordion-title {
        font-size: 0.88rem;
    }

    .abho-perfil__accordion-body {
        padding: 0 0.75rem 0.75rem;
    }

    .abho-perfil__edit-link {
        padding: 0.2rem 0.4rem;
    }

    .abho-perfil__doc-count {
        font-size: 1.2rem;
    }

    .abho-perfil__doc-label {
        font-size: 0.65rem;
    }

    .abho-perfil__actions .abho-btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================
   Desktop — mostrar texto "Alterar"
   ============================ */
@media (min-width: 769px) {
    .abho-perfil__edit-text {
        display: inline;
    }

    .abho-perfil__data-item {
        grid-template-columns: 160px 1fr;
    }
}

/* ============================
   Print styles
   ============================ */
@media print {
    .abho-perfil__accordion {
        break-inside: avoid;
        border: 1px solid #ccc;
    }

    .abho-perfil__accordion[open] > .abho-perfil__accordion-header::after {
        display: none;
    }

    .abho-perfil__edit-link,
    .abho-perfil__actions {
        display: none !important;
    }

    .abho-perfil__accordion-body {
        display: block !important;
    }

    .abho-perfil__header {
        background: #0b3d6b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ============================
   Notices (alertas)
   ============================ */
.abho-notice {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    border: 1px solid;
}

.abho-notice--info {
    background: #eef2ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.abho-notice--warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.abho-notice--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* ============================
   Badge base + extras
   ============================ */
.abho-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

.abho-badge--success {
    background: #d1fae5;
    color: #065f46;
}

/* ============================
   Perfil público (shortcode)
   ============================ */
.abho-profile {
    max-width: 600px;
    margin: 0 auto;
}

.abho-profile--public {
    padding: 1.5rem;
}

.abho-profile__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.abho-profile__avatar-wrap {
    margin-bottom: 0.75rem;
}

.abho-perfil__avatar,
.abho-profile__avatar-wrap img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.abho-profile__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 0.25rem;
}

.abho-profile__category {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0 0 0.5rem;
}

.abho-profile__status,
.abho-profile__cert-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    margin: 0.15rem;
}

.abho-profile__info {
    margin-top: 1rem;
}

.abho-profile__details {
    margin: 0;
    padding: 0;
}

.abho-profile__meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abho-profile__meta-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.abho-profile__meta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    min-width: 120px;
}

.abho-profile__meta-label svg {
    flex-shrink: 0;
}

.abho-profile__status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.abho-profile__status svg {
    flex-shrink: 0;
}

.abho-profile__cert-badge svg,
.abho-profile__category svg {
    flex-shrink: 0;
}

.abho-profile__meta-value {
    font-size: 0.9rem;
    color: #1f2937;
}

/* ============================
   Modo edição inline
   ============================ */
.abho-perfil--editing {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.abho-perfil--editing > .abho-perfil__accordion-header {
    background: #f0f7ff;
}

/* Input no modo edição */
.abho-perfil__input {
    width: 100%;
    padding: 0.5rem 0.65rem;
    font-size: 0.88rem;
    font-family: inherit;
    color: #1f2937;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
    line-height: 1.5;
    box-sizing: border-box;
}

.abho-perfil__input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

textarea.abho-perfil__input {
    resize: vertical;
    min-height: 60px;
}

.abho-perfil__data-item--editing {
    align-items: center;
}

.abho-perfil__data-item--editing dt {
    padding-top: 0.35rem;
}

/* Botões salvar/cancelar */
.abho-perfil__edit-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.abho-perfil__save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Spinner animação */
@keyframes abho-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.abho-spin {
    animation: abho-spin 0.8s linear infinite;
}

/* Notificação inline */
.abho-perfil__notice {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.abho-perfil__notice--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.abho-perfil__notice--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Botão edit-link como button (reset) */
button.abho-perfil__edit-link {
    background: none;
    cursor: pointer;
}

button.abho-perfil__empty-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}

/* Responsivo para modo edição */
@media (max-width: 768px) {
    .abho-perfil__data-item--editing {
        grid-template-columns: 1fr;
    }

    .abho-perfil__edit-actions {
        flex-direction: column;
    }

    .abho-perfil__edit-actions .abho-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
