/* ==========================================================================
   Sobremesa — footer + consent notice
   ========================================================================== */

.foot {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    color: var(--orchid);
    background-color: var(--ink);
}

.foot a {
    color: var(--paper);
    text-decoration: none;
}

.foot a:hover {
    color: var(--orchid);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.foot-brand .wordmark {
    color: var(--paper);
}

.foot-brand p {
    max-width: 22rem;
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--orchid);
}

.foot-col h4 {
    margin-bottom: 0.9rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
}

.foot-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.foot-col li {
    margin-bottom: 0.55rem;
    font-size: 0.96rem;
}

.foot-base {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.6rem;
    font-size: 0.85rem;
    color: var(--silver);
    border-top: 1px solid rgba(204, 153, 204, 0.22);
}

.foot-social {
    display: flex;
    gap: 1.1rem;
}

@media (min-width: 48rem) {
    .foot-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .foot-base {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* --------------------------------------------------------------------------
   Consent notice (bottom-left card, fade-in)
   -------------------------------------------------------------------------- */
.consent-notice {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 250;
    width: calc(100% - 2rem);
    max-width: 30rem;
    padding: 1.3rem 1.4rem;
    color: var(--ink);
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.consent-notice.is-shown {
    opacity: 1;
    transform: none;
}

.consent-notice p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.consent-notice a {
    color: var(--plum);
}

.consent-actions {
    display: flex;
    gap: 0.7rem;
}

.consent-actions .btn {
    min-height: 2.6rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.92rem;
}
