/**
 * ========================================================================
 * ARCHIVO: ubicacion.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 1.0.0
 * FECHA DE PRODUCCIÓN: 2026-09-15
 * DESCRIPCIÓN: Módulo de ubicación (botones de navegación).
 * ========================================================================
 */

.flex-align-middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nxs-nav-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.btn-nav-vip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #674f00;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    width: 100%;
}

.btn-nav-vip:hover {
    border-color: #D4AF37;
    background: #000;
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-nav-vip i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.ios-only {
    display: none;
}

.is-ios .ios-only {
    display: flex;
}