@charset "UTF-8";
/* ==========================================================================
   QuickCode (qcd.es) — FOOTER
   Archivo: css/footer.css
   Autor:   pacocaetano | qcd.es
   Versión: 2026.1
   ========================================================================== */

.qcd-footer {
    background: #0e1411;
    color: rgba(255,255,255,0.65);
    padding: var(--qcd-space-xl) 0 0;
    font-size: 0.88rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.qcd-footer::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,168,120,0.12) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}

.qcd-footer__inner {
    position: relative;
    z-index: 1;
    max-width: var(--qcd-max-width);
    margin: 0 auto;
    padding: 0 var(--qcd-space-md);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--qcd-space-lg);
}


/* ── Brand ────────────────────────────────────────────────────────────────── */

.qcd-footer__brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.qcd-footer__brand-logo:hover { color: #ffffff; }

.qcd-footer__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--qcd-radius-sm);
    background: var(--qcd-gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(0,168,120,0.35);
}

.qcd-footer__desc {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 320px;
}

.qcd-footer__desc strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.qcd-footer__social {
    display: flex;
    gap: 8px;
}

.qcd-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--qcd-transition);
    text-decoration: none;
}

.qcd-footer__social a:hover {
    background: var(--qcd-accent);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ── Columnas ─────────────────────────────────────────────────────────────── */

.qcd-footer__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 14px;
}

.qcd-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.qcd-footer__links li {
    margin-bottom: 8px;
}

.qcd-footer__links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--qcd-transition);
    font-size: 0.86rem;
}

.qcd-footer__links a:hover {
    color: var(--qcd-accent2);
}


/* ── Bottom bar ───────────────────────────────────────────────────────────── */

.qcd-footer__bottom {
    margin-top: var(--qcd-space-lg);
    padding: 18px var(--qcd-space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.40);
}

.qcd-footer__bottom a {
    color: rgba(255,255,255,0.65);
    transition: color var(--qcd-transition);
}

.qcd-footer__bottom a:hover {
    color: var(--qcd-accent2);
}


/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .qcd-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--qcd-space-md) var(--qcd-space-lg);
    }

    .qcd-footer__brand {
        grid-column: 1 / -1;
    }

    .qcd-footer__desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .qcd-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--qcd-space-md);
    }
}
