/* ==========================================================================
   LEGAL.CSS — Estils compartits per a pàgines legals i de suport
   Ús: privacidad.html, cookies.html, aviso-legal.html
   ========================================================================== */

body.page-legal {
    background-color: var(--color-cream);
}

.legal-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
}

/* Breadcrumb / Tornar enrere */
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    transition: opacity 0.2s ease;
}

.legal-back:hover {
    opacity: 0.7;
}

/* Títol principal */
.legal-wrapper h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--color-black-soft);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Separador */
.legal-divider {
    width: 50px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 1.2rem 0 2.5rem;
}

/* Subtítols */
.legal-wrapper h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black-soft);
    margin-top: 2.5rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-grey-border, #e0ddd8);
}

.legal-wrapper h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black-soft);
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

/* Text corrent */
.legal-wrapper p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

.legal-wrapper ul,
.legal-wrapper ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.legal-wrapper li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 0.4rem;
}

.legal-wrapper a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-wrapper strong {
    font-weight: 600;
    color: var(--color-black-soft);
}

/* Taula de cookies */
.legal-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.88rem;
}

.legal-wrapper thead th {
    background-color: var(--color-black-soft);
    color: #fff;
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.legal-wrapper tbody td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--color-grey-border, #e0ddd8);
    color: var(--color-text-body);
    vertical-align: top;
}

.legal-wrapper tbody tr:last-child td {
    border-bottom: none;
}

/* Nota final de data */
.legal-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-grey-border, #e0ddd8);
    font-size: 0.82rem;
    color: var(--color-grey-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .legal-wrapper {
        padding: 5rem 1.2rem 3rem;
    }

    .legal-wrapper table {
        display: block;
        overflow-x: auto;
    }
}