/* ================= FOOTER IMVT ================= */

.footer-imvt {
    width: 100%;
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(0,240,255,0.3);
}
.footer-inner {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-center-mark {
    text-align: center;
    color: #00f0ff;
    font-size: 13px;
    letter-spacing: 1px;
}
/* IZQUIERDA */
.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-left img {
    height: 30px;
    filter: drop-shadow(0 0 6px rgba(0,240,255,0.6));
}
.footer-text {
    display: flex;
    flex-direction: column;
    color: #ccc;
}
.footer-text strong {
    font-size: 14px;
    color: #fff;
}
.footer-text span {
    font-size: 12px;
    color: #00bfff;   /* azul medio elegante */
}
/* DERECHA */
.footer-tech {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #aaa;
}
.footer-tech strong {
    font-size: 13px;
    color: #00f0ff;
}
.footer-tech span {
    font-size: 11px;
    color: #777;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-right img {
    height: 32px;
    filter:
        brightness(0) invert(1)
        drop-shadow(0 0 6px rgba(0,240,255,0.8));
}


