/* ── PÁGINAS LEGALES ──────────────────────────────────────── */
.lb-legal {
    padding: 5rem 0 4rem;
    background: var(--background, #f8f6f2);
    min-height: 70vh;
}

.lb-legal__container {
    max-width: 820px;
}

/* Header */
.lb-legal__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border, #e5e2dc);
}

.lb-legal__badge {
    display: inline-block;
    background: var(--primary, #1e3a5f);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.lb-legal__title {
    font-family: var(--font-serif, serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--foreground, #1a1a2e);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.lb-legal__meta {
    font-size: 0.875rem;
    color: var(--muted-foreground, #6b7280);
    margin: 0;
}

/* Body */
.lb-legal__body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Sections */
.lb-legal__section {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 2.25rem;
    border: 1px solid var(--border, #e5e2dc);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.lb-legal__section h2 {
    font-family: var(--font-serif, serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary, #1e3a5f);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary, #1e3a5f);
    border-bottom-width: 2px;
    border-image: linear-gradient(90deg, var(--primary, #1e3a5f), transparent) 1;
}

.lb-legal__section p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--muted-foreground, #4b5563);
    margin: 0 0 1rem;
}

.lb-legal__section p:last-child { margin-bottom: 0; }

.lb-legal__section ul {
    margin: 0.75rem 0 1rem 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lb-legal__section ul:last-child { margin-bottom: 0; }

.lb-legal__section li {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted-foreground, #4b5563);
    padding-left: 0.25rem;
}

.lb-legal__section a {
    color: var(--primary, #1e3a5f);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.lb-legal__section a:hover { opacity: 0.75; }

/* Back button */
.lb-legal__back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border, #e5e2dc);
}

/* Responsive */
@media (max-width: 600px) {
    .lb-legal__section {
        padding: 1.5rem 1.25rem;
    }

    .lb-legal {
        padding: 3.5rem 0 3rem;
    }
}
