/* ── Back button ─────────────────────────────────────────── */
.btn-back-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 24px 0;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-lib-tb-primaryBase);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}
.btn-back:hover { opacity: .7; }

/* ── Verify card ─────────────────────────────────────────── */
.verify-card {
    background: white;
    border-radius: 8px;
    padding: 32px 36px 36px;
    max-width: 900px;
    margin: 0 auto 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}

.verify-header { margin-bottom: 28px; }
.verify-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-lib-tb-primaryBase);
    margin-bottom: 5px;
}
.verify-header p { font-size: 14px; color: #888; }

/* ── Section ─────────────────────────────────────────────── */
.verify-section { margin-bottom: 22px; }

.verify-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-lib-tb-primaryBase);
    margin-bottom: 10px;
}

.verify-row {
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.verify-details { flex: 1; display: flex; flex-direction: column; gap: 7px; }

.verify-details-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.btn-change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-lib-tb-primaryBase);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .12s;
}
.btn-change:hover { opacity: .7; }
.btn-change i { font-size: 13px; }

/* ── Continue button ─────────────────────────────────────── */
.btn-continuar-green {
    display: block;
    margin: 30px auto 0;
    height: 52px;
    padding: 0 56px;
    border-radius: 26px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    background: var(--c-lib-tb-secondaryBase);
    color: var(--c-lib-tb-primaryBase);
    box-shadow: 0 4px 16px rgba(130,231,120,0.4);
    transition: background .2s, color .2s, transform .1s;
}
.btn-continuar-green:hover  { background: var(--c-lib-tb-secondaryD300); color: white; }
.btn-continuar-green:active { transform: translateY(1px); }

/* ── Step done ───────────────────────────────────────────── */
.step.done   .step-circle { background: var(--c-lib-tb-primaryBase); border-color: var(--c-lib-tb-primaryBase); color: white; }
.step.done   .step-label  { color: #888; font-weight: 500; }
.step-line.done            { background: var(--c-lib-tb-primaryBase); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 820px) {
    .verify-card  { padding: 22px 16px 28px; margin: 0 16px 20px; }
    .verify-row   { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-change   { align-self: flex-end; }
}
@media (max-width: 480px) {
    .btn-back-container { padding: 12px 16px 0; }
    .verify-header h2   { font-size: 19px; }
}
