/* ========================================================
   NAVBAR PROFESIONAL - VERSIÓN AZUL
   ======================================================== */
.mv-navbar {
    background: #0047AB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 1rem;
}

.mv-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.mv-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mv-logo {
    height: 72px;
    width: auto;
    background: white;
    border-radius: 16px;
    padding: 6px 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s;
    object-fit: contain;
}

.mv-logo:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.home-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.2s;
    text-decoration: none;
}

.home-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    color: white;
}

.mv-title-wrap {
    text-align: center;
    line-height: 1.2;
}

.mv-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mv-subtitle {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.mv-rightbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mv-datetime {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.2);
}

.mv-datetime i {
    margin-right: 6px;
    color: white;
}

.cali-flag-banner {
    width: 100%;
    height: 20px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/3c/Flag_of_Santiago_de_Cali.svg');
    background-repeat: repeat-x;
    background-position: 0 50%;
    background-size: auto 100%;
    margin: 0;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    overflow: hidden;
    animation: flagMove 10s linear infinite;
    will-change: background-position;
}

@keyframes flagMove {
    0% { background-position: 0 50%; }
    100% { background-position: 10000px 50%; }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 992px) {
    .mv-navbar-content {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mv-navbar {
        padding: 0.75rem 1rem;
    }
    .mv-navbar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.7rem;
    }
    .mv-title {
        font-size: 1.1rem;
    }
    .mv-subtitle {
        font-size: 0.7rem;
    }
    .mv-rightbox {
        justify-content: center;
    }
    .mv-logo {
        height: 44px;
    }
    .home-button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .mv-datetime {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .mv-title {
        font-size: 0.9rem;
    }
    .mv-subtitle {
        font-size: 0.6rem;
    }
    .mv-logo {
        height: 36px;
        padding: 4px 8px;
    }
    .mv-datetime {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
}