/* ===========================
   FOOTER — FULLTIQUETES
=========================== */
.ft-footer {
    background: var(--ft-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 0;
}

.ft-footer-top {
    padding-bottom: 2.5rem;
    gap: 2rem 0;
}

/* Brand */
.ft-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ft-footer-logo {
    height: 36px;
    width: auto;
}

.ft-footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    max-width: 280px;
    margin: 0;
}

.ft-footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ft-footer-social a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.3rem;
    transition: color var(--ft-transition);
}

.ft-footer-social a:hover {
    color: var(--ft-primary);
}

/* Columnas */
.ft-footer-col-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.ft-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ft-footer-menu li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--ft-transition);
}

.ft-footer-menu li a:hover {
    color: var(--ft-primary);
}

/* Línea inferior */
.ft-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* WhatsApp flotante */
.ft-whatsapp-float {
    position: fixed;
    width: 52px;
    height: 52px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: background var(--ft-transition), transform var(--ft-transition);
}

.ft-whatsapp-float:hover {
    background: #128c4a;
    color: #fff;
    transform: scale(1.08);
}

/* ─── MOBILE ─── */
@media (max-width: 767.98px) {
    .ft-footer { padding: 2.5rem 0 0; }

    .ft-footer-brand,
    .ft-footer-links,
    .ft-footer-legal-col {
        align-items: center;
        text-align: center;
    }

    .ft-footer-desc { max-width: 100%; }
    .ft-footer-menu { align-items: center; }
    .ft-footer-social { justify-content: center; }

    .ft-whatsapp-float { width: 46px; height: 46px; bottom: 16px; right: 16px; }
}