/* ==========================================================================
   Footer
   ========================================================================== */

/* Sticky Footer Implementation */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--vane-white);
}

#page {
    flex: 1;
    background-color: var(--vane-white);
}

.vane-footer {
    margin-top: 7px;
    background-color: var(--vane-white);
    /* border-top: 1px solid #e5e5e5; */
    box-shadow:
        0 -6px 20px rgba(0, 0, 0, 0.06),
        0 -2px 8px rgba(0, 0, 0, 0.04);
    padding: 48px 40px 16px;
    position: relative;
}

/* Gradiente premium que da efecto de elevación */
.vane-footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.vane-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.vane-footer__left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vane-footer__logo svg {
    width: 246px;
    height: auto;
}

.vane-footer__social {
    display: flex;
    gap: 4px;
}

.vane-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--vane-black);
    transition: opacity 0.2s ease;
}

.vane-footer__social-link:hover {
    opacity: 0.6;
}

.vane-footer__social-link svg {
    width: 24px;
    height: 24px;
}

.vane-footer__social-link:first-child {
    margin-right: -4px;
}

.vane-footer__right {
    text-align: right;
}

.vane-footer__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.vane-footer__links a {
    font-family: var(--vane-font-primary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-decoration: none;
    color: var(--vane-black);
    transition: opacity 0.2s ease;
}

.vane-footer__links a:hover {
    /* opacity: 0.6; */
    text-decoration: underline;
    /* text-decoration-thickness: 0.5px; */
}

.vane-footer__copyright {
    font-family: var(--vane-font-primary);
    font-size: 12px;
    color: #999;
    margin: 8px 0 0;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .vane-footer {
        padding: 30px 20px 20px;
    }

    .vane-footer__content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .vane-footer__left {
        align-items: center;
    }

    .vane-footer__logo svg {
        width: 202px;
    }

    .vane-footer__social {
        gap: 15px;
    }

    .vane-footer__social-link {
        width: 36px;
        height: 36px;
    }

    .vane-footer__social-link svg {
        width: 28px;
        height: 28px;
    }

    .vane-footer__right {
        text-align: left;
        width: 100%;
        padding-left: 10px;
        /* Add some padding to align with logo if needed, or keep 0 */
    }

    .vane-footer__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vane-footer__links a {
        font-size: 14px;
    }

    .vane-footer__copyright {
        text-align: left;
        font-size: 12px;
        /* Slightly smaller copyright too */
    }

    .vane-footer__credit {
        display: none;
    }
}
