/* ─── Footer azul marino ───────────────────────────────────── */
footer {
    padding: 3.4rem 0 2.1rem;
    background: linear-gradient(180deg, #1f455e 0%, #142d56 100%);
    color: var(--color-white);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Brand: logo monocromo blanco (personaje + wordmark) */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: min(220px, 70vw);
    object-fit: contain;
    display: block;
}

/* Tagline */
.footer-tagline {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 400px;
    line-height: 1.6;
    margin: 0;
}

/* Separador intencional */
.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    margin: 0.15rem 0;
}

/* Links legales */
.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: rgba(255, 255, 255, 0.92);
}

/* Copyright */
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
    footer {
        padding: 2.85rem 0 1.85rem;
    }

    .footer-inner {
        gap: 1.1rem;
    }

    .footer-logo-img {
        height: 34px;
    }
}
